mirror of
https://gitea.gofwd.group/dstrawsb/ballistic-builder.git
synced 2025-12-06 02:36:44 -05:00
fresh AF login page
This commit is contained in:
@@ -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 />
|
||||
|
||||
Reference in New Issue
Block a user