Simplify layout by directly rendering children without a wrapping <main> element.

This commit is contained in:
2025-06-20 00:01:26 +09:00
parent e25e0e7ef9
commit b0adb0476c

View File

@@ -17,7 +17,7 @@ export default function RootLayout(
<html lang="de"> <html lang="de">
<body className={inter.className}> <body className={inter.className}>
<Navbar/> <Navbar/>
<main>{children}</main> {children}
<Footer/> <Footer/>
</body> </body>
</html> </html>