Admin UI Kit · 01

Admin Design System

Primitif shadcn/ui, template operasional (DataTable, FilterBar), dan shell chrome untuk admin.kiosklix.com. Desktop-first, Material 3 tokens.

02

Storybook

Dokumentasi interaktif di pnpm --filter @kiosklix/ui storybook (port 6006). Namespace sidebar: Admin / …

03

Shell Lab

Eksplorasi kombinasi Sidebar × Header × Breadcrumb × PageTitle. Sama dengan halaman Shell.

Step 7 · Lab

Dashboard Shell Lab

Pilih kombinasi sidebar, header, breadcrumb, title, footer, card surface, color, dan density. Preview ada di bawah; copy snippet config di akhir untuk dipakai diapps/web/app/admin/(shell)/layout.tsx.

Aktif:sidebar=spaciousheader=page-titlebreadcrumb=standalonetitle=hiddenfooter=fullcard=shadowcolor=soft-mintdensity=comfortableradius=medium
admin.kiosklix.com/dashboard

Dashboard

Ringkasan operasional Kiosklix hari ini.

Revenue Trend
7 Hari
Top Products
Recent Orders

Config snippet

Copy & paste ke apps/web/app/admin/(shell)/layout.tsx untuk mengunci pilihan.

import { AppShell } from "./_components/AppShell";

export default function ShellLayout({ children }: { children: React.ReactNode }) {
    return (
        <AppShell
            config={{
                sidebar: "spacious",
                header: "page-title",
                breadcrumb: "standalone",
                title: "hidden",
                footer: "full",
                card: "shadow",
                color: "soft-mint",
                density: "comfortable",
            }}
        >
            {children}
        </AppShell>
    );
}