working again, missing global.css in page.tsx

This commit is contained in:
2024-11-20 21:56:30 -05:00
parent 4de7d55b55
commit d1bd68e720
6 changed files with 16 additions and 15 deletions

View File

@@ -3,9 +3,7 @@ export const metadata = {
description: 'Generated by Next.js',
}
export default function RootLayout({
children,
}: {
export default function RootLayout({ children,}: {
children: React.ReactNode
}) {
return (
@@ -13,4 +11,4 @@ export default function RootLayout({
<body>{children}</body>
</html>
)
}
}