30 lines
781 B
TypeScript
30 lines
781 B
TypeScript
|
|
import '../styles/globals.css';
|
||
|
|
import type { Metadata } from 'next';
|
||
|
|
import { Fraunces } from 'next/font/google'
|
||
|
|
import Navbar from '../components/Navbar';
|
||
|
|
import Footer from '../components/Footer';
|
||
|
|
import classNames from 'classnames';
|
||
|
|
|
||
|
|
const font = Fraunces({ subsets: ['latin'] })
|
||
|
|
|
||
|
|
// export const metadata: Metadata = {
|
||
|
|
// title: 'Britton Benifit Services, LLC',
|
||
|
|
// };
|
||
|
|
|
||
|
|
export default function RootLayout({
|
||
|
|
children,
|
||
|
|
}: {
|
||
|
|
children: React.ReactNode;
|
||
|
|
}) {
|
||
|
|
return (
|
||
|
|
<html lang="en">
|
||
|
|
<body>
|
||
|
|
<main className={classNames("bg-deepcove min-h-screen flex justify-center", font.className)}>
|
||
|
|
<div className="w-full max-w-[1920px]">
|
||
|
|
{children}
|
||
|
|
</div>
|
||
|
|
</main>
|
||
|
|
</body>
|
||
|
|
</html>
|
||
|
|
);
|
||
|
|
}
|