Merge version_2 into main #2
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${publicSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1417,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -53,7 +53,7 @@ export default function LandingPage() {
|
||||
}}
|
||||
buttons={[
|
||||
{
|
||||
text: "Call Now: 079820 08283", href: "tel:07982008283"
|
||||
text: "Get Same-Day Repair", href: "tel:07982008283"
|
||||
},
|
||||
{
|
||||
text: "Request Service Today", href: "#contact"
|
||||
|
||||
Reference in New Issue
Block a user