From 4edc94350fe64fbda799785e75e041467a542680 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 12 May 2026 14:44:41 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index cd5d0b6..bc3b5d7 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -15,6 +15,7 @@ import { Poppins } from "next/font/google"; import { Manrope } from "next/font/google"; import { DM_Sans } from "next/font/google"; import { Public_Sans } from "next/font/google"; +import { Roboto } from "next/font/google"; @@ -37,14 +38,11 @@ export const metadata: Metadata = { title: 'Professional HVAC Services | Heating -const libreBaskerville = Libre_Baskerville({ - variable: "--font-libre-baskerville", - subsets: ["latin"], - weight: ["400", "700"], -}); -const inter = Inter({ - variable: "--font-inter", + +const roboto = Roboto({ + variable: "--font-roboto", subsets: ["latin"], + weight: ["100", "300", "400", "500", "700", "900"], }); export default function RootLayout({ @@ -55,7 +53,7 @@ export default function RootLayout({ return ( - + {children}