From 61f32dba9269a9fe318f08c490bcb3277618a9f3 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 13:06:06 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 50 +++++++++++----------------------------------- 1 file changed, 12 insertions(+), 38 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 3a69d76..9b33e8c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,53 +1,28 @@ import type { Metadata } from "next"; -import { Mulish } from "next/font/google"; -import { 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 mulish = Mulish({ - variable: "--font-mulish", 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: "AS Mobile Zone - Phone Repair & Accessories in Dobbaspet", description: "Expert mobile phone repair services in Dobbaspet, Karnataka. Screen replacement, software updates, and quality accessories. Fast turnaround, trusted technicians.", keywords: "phone repair Dobbaspet, mobile repair Karnataka, screen replacement, phone accessories, mobile service", metadataBase: new URL("https://asmobilezone.com"), - alternates: { - canonical: "https://asmobilezone.com" - }, - openGraph: { - title: "AS Mobile Zone - Your Mobile Repair Experts", description: "Professional phone repair and genuine accessories in Dobbaspet. Expert technicians, quick service, trusted quality.", type: "website", siteName: "AS Mobile Zone", images: [ - { - url: "http://img.b2bpic.net/free-photo/pro-uses-special-plastic-opener-unclip-electronic-cord-from-motherboard-gadget-repairing-fixing-service-lab_346278-1782.jpg", alt: "AS Mobile Zone - Professional Phone Repair Service" - } - ] - }, - twitter: { - card: "summary_large_image", title: "AS Mobile Zone - Phone Repair Experts", description: "Fast, reliable phone repairs and accessories in Dobbaspet", images: ["http://img.b2bpic.net/free-photo/pro-uses-special-plastic-opener-unclip-electronic-cord-from-motherboard-gadget-repairing-fixing-service-lab_346278-1782.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "AS Mobile Zone - Expert Phone Repair Services", description: "Fast, reliable phone repairs and genuine accessories in Dobbaspet. Screen replacements, software updates, and more."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +