feat: initial commit with seeded database and premium ui changes

This commit is contained in:
Dodo
2026-06-11 18:41:42 +07:00
commit edf94ae5c1
1684 changed files with 33073 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
"use client";
import { AppShell } from "@/components/app-shell";
import { Dashboard } from "@/components/dashboard";
import { HouseIcon } from "@/components/ui/phosphor-icons";
export default function DashboardPage() {
return (
<AppShell activePath="/dashboard">
<div className="flex flex-col gap-6">
{/* Page Header */}
<div className="flex flex-col gap-2">
<div className="flex items-center gap-2.5">
<h1 className="text-2xl md:text-3xl font-semibold text-foreground tracking-tight">
Beranda Analitik
</h1>
</div>
<p className="text-xs text-muted-foreground">
Overview status statistik, data kemiskinan, peta wilayah, dan operasional SPBU.
</p>
</div>
<Dashboard />
</div>
</AppShell>
);
}