Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| f782b47313 | |||
| 5c3aa5d5f3 | |||
| 32be82a6a2 | |||
| f266861deb | |||
| 9a245d27c0 |
@@ -1,64 +1,24 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Manrope } from "next/font/google";
|
import { Poppins } from "next/font/google";
|
||||||
import { DM_Sans } from "next/font/google";
|
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const manrope = Manrope({
|
const poppins = Poppins({
|
||||||
variable: "--font-manrope", subsets: ["latin"],
|
subsets: ["latin"],
|
||||||
});
|
weight: ["400", "500", "600", "700", "800", "900"],
|
||||||
|
|
||||||
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"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
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"),
|
title: "Atharva Green Properties - Premium Bungalows & Plots in Pune", description:
|
||||||
alternates: {
|
"Own your dream home with Atharva Green Properties. Premium bungalows and residential plots in Pune with legal clarity, affordable pricing, and gated community security."};
|
||||||
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
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={poppins.className}>{children}
|
||||||
<body
|
|
||||||
className={`${manrope.variable} ${dmSans.variable} ${halant.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1426,7 +1386,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -31,6 +31,7 @@ import {
|
|||||||
Instagram,
|
Instagram,
|
||||||
Linkedin,
|
Linkedin,
|
||||||
MessageCircle,
|
MessageCircle,
|
||||||
|
AlertCircle,
|
||||||
} from "lucide-react";
|
} from "lucide-react";
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
@@ -208,7 +209,7 @@ export default function LandingPage() {
|
|||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactCTA
|
<ContactCTA
|
||||||
tag="Book Your Dream Home Today"
|
tag="Book Your Dream Home Today"
|
||||||
tagIcon={Calendar}
|
tagIcon={AlertCircle}
|
||||||
title="Limited plots and bungalows available - Don't miss the opportunity to secure your future!"
|
title="Limited plots and bungalows available - Don't miss the opportunity to secure your future!"
|
||||||
description="Our dedicated team is ready to help you find the perfect property and guide you through every step of the investment process. Contact us today to schedule a personalized site visit."
|
description="Our dedicated team is ready to help you find the perfect property and guide you through every step of the investment process. Contact us today to schedule a personalized site visit."
|
||||||
buttons={[
|
buttons={[
|
||||||
|
|||||||
Reference in New Issue
Block a user