diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index f4a9714..d223efe 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -111,7 +111,7 @@ export default function AboutPage() { icon: Star, }, ]} - imageSrc="http://img.b2bpic.net/free-photo/office-workers-working-together-as-team_23-2149310877.jpg" + imageSrc="http://img.b2bpic.net/free-photo/office-workers-working-together-as-team_23-2149310877.jpg?_wi=2" imageAlt="Srajan Real Estate team working together" mediaAnimation="slide-up" imagePosition="left" diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 9c8db67..fe76d45 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -88,7 +88,7 @@ export default function ContactPage() { tagAnimation="slide-up" background={{ variant: "plain" }} useInvertedBackground={false} - imageSrc="http://img.b2bpic.net/free-photo/colleagues-work-office-using-computers-looking-aside_171337-6832.jpg" + imageSrc="http://img.b2bpic.net/free-photo/colleagues-work-office-using-computers-looking-aside_171337-6832.jpg?_wi=2" imageAlt="modern real estate office interior indore" mediaAnimation="slide-up" mediaPosition="right" diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0d09ce2..5909353 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,61 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Figtree } 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 { Figtree } 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 figtree = Figtree({ variable: "--font-figtree", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Srajan Real Estate & Finance Services - Property Consultancy Indore", + description: "Find your perfect property with Srajan Real Estate. Professional property buying, selling & investment consultation in Indore. 5.0★ rating from 28+ satisfied clients.", + keywords: "real estate Indore, property consultant Indore, buy property Indore, sell property, investment property, home loan assistance", + metadataBase: new URL("https://srajanrealestate.com"), + alternates: { + canonical: "https://srajanrealestate.com", + }, + openGraph: { + title: "Srajan Real Estate & Finance Services", + description: "Professional Real Estate & Finance Services in Indore. Property Buying, Selling & Investment.", + url: "https://srajanrealestate.com", + siteName: "Srajan Real Estate & Finance Services", + type: "website", + images: [ + { + url: "https://srajanrealestate.com/og-image.jpg", + alt: "Srajan Real Estate - Premium Properties in Indore", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Srajan Real Estate & Finance Services", + description: "Find your perfect property with trusted real estate experts in Indore", + images: ["https://srajanrealestate.com/twitter-image.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +64,9 @@ export default function RootLayout({ return ( - + {children}