Account login

This commit is contained in:
augmentedpotato
2026-03-29 17:43:31 -06:00
parent 1c0f55fbe5
commit c048c4bdc3
9 changed files with 708 additions and 30 deletions

View File

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