From 5c3aa5d5f313d1aaabe0efc315a12361d3317672 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 16:59:42 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 61 ++++++++-------------------------------------- 1 file changed, 10 insertions(+), 51 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e8164b1..d35ab12 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - - - - - {children} - + + {children}