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