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 = { metadataBase: new URL("https://fullcircledigitalmarketing.ca"), 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: "data:image/svg+xml,", }, generator: "v0.dev", openGraph: { title: "Full Circle Digital Marketing", description: "We are a boutique digital marketing team committed to helping you succeed at what you do best.", url: "https://fullcircledigitalmarketing.ca", siteName: "Full Circle Digital Marketing", images: [ { url: "/og-image.jpg", width: 1200, height: 630, alt: "Full Circle Digital Marketing", }, ], locale: "en_CA", type: "website", }, twitter: { card: "summary_large_image", title: "Full Circle Digital Marketing", description: "We are a boutique digital marketing team committed to helping you succeed at what you do best.", images: ["/og-image.jpg"], }, } 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} ) }