feat: add root layout for App Router

This commit is contained in:
2026-06-27 21:24:08 +00:00
parent 9c2a63b009
commit 1b6531fbb7
+16
View File
@@ -0,0 +1,16 @@
export const metadata = {
title: 'La Huasca',
description: 'TypeScript + Next.js scaffold with Pretext text measurement',
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en">
<body>{children}</body>
</html>
);
}