Files
group-2-threaded-project-pe…/web/app/layout.js
2026-03-24 16:56:03 -06:00

20 lines
406 B
JavaScript

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>
);
}