From ef74e8bd958adebe564db30a349c4ceb7020d8e5 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 01:30:48 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1438 +------------------------------------------- 1 file changed, 12 insertions(+), 1426 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index af14e53..181dd57 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1440 +1,27 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Poppins } from "next/font/google"; +import { Geist, Geist_Mono } from "next/font/google"; 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 geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const poppins = Poppins({ - variable: "--font-poppins", - subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Schuit General - Professional Construction & Renovation Ontario", - description: "Full-service general contracting for residential, cottage, and mid-rise projects. Exterior restorations and energy-efficient upgrades across Ontario. 25+ years of excellence.", - keywords: "general contracting Ontario, residential construction, exterior restoration, energy efficient upgrades, cottage renovation, mid-rise construction, Burlington", - metadataBase: new URL("https://schuitgeneral.com"), - alternates: { - canonical: "https://schuitgeneral.com", - }, - openGraph: { - title: "Schuit General - Premium Construction Services", - description: "Building stronger, smarter spaces. Full-service contracting and restoration across Ontario.", - siteName: "Schuit General", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/construction-site-with-tower-crane-apartments-urban-modern-architecture_169016-69092.jpg", - alt: "Schuit General construction project", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Schuit General - Construction & Renovation", - description: "Professional contracting and restoration services across Ontario", - images: ["http://img.b2bpic.net/free-photo/construction-site-with-tower-crane-apartments-urban-modern-architecture_169016-69092.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Create Next App", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -