Files
2026-03-16 09:43:24 +08:00

32 lines
1.2 KiB
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

export default function DashboardPage() {
return (
<div className="space-y-4">
<h1 className="text-xl font-semibold">Dashboard</h1>
<p className="text-sm text-black/60 dark:text-white/60">
//
</p>
<div className="grid gap-3 md:grid-cols-3">
<div className="rounded-xl border border-black/10 p-4 dark:border-white/10">
<div className="text-sm font-medium"></div>
<div className="mt-1 text-xs text-black/60 dark:text-white/60">
</div>
</div>
<div className="rounded-xl border border-black/10 p-4 dark:border-white/10">
<div className="text-sm font-medium"></div>
<div className="mt-1 text-xs text-black/60 dark:text-white/60">
</div>
</div>
<div className="rounded-xl border border-black/10 p-4 dark:border-white/10">
<div className="text-sm font-medium"></div>
<div className="mt-1 text-xs text-black/60 dark:text-white/60">
</div>
</div>
</div>
</div>
);
}