diff --git a/frontend/src/app/layout.tsx b/frontend/src/app/layout.tsx index e914be1af..993d66550 100644 --- a/frontend/src/app/layout.tsx +++ b/frontend/src/app/layout.tsx @@ -6,5 +6,9 @@ type Props = { }; export default function RootLayout({ children }: Props) { - return children; + return ( + + {children} + + ); }