From 5a869942aaa2f8a09a748082ed4c9f74b71b8130 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 10:40:14 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 52 +++++++++++----------------------------------- 1 file changed, 12 insertions(+), 40 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6ed2782..27af2ba 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,55 +1,28 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Figtree } 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 figtree = Figtree({ - variable: "--font-figtree", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Contact A Spay Accident Repair Centre | Expert Vehicle Restoration", description: "Professional accident repair and vehicle restoration services. Certified technicians, state-of-the-art equipment, and 15+ years of excellence.", keywords: "accident repair, vehicle restoration, car body repair, collision repair, auto repair shop, accident damage repair", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Contact A Spay Accident Repair Centre", description: "Expert accident repair and vehicle restoration services with certified technicians.", type: "website", siteName: "Contact A Spay Accident Repair Centre", images: [ - { - url: "http://img.b2bpic.net/free-photo/two-auto-mechanics-cooperating-while-repairing-tire-customer-s-car-auto-repair-shop_637285-4255.jpg", alt: "Professional repair facility"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Contact A Spay Accident Repair Centre", description: "Expert accident repair and vehicle restoration services", images: [ - "http://img.b2bpic.net/free-photo/two-auto-mechanics-cooperating-while-repairing-tire-customer-s-car-auto-repair-shop_637285-4255.jpg"], - }, -}; + title: "Contact A Spay - Expert Accident Repair Services", description: "Professional accident repair and vehicle restoration services with certified technicians and state-of-the-art equipment."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +