diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 793f0b93..9d807425 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,6 +1,7 @@ import type { Metadata, Viewport } from 'next'; import { Inter } from 'next/font/google'; -import './globals.css'; +import '@/app/globals.css'; +import MainDrawer from '@/components/MainDrawer'; const inter = Inter({ variable: '--font-inter', @@ -26,7 +27,7 @@ export default function RootLayout({ return ( - {children} + {children} );