From f54af3cba8b5fde8ccfb2ba2d55daaa00d159d65 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 13:49:03 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 54 +++++++++------------------------------------- 1 file changed, 10 insertions(+), 44 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9070ec7..1cfd07b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,55 +1,22 @@ -import type { Metadata } from "next"; -import { Nunito } from "next/font/google"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import type { Metadata } from 'next'; +import { Inter } from 'next/font/google'; +import './globals.css'; -const nunito = Nunito({ - variable: "--font-nunito", subsets: ["latin"], -}); - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ['latin'] }); export const metadata: Metadata = { - title: "Snow Air - Professional Car Repair & Auto Service", description: "Expert car repair and maintenance services in your area. Certified technicians, honest pricing, transparent diagnostics. Call for a quote today!", keywords: "car repair, auto service, mechanic, brake repair, engine diagnostics, local repair shop", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Snow Air - Professional Car Repair & Auto Service", description: "Expert car repair and maintenance services. Certified technicians, honest pricing, transparent diagnostics.", type: "website", siteName: "Snow Air", images: [ - { - url: "http://img.b2bpic.net/free-photo/coworkers-car-service-using-professional-mechanical-tool-repair-broken-engine-efficient-workers-garage-repairing-client-automobile-ensuring-optimal-automotive-performance-close-up_482257-73057.jpg", alt: "Professional mechanic at Snow Air"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Snow Air - Professional Car Repair & Auto Service", description: "Expert car repair and maintenance services. Certified technicians, honest pricing, transparent diagnostics.", images: [ - "http://img.b2bpic.net/free-photo/coworkers-car-service-using-professional-mechanical-tool-repair-broken-engine-efficient-workers-garage-repairing-client-automobile-ensuring-optimal-automotive-performance-close-up_482257-73057.jpg"], - }, + title: 'Snow Air - Professional Auto Repair Services', + description: 'Certified technicians. Honest pricing. Expert automotive repair and maintenance services you can trust.', }; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}