Files
gunbuilder-next-tailwind/src/app/layout.tsx

34 lines
787 B
TypeScript
Raw Normal View History

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