Files
gunbuilder-next-tailwind/src/app/layout.tsx
T
2025-06-29 07:12:20 -04:00

34 lines
787 B
TypeScript

import "./globals.css";
import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import { Navbar } from "@/components/Navbar";
const geistSans = Geist({
variable: "--font-geist-sans",
subsets: ["latin"],
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Pew Builder - Firearm Parts Catalog",
description: "Build your dream AR-15 with our comprehensive parts catalog and build checklist",
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en">
<body className={`${geistSans.variable} ${geistMono.variable}`}>
<Navbar />
{children}
</body>
</html>
);
}