From 43bee4235f293c2d1df9950e64eca32674433fe5 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 00:00:34 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5038c2c..c3df64d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,16 @@ import type { Metadata } from "next"; import { Manrope } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Open_Sans } from "next/font/google"; import "./styles/variables.css"; import "./globals.css"; +const manrope = Manrope({ + variable: "--font-manrope", subsets: ["latin"], +}); export const metadata: Metadata = { title: "Taishan Construction | Premium Hardscape & Building Services Toronto", description: "Premium interlock driveways, patios, landscaping & construction services across the GTA. Free 3D design, expert installation, luxury results." }; -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); -const openSans = Open_Sans({ - variable: "--font-open-sans", - subsets: ["latin"], -}); - export default function RootLayout({ children, }: { @@ -26,7 +18,7 @@ export default function RootLayout({ }) { return ( - + {children}