|
|
|
|
@@ -1,64 +1,24 @@
|
|
|
|
|
import type { Metadata } from "next";
|
|
|
|
|
import { Manrope } from "next/font/google";
|
|
|
|
|
import { DM_Sans } from "next/font/google";
|
|
|
|
|
import { Halant } from "next/font/google";
|
|
|
|
|
import { Inter } from "next/font/google";
|
|
|
|
|
import { Poppins } from "next/font/google";
|
|
|
|
|
import "./globals.css";
|
|
|
|
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
|
|
|
import Tag from "@/tag/Tag";
|
|
|
|
|
|
|
|
|
|
const manrope = Manrope({
|
|
|
|
|
variable: "--font-manrope", subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const dmSans = DM_Sans({
|
|
|
|
|
variable: "--font-dm-sans", subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const halant = Halant({
|
|
|
|
|
variable: "--font-halant", subsets: ["latin"],
|
|
|
|
|
weight: ["300", "400", "500", "600", "700"],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const inter = Inter({
|
|
|
|
|
variable: "--font-inter", subsets: ["latin"],
|
|
|
|
|
const poppins = Poppins({
|
|
|
|
|
subsets: ["latin"],
|
|
|
|
|
weight: ["400", "500", "600", "700", "800", "900"],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
|
title: "Atharva Green Properties | Premium Bungalows & Plots in Pune", description: "Discover affordable premium bungalows and residential plots in Pune. Legally clear properties with gated security, easy EMI, and prime locations near schools, hospitals, and highways.", keywords: "bungalows in Pune, residential plots Pune, property for sale, investment land, gated community, affordable housing", metadataBase: new URL("https://atharvagreen.com"),
|
|
|
|
|
alternates: {
|
|
|
|
|
canonical: "https://atharvagreen.com"
|
|
|
|
|
},
|
|
|
|
|
openGraph: {
|
|
|
|
|
title: "Atharva Green Properties | Premium Bungalows & Plots in Pune", description: "Own your dream home in nature's lap. Premium yet affordable properties with transparent documentation and excellent connectivity.", url: "https://atharvagreen.com", siteName: "Atharva Green Properties", type: "website", images: [
|
|
|
|
|
{
|
|
|
|
|
url: "https://atharvagreen.com/og-image.jpg", alt: "Atharva Green Properties - Premium Bungalows in Pune"
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
twitter: {
|
|
|
|
|
card: "summary_large_image", title: "Atharva Green Properties | Premium Bungalows & Plots in Pune", description: "Discover affordable premium residential properties with transparent documentation and prime locations.", images: ["https://atharvagreen.com/twitter-image.jpg"]
|
|
|
|
|
},
|
|
|
|
|
robots: {
|
|
|
|
|
index: true,
|
|
|
|
|
follow: true
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
title: "Atharva Green Properties - Premium Bungalows & Plots in Pune", description:
|
|
|
|
|
"Own your dream home with Atharva Green Properties. Premium bungalows and residential plots in Pune with legal clarity, affordable pricing, and gated community security."};
|
|
|
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
|
children,
|
|
|
|
|
}: Readonly<{
|
|
|
|
|
}: {
|
|
|
|
|
children: React.ReactNode;
|
|
|
|
|
}>) {
|
|
|
|
|
}) {
|
|
|
|
|
return (
|
|
|
|
|
<html lang="en" suppressHydrationWarning>
|
|
|
|
|
<ServiceWrapper>
|
|
|
|
|
<body
|
|
|
|
|
className={`${manrope.variable} ${dmSans.variable} ${halant.variable} ${inter.variable} antialiased`}
|
|
|
|
|
>
|
|
|
|
|
<Tag />
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<body className={poppins.className}>{children}
|
|
|
|
|
<script
|
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
|
__html: `
|
|
|
|
|
@@ -1426,7 +1386,6 @@ export default function RootLayout({
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</body>
|
|
|
|
|
</ServiceWrapper>
|
|
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|