uploading index to repo

This commit is contained in:
augmentedpotato
2026-03-24 16:56:03 -06:00
parent 79f8514f3e
commit a7dfe3962d
27 changed files with 7116 additions and 0 deletions

19
web/app/layout.js Normal file
View File

@@ -0,0 +1,19 @@
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
import DisplayNav from "@/components/Navigation";
export const metadata = {
title: "Leon's Pet Store",
description: "Generated by create next app",
};
export default function RootLayout({ children }) {
return (
<html lang="en">
<body>
<DisplayNav />
{children}
</body>
</html>
);
}