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

27 lines
707 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 { Inter } from "next/font/google";
2025-06-30 06:36:03 -04:00
import Providers from "@/components/Providers";
2025-06-29 05:28:04 -04:00
const inter = Inter({ subsets: ["latin"] });
2025-06-29 05:28:04 -04:00
export const metadata: Metadata = {
title: "Pew Builder - Firearm Parts Catalog & Build Management",
description: "Professional firearm parts catalog and AR-15 build management system",
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 (
2025-06-29 13:43:46 -04:00
<html lang="en" suppressHydrationWarning data-theme="pew">
<body className={`${inter.className} antialiased`}>
2025-06-30 06:36:03 -04:00
<Providers>
{children}
</Providers>
2025-06-29 05:28:04 -04:00
</body>
</html>
);
2025-06-29 07:12:20 -04:00
}