diff --git a/src/app/(web)/layout.tsx b/src/app/(web)/layout.tsx index e0c2e53..5942579 100644 --- a/src/app/(web)/layout.tsx +++ b/src/app/(web)/layout.tsx @@ -7,22 +7,24 @@ import { ThemeProvider } from '@/components/theme-provider'; import '../globals.css' +import { ReactNode } from 'react'; + interface RootLayoutProps { - children: React.ReactNode; - } - -export default function RootLayout({ children }: RootLayoutProps) { - return ( - - - - - -
{children}
-