From c22c94bb54d785612d6b7f29b09b1aaeeb474dde Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 06:50:36 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1430 +------------------------------------------- 1 file changed, 12 insertions(+), 1418 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7158664..14e7b8c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1432 +1,27 @@ import type { Metadata } from "next"; -import { Montserrat, Inter } 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 montserrat = Montserrat({ - variable: "--font-montserrat", - subsets: ["latin"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "North Shore Panel & Paint | Smash Repairs & Panel Beating Sunshine Coast", - description: "Professional smash repairs, panel beating, and paint restoration in Kunda Park. Honest pricing, fast turnaround, and flawless results for all auto body repairs.", - keywords: "panel beating, smash repairs, panel and paint, auto body repair, Sunshine Coast, Kunda Park, hail damage, paint restoration, collision repair", - metadataBase: new URL("https://northshorepanel.com.au"), - alternates: { - canonical: "https://northshorepanel.com.au", - }, - openGraph: { - title: "North Shore Panel & Paint | Premium Auto Body Repairs", - description: "Fast, honest, transparent auto body repairs on the Sunshine Coast. Smash repairs, panel beating, and paint restoration specialists.", - url: "https://northshorepanel.com.au", - siteName: "North Shore Panel & Paint", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/man-spraying-powder-paint-car-door-side-view_23-2149714305.jpg", - alt: "North Shore Panel & Paint - Premium Auto Repairs", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "North Shore Panel & Paint", - description: "Expert auto body repairs with transparent pricing and fast turnaround.", - images: ["http://img.b2bpic.net/free-photo/man-spraying-powder-paint-car-door-side-view_23-2149714305.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "North Shore Panel & Paint", description: "Expert auto body repair and paint services on the Sunshine Coast"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -