diff --git a/src/app/layout.tsx b/src/app/layout.tsx index d370830..3ab1c03 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -5,6 +5,7 @@ import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; +import { Libre_Baskerville } from "next/font/google"; @@ -13,8 +14,15 @@ export const metadata: Metadata = { description: 'Fast, professional tree removal, trimming, and stump grinding at fair prices. 4.9★ rated. Free estimates. Call (505) 402-3513 today.', }; + +const libreBaskerville = Libre_Baskerville({ + variable: "--font-libre-baskerville", + subsets: ["latin"], + weight: ["400", "700"], +}); const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], + variable: "--font-inter", + subsets: ["latin"], }); export default function RootLayout({ @@ -25,7 +33,7 @@ export default function RootLayout({ return ( - + {children}