From 36e151548165c56ce280410250f237f2f9cc7a5d Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 16:46:38 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index eacb944..d47ad6d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,12 +1,15 @@ import type { Metadata } from "next"; -import { Raleway } from "next/font/google"; +import { Inter } from "next/font/google"; +import "./styles/variables.css"; +import "./styles/base.css"; import "./globals.css"; -const raleway = Raleway({ subsets: ["latin"] }); +const inter = Inter({ + subsets: ["latin"], +}); export const metadata: Metadata = { - title: "Taishan Construction - Premium Hardscape & Construction Services Toronto", description: "Premium landscaping and construction services across the GTA. Free 3D design, professional installation, material showroom." -}; + title: "Taishan Construction", description: "Premium hardscape and outdoor design services in Toronto and the Greater Toronto Area"}; export default function RootLayout({ children, @@ -15,7 +18,7 @@ export default function RootLayout({ }) { return ( - {children} + {children}