From 1fd290b237e1727893dd27f4eba4bcebc8071695 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 22:33:08 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 55 ++++++++++------------------------------------ 1 file changed, 11 insertions(+), 44 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c2dc113..0f0aeff 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,25 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Montserrat } from "next/font/google"; +import { Manrope } from "next/font/google"; +import "./styles/variables.css"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const montserrat = Montserrat({ - variable: "--font-montserrat", subsets: ["latin"], +const manrope = Manrope({ + variable: "--font-manrope", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Taishan Construction | Premium Interlock & Hardscape Toronto", description: "Premium interlock driveways, patios, and construction services for Toronto and the GTA. Free 3D design. Fully insured. 1000+ projects completed.", keywords: "Toronto interlock contractor, interlock driveway Toronto, luxury landscaping GTA, backyard patio Toronto, retaining wall contractor, construction company Toronto, hardscape contractor", metadataBase: new URL("https://taishanconstruction.com"), - alternates: { - canonical: "https://taishanconstruction.com"}, - openGraph: { - title: "Taishan Construction | Premium Interlock & Hardscape Services", description: "Transform your Toronto property with premium interlock driveways, patios, and construction. Free 3D design consultation.", url: "https://taishanconstruction.com", siteName: "Taishan Construction", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/natural-grass-close-up_23-2148858213.jpg", alt: "Luxury interlock driveway installation Toronto"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Taishan Construction | Premium Interlock & Hardscape", description: "Premium construction services for Toronto. Free 3D design. Fully insured. 1000+ projects.", images: ["http://img.b2bpic.net/free-photo/natural-grass-close-up_23-2148858213.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + 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."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +