revert context on __root beforeLoad refactor project structure refactor role badge dynamic nav menu
18 lines
667 B
TypeScript
18 lines
667 B
TypeScript
import { m } from '@/paraglide/messages';
|
|
import { createFileRoute } from '@tanstack/react-router';
|
|
|
|
export const Route = createFileRoute('/(app)/(auth)/dashboard')({
|
|
component: RouteComponent,
|
|
staticData: { breadcrumb: () => m.nav_dashboard() },
|
|
});
|
|
|
|
function RouteComponent() {
|
|
return (
|
|
<div className="@container/main flex flex-1 flex-col gap-2 p-4">
|
|
<div className="*:data-[slot=card]:from-primary/5 *:data-[slot=card]:to-card dark:*:data-[slot=card]:bg-card *:data-[slot=card]:bg-linear-to-br *:data-[slot=card]:shadow-xs grid grid-cols-1 @xl/main:grid-cols-2 @5xl/main:grid-cols-3 gap-4">
|
|
Hello Dashboard!
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|