diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5b34428..f3742d4 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -6,23 +6,23 @@ import "@/lib/gsap-setup"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; +import { Libre_Baskerville } from "next/font/google"; -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); export const metadata: Metadata = { title: 'Bella Italia Ristorante - Authentic Italian Dining', description: 'Experience the true taste of Italy at Bella Italia Ristorante. Fresh pasta, exquisite sauces, and a warm ambiance await you. Book your table today!', }; +const libreBaskerville = Libre_Baskerville({ + variable: "--font-libre-baskerville", subsets: ["latin"], + weight: ["400", "700"], +}); +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], +}); + export default function RootLayout({ children, }: Readonly<{ @@ -31,9 +31,7 @@ export default function RootLayout({ return ( - + {children}