From 32154f57f8b74241efa0f023efcef2597ce79dd2 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 13 May 2026 16:26:12 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1741423..2a14d59 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -7,6 +7,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 { Roboto } from "next/font/google"; @@ -16,13 +17,11 @@ export const metadata: Metadata = { keywords: ["industrial installation, machinery fabrication, metal fabrication, industrial engineering, mechanical support, Montgomery AL"], }; -const montserrat = Montserrat({ - variable: "--font-montserrat", - subsets: ["latin"], -}); -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({ @@ -33,7 +32,7 @@ export default function RootLayout({ return ( - + {children}