2024-11-14 12:45:58 -05:00
|
|
|
import type { Metadata } from "next";
|
|
|
|
|
import localFont from "next/font/local";
|
2024-11-20 16:37:54 -05:00
|
|
|
import { Providers } from './providers'
|
2024-11-14 12:45:58 -05:00
|
|
|
import "./globals.css";
|
|
|
|
|
|
|
|
|
|
const geistSans = localFont({
|
|
|
|
|
src: "./fonts/GeistVF.woff",
|
|
|
|
|
variable: "--font-geist-sans",
|
|
|
|
|
weight: "100 900",
|
|
|
|
|
});
|
|
|
|
|
const geistMono = localFont({
|
|
|
|
|
src: "./fonts/GeistMonoVF.woff",
|
|
|
|
|
variable: "--font-geist-mono",
|
|
|
|
|
weight: "100 900",
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
2024-11-20 13:49:58 -05:00
|
|
|
title: "Ballistic Builder",
|
|
|
|
|
description: "Freedom On",
|
2024-11-14 12:45:58 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
|
children,
|
|
|
|
|
}: Readonly<{
|
|
|
|
|
children: React.ReactNode;
|
|
|
|
|
}>) {
|
|
|
|
|
return (
|
|
|
|
|
<html lang="en">
|
2024-11-20 16:37:54 -05:00
|
|
|
<body className={`${geistSans.variable} ${geistMono.variable} antialiased`} >
|
|
|
|
|
<Providers>{children}</Providers>
|
2024-11-14 12:45:58 -05:00
|
|
|
</body>
|
|
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|