import type React from "react" import type { Metadata } from "next" import { Oswald, Permanent_Marker, Playfair_Display, Roboto } from "next/font/google" import "./globals.css" const oswald = Oswald({ subsets: ["latin"], weight: ["300"], variable: "--font-oswald", display: "swap", }) const permanentMarker = Permanent_Marker({ subsets: ["latin"], weight: ["400"], variable: "--font-permanent-marker", display: "swap", }) const playfairDisplay = Playfair_Display({ subsets: ["latin"], weight: ["400"], variable: "--font-playfair-display", display: "swap", }) const roboto = Roboto({ subsets: ["latin"], weight: ["300", "400", "500"], variable: "--font-roboto", display: "swap", }) export const metadata: Metadata = { title: "Full Circle Digital Marketing", description: "We are a boutique digital marketing team committed to helping you succeed at what you do best.", icons: { icon: "https://hebbkx1anhila5yf.public.blob.vercel-storage.com/Full-Circle-Digital-Marketing-Submark-Web-OF9AEH5BhFbC3uaQ9le1QiIkUjPzdD.png", apple: "https://hebbkx1anhila5yf.public.blob.vercel-storage.com/Full-Circle-Digital-Marketing-Submark-Web-OF9AEH5BhFbC3uaQ9le1QiIkUjPzdD.png", }, generator: 'v0.dev' } export default function RootLayout({ children, }: { children: React.ReactNode }) { return ( {/* Preload critical fonts for faster rendering */} {/* DNS prefetch for Google Fonts */} {/* Preconnect for faster font loading */} {children} ) }