mirror of
https://gitea.gofwd.group/sean/gunbuilder-next-tailwind.git
synced 2025-12-05 18:46:45 -05:00
24 lines
616 B
TypeScript
24 lines
616 B
TypeScript
import "./globals.css";
|
|
import type { Metadata } from "next";
|
|
import { Inter } from "next/font/google";
|
|
|
|
const inter = Inter({ subsets: ["latin"] });
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Pew Builder - Firearm Parts Catalog & Build Management",
|
|
description: "Professional firearm parts catalog and AR-15 build management system",
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<html lang="en" suppressHydrationWarning data-theme="pew">
|
|
<body className={`${inter.className} antialiased`}>
|
|
{children}
|
|
</body>
|
|
</html>
|
|
);
|
|
} |