From 020cf8f80f6e8bb13c9cfbbed2ba5c4e653ccd91 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 19:35:28 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 1419 +------------------------------------------- 1 file changed, 6 insertions(+), 1413 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 4228cc8..f20a135 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1426 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Open_Sans } 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 inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Auto Repair Varna | AutoMechanic-Varna - Trusted Local Mechanics", description: "Professional auto repair service in Varna. Fast diagnostics, honest pricing, 4.8★ rating. Expert mechanics for all your vehicle needs. Call 089 976 4818 or book online.", keywords: "auto repair Varna, mechanic Varna, car service Varna, automotive repair, vehicle maintenance, diagnostics, автосервиз Варна, ремонт автомобили", metadataBase: new URL("https://automechanic-varna.com"), - alternates: { - canonical: "https://automechanic-varna.com" - }, - openGraph: { - title: "Auto Repair Varna | AutoMechanic-Varna", description: "Trusted local auto repair service in Varna with 4.8★ customer rating. Expert diagnostics and honest pricing.", url: "https://automechanic-varna.com", siteName: "AutoMechanic-Varna", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/close-up-shot-screw-cutting-machine-factory-that-makes-metal-details_645730-52.jpg", alt: "Professional auto repair garage in Varna" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Auto Repair Varna | AutoMechanic-Varna", description: "Trusted auto repair in Varna. 4.8★ rating. Expert mechanics. Call 089 976 4818", images: ["http://img.b2bpic.net/free-photo/close-up-shot-screw-cutting-machine-factory-that-makes-metal-details_645730-52.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "AutoMechanic-Varna | Trusted Auto Repair Service", description: "Professional auto repair and maintenance services in Varna. Expert mechanics, honest pricing, and trusted local service for over 10 years."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -