From c86d473de9e2e3a051bb9b465ee67b5b13a541a8 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 17 Mar 2026 23:30:43 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0062295..a97516b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -6,6 +6,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; import { Montserrat } from "next/font/google"; +import { Nunito_Sans } from "next/font/google"; @@ -14,11 +15,10 @@ export const metadata: Metadata = { description: '30+ years of trusted roofing expertise. Residential and commercial roofing, gutters, skylights, and more. Free quotes. License #1027897.', }; -const montserrat = Montserrat({ - variable: "--font-montserrat", subsets: ["latin"], -}); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], + +const nunitoSans = Nunito_Sans({ + variable: "--font-nunito-sans", + subsets: ["latin"], }); export default function RootLayout({ @@ -29,7 +29,7 @@ export default function RootLayout({ return ( - + {children}