Initial commit from Create Next App

This commit is contained in:
Gavin McDonald
2025-04-09 09:13:53 -04:00
commit a7708b4fad
12 changed files with 1686 additions and 0 deletions

3
app/b/page.tsx Normal file
View File

@@ -0,0 +1,3 @@
export default function B() {
return <div>b</div>;
}

11
app/layout.tsx Normal file
View File

@@ -0,0 +1,11 @@
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en">
<body>{children}</body>
</html>
);
}