fix: correct component syntax and formatting in layout and header files

This commit is contained in:
tuna2134
2026-05-26 08:42:04 +09:00
parent dcf4255535
commit 4b91d2ea8a
4 changed files with 11 additions and 11 deletions

View File

@@ -27,7 +27,9 @@ export default function RootLayout({
lang="ja"
className={`${geistSans.variable} ${geistMono.variable} h-full antialiased`}
>
<body className="min-h-full flex flex-col bg-black text-white">{children}</body>
<body className="min-h-full flex flex-col bg-black text-white">
{children}
</body>
</html>
);
}