From 7e2351de0a35be8d54d6bfb4156b530103a64d86 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 20:40:04 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1423 +------------------------------------------- 1 file changed, 8 insertions(+), 1415 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index d36197c..900c4f0 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1425 +1,19 @@ -import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Roboto } 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 roboto = Roboto({ - variable: "--font-roboto", subsets: ["latin"], - weight: ["100", "300", "400", "500", "700", "900"], -}); +import type { Metadata } from 'next'; +import './globals.css'; export const metadata: Metadata = { - title: "LastikPark | Expert Tire Service in Mersin - Fast & Fair", description: "Professional tire replacement, balancing & repair in Mersin. Quick service, transparent pricing, trusted by 5,000+ drivers. Book your appointment today!", keywords: "tire service Mersin, tire replacement, wheel balancing, tire repair, car maintenance, professional mechanics", metadataBase: new URL("https://lastikpark.com"), - alternates: { - canonical: "https://lastikpark.com"}, - openGraph: { - title: "LastikPark | Expert Tire Service in Mersin", description: "Fast, fair, and professional tire service. Expert technicians, transparent pricing, same-day appointments.", url: "https://lastikpark.com", siteName: "LastikPark", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/happy-auto-repairman-measuring-depth-car-tire-workshop_637285-7564.jpg", alt: "LastikPark Professional Tire Service"}, - ], - }, - twitter: { - card: "summary_large_image", title: "LastikPark | Expert Tire Service in Mersin", description: "Professional tire replacement, balancing & repair. Fast service, fair prices.", images: ["http://img.b2bpic.net/free-photo/happy-auto-repairman-measuring-depth-car-tire-workshop_637285-7564.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} - -