From 33a1519f417cf4f960672837ef1fbff2e2a03d19 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 10:57:27 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1439 +------------------------------------------- 1 file changed, 12 insertions(+), 1427 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 75189d5..92d884b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1441 +1,27 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Inter_Tight } 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 interTight = Inter_Tight({ - variable: "--font-inter-tight", - 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: "Home Renovation & Building Services | BuildPro UK", - description: "Expert home renovation and building contractors throughout the UK. Kitchen renovations, bathroom upgrades, extensions, and roofing services. Get a free quote today.", - keywords: "home renovation UK, builders contractors, kitchen renovation, bathroom upgrade, home extension, roofing services, professional builders", - metadataBase: new URL("https://buildpro.co.uk"), - alternates: { - canonical: "https://buildpro.co.uk", - }, - openGraph: { - title: "Transform Your Home with BuildPro - Expert UK Builders", - description: "Professional home renovation and building services. 500+ completed projects. 98% customer satisfaction. Get your free quote today.", - url: "https://buildpro.co.uk", - siteName: "BuildPro UK", - type: "website", - images: [ - { - url: "https://buildpro.co.uk/og-image.jpg", - alt: "BuildPro - Professional Home Renovation Services", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Expert Home Renovation & Building Services | BuildPro UK", - description: "Transform your home with professional UK builders. 500+ projects completed. Free quote available.", - images: ["https://buildpro.co.uk/twitter-image.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} - -