import './globals.css' import Head from 'next/head' import Navbar from '@/components/Navbar' import { Inter, Besley, Cabin } from 'next/font/google' export const inter = Inter({ subsets: ['latin'] }) export const besley = Besley({ subsets: ['latin'] }) export const cabin = Cabin({ subsets: ['latin'] }) export default function RootLayout({ children }: { children: React.ReactNode }) { return (