diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a52ed24..41967a7 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,55 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Public_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 publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "AC Repair & Rental Service in South Delhi | Palak AC Service", description: "24/7 AC repair, installation, and rental services in Chhatarpur, South Delhi. Same-day service, certified technicians, affordable pricing. Call 079820 08283 now.", keywords: "AC repair Chhatarpur, AC service South Delhi, AC rental Delhi, emergency AC repair, AC gas filling, AC installation", openGraph: { - title: "AC Repair & Rental Service in South Delhi | Palak AC Service", description: "Professional AC repair, installation, and rental services. 24/7 emergency support. Trusted by 1000+ satisfied customers.", siteName: "Palak AC Service", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/close-up-skillful-technician-commissioned-outside-hvac-system-routine-maintenance-looking-refrigerant-issues-meticulous-mechanic-doing-air-conditioner-inspection-writing-data-tablet_482257-66265.jpg", alt: "Professional AC repair service"}, - ], - }, - twitter: { - card: "summary_large_image", title: "AC Repair & Rental Service in South Delhi", description: "Fast, affordable AC repair and rental. 24/7 emergency service available.", images: [ - "http://img.b2bpic.net/free-photo/close-up-skillful-technician-commissioned-outside-hvac-system-routine-maintenance-looking-refrigerant-issues-meticulous-mechanic-doing-air-conditioner-inspection-writing-data-tablet_482257-66265.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Palak AC Service - AC Repair & Rental in South Delhi", description: "Professional AC repair, maintenance, installation, and rental services in South Delhi. 24/7 emergency support, same-day service, and affordable pricing."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}