2024-12-12 02:31:10 +00:00
|
|
|
import { useTranslations } from "next-intl";
|
|
|
|
|
2024-12-07 14:06:25 +00:00
|
|
|
export default function DashboardPage() {
|
2024-12-12 12:51:10 +00:00
|
|
|
const t = useTranslations("Page.DashboardPage");
|
2024-12-07 14:06:25 +00:00
|
|
|
return (
|
|
|
|
<div className="flex flex-1 flex-col gap-4 p-4 pt-0">
|
|
|
|
<div className="grid auto-rows-min gap-4 md:grid-cols-3">
|
2024-12-12 02:31:10 +00:00
|
|
|
<div className="aspect-video rounded-xl bg-muted/50 flex items-center justify-center">
|
|
|
|
<h1 className="text-2xl font-bold">{t("title")}</h1>
|
|
|
|
</div>
|
2024-12-07 14:06:25 +00:00
|
|
|
<div className="aspect-video rounded-xl bg-muted/50" />
|
|
|
|
<div className="aspect-video rounded-xl bg-muted/50" />
|
|
|
|
</div>
|
|
|
|
<div className="min-h-[100vh] flex-1 rounded-xl bg-muted/50 md:min-h-min" />
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|