From d20b4fadf42fd3a221ec7c5c67444c9951c0febd Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 27 Apr 2026 12:23:44 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 8b9a40e..1902b03 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 { Archivo } from "next/font/google"; +import { Raleway } from "next/font/google"; @@ -15,7 +16,11 @@ export const metadata: Metadata = { description: 'Elite janitorial and cleaning consultancy services for corporate and residential spaces.', }; -const archivo = Archivo({ variable: "--font-archivo", subsets: ["latin"] }); + +const raleway = Raleway({ + variable: "--font-raleway", + subsets: ["latin"], +}); export default function RootLayout({ children, @@ -25,7 +30,7 @@ export default function RootLayout({ return ( - + {children}