22 lines
643 B
TypeScript
22 lines
643 B
TypeScript
import { PlaceholderPattern } from '@/components/ui/placeholder-pattern';
|
|
import AppLayout from '@/layouts/app-layout';
|
|
import { dashboard } from '@/routes';
|
|
import { type BreadcrumbItem } from '@/types';
|
|
import { Head } from '@inertiajs/react';
|
|
|
|
const breadcrumbs: BreadcrumbItem[] = [
|
|
{
|
|
title: 'Dashboard',
|
|
href: dashboard().url,
|
|
},
|
|
];
|
|
|
|
export default function Dashboard() {
|
|
return (
|
|
<AppLayout breadcrumbs={breadcrumbs}>
|
|
<Head title="Dashboard" />
|
|
<div className="flex h-full flex-1 flex-col gap-4 overflow-x-auto rounded-xl p-4">
|
|
</div>
|
|
</AppLayout>
|
|
);
|
|
}
|