From 4493b29637acf4588336be068e449ab9df95db6e Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 23:04:45 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c3df64d..e896fd0 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,15 +1,13 @@ import type { Metadata } from "next"; -import { Manrope } from "next/font/google"; -import "./styles/variables.css"; +import { Inter } from "next/font/google"; import "./globals.css"; +import "./styles/variables.css"; +import "./styles/base.css"; -const manrope = Manrope({ - variable: "--font-manrope", subsets: ["latin"], -}); +const inter = Inter({ 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." -}; + title: "Taishan Construction", description: "Premium landscaping and construction services for Toronto and the GTA"}; export default function RootLayout({ children, @@ -18,9 +16,7 @@ export default function RootLayout({ }) { return ( - - {children} - + {children}