From f42c8eaa155b37a78a35d4e2cabd829137618179 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 02:36:33 +0000 Subject: [PATCH] Switch to version 2: modified src/app/layout.tsx --- src/app/layout.tsx | 30 ++++++++++++++---------------- 1 file changed, 14 insertions(+), 16 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index b4c74e6..7f0e423 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -6,22 +6,12 @@ import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; +import { Open_Sans } from "next/font/google"; +import { Manrope } from "next/font/google"; +import { DM_Sans } from "next/font/google"; -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); -const publicSans = Public_Sans({ - variable: "--font-public-sans", - subsets: ["latin"], -}); export const metadata: Metadata = { title: "Flying V Construction | Alberta Roofing, Decking & Exterior", @@ -58,6 +48,16 @@ export const metadata: Metadata = { }, }; + +const manrope = Manrope({ + variable: "--font-manrope", + subsets: ["latin"], +}); +const dmSans = DM_Sans({ + variable: "--font-dm-sans", + subsets: ["latin"], +}); + export default function RootLayout({ children, }: Readonly<{ @@ -66,9 +66,7 @@ export default function RootLayout({ return ( - + {children}