diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9b64f44..1b5b6d5 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,18 +1,22 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Inter_Tight } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Inter_Tight } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const interTight = Inter_Tight({ variable: "--font-inter-tight", @@ -20,6 +24,27 @@ const interTight = Inter_Tight({ weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); +export const metadata: Metadata = { + title: "RS Realty - Premium Properties in Pallavaram, Chennai", + description: "Discover verified luxury apartments, plots, and villas in Pallavaram, Chennai. Trusted real estate consultant with 115+ happy customers and 4.9★ rating.", + keywords: "real estate Pallavaram, property Chennai, apartments for sale, plots Chennai, luxury apartments Pallavaram", + openGraph: { + title: "RS Realty - Trusted Real Estate in Pallavaram, Chennai", + description: "Find your dream home with RS Realty. Verified properties, transparent pricing, fast response. Call 09840 289542", + type: "website", + siteName: "RS Realty", + }, + twitter: { + card: "summary_large_image", + title: "RS Realty - Pallavaram Real Estate Expert", + description: "Trusted property consultant in Chennai. 115+ happy customers, verified listings.", + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -28,7 +53,9 @@ export default function RootLayout({ return ( - + {children}