fresh AF login page

This commit is contained in:
2024-12-13 09:51:15 -05:00
parent e9d1901193
commit 137811f89b
3 changed files with 139 additions and 64 deletions

View File

@@ -2,16 +2,25 @@ import { Provider } from "../components/ui/provider"
import "../styles/globals.css";
import Navbar from "../components/Navbar";
import PopNav from "@src/components/PopNav/page";
import { Inter } from 'next/font/google'
export const metadata = {
title: 'Ballistic Builder',
description: 'Freedom On',
}
const inter = Inter({
subsets: ['latin'],
display: 'swap',
})
export default function RootLayout(props: { children: React.ReactNode }) {
const { children } = props;
return (
<html suppressHydrationWarning>
<html suppressHydrationWarning className={inter.className}>
<body className="bg-slate-200 ">
<Provider>
<Navbar />