File tree Expand file tree Collapse file tree 3 files changed +6
-9
lines changed Expand file tree Collapse file tree 3 files changed +6
-9
lines changed Original file line number Diff line number Diff line change 3131 --radius : 0.5rem ;
3232 --sidebar-background : 0 0% 98% ;
3333 --sidebar-foreground : 240 5.3% 26.1% ;
34- --sidebar-primary : 240 5.9 % 10% ;
34+ --sidebar-primary : 240 0 % 10% ;
3535 --sidebar-primary-foreground : 0 0% 98% ;
3636 --sidebar-accent : 240 4.8% 95.9% ;
3737 --sidebar-accent-foreground : 240 5.9% 30% ;
8383 body {
8484 @apply bg-background text-foreground;
8585 }
86- }
86+ }
Original file line number Diff line number Diff line change @@ -2,19 +2,16 @@ import { AppHeader } from '@/components/app-header';
22import { AppShell } from '@/components/app-shell' ;
33import { AppSidebar } from '@/components/app-sidebar' ;
44import { type BreadcrumbItem } from '@/types' ;
5-
6- // For the sidebar inset variant, uncomment the import line below and replace <main> with <SidebarInset>
7- // If you are not using the sidebar inset, remove these comments and keep the default layout.
8- //import { SidebarInset } from '@/components/ui/sidebar';
5+ import { SidebarInset } from '@/components/ui/sidebar' ;
96
107export default function App ( { children, breadcrumbs = [ ] } : { children : React . ReactNode ; breadcrumbs ?: BreadcrumbItem [ ] } ) {
118 return (
129 < AppShell >
1310 < AppSidebar />
14- < main >
11+ < SidebarInset >
1512 < AppHeader breadcrumbs = { breadcrumbs } />
1613 { children }
17- </ main >
14+ </ SidebarInset >
1815 </ AppShell >
1916 ) ;
2017}
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import { LoaderCircle } from 'lucide-react';
44import { FormEventHandler } from 'react' ;
55
66import InputError from '@/components/input-error' ;
7- import { TextLink } from '@/components/text-link' ;
7+ import TextLink from '@/components/text-link' ;
88import { Button } from '@/components/ui/button' ;
99import { Input } from '@/components/ui/input' ;
1010import { Label } from '@/components/ui/label' ;
You can’t perform that action at this time.
0 commit comments