Merge version_1 into main #1

Merged
bender merged 6 commits from version_1 into main 2026-03-16 09:47:29 +00:00
6 changed files with 77 additions and 38 deletions

View File

@@ -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"

View File

@@ -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"

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${figtree.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${figtree.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +78,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -145,7 +145,7 @@ export default function HomePage() {
icon: MapPin,
},
]}
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=1"
imageAlt="Srajan Real Estate office team"
mediaAnimation="slide-up"
imagePosition="right"
@@ -187,7 +187,7 @@ export default function HomePage() {
"Navigate property finance with ease. We provide guidance on home loan options, financial planning, and connect you with reliable lenders to secure the best loan terms.",
},
]}
imageSrc="http://img.b2bpic.net/free-photo/senior-businessman-with-laptop-sitting-together-with-colleague-office_23-2147923364.jpg"
imageSrc="http://img.b2bpic.net/free-photo/senior-businessman-with-laptop-sitting-together-with-colleague-office_23-2147923364.jpg?_wi=1"
imageAlt="Real estate consultation services"
mediaAnimation="slide-up"
useInvertedBackground={true}
@@ -211,7 +211,7 @@ export default function HomePage() {
name: "Luxury Flat - Mahalaxmi Nagar",
price: "₹45 Lakhs",
imageSrc:
"http://img.b2bpic.net/free-photo/stylish-scandinavian-living-room-with-design-mint-sofa-furnitures-mock-up-poster-map-plants-eleg_1258-152167.jpg",
"http://img.b2bpic.net/free-photo/stylish-scandinavian-living-room-with-design-mint-sofa-furnitures-mock-up-poster-map-plants-eleg_1258-152167.jpg?_wi=1",
imageAlt: "Luxury flat in Mahalaxmi Nagar, Indore",
},
{
@@ -219,7 +219,7 @@ export default function HomePage() {
name: "Independent House - South Indore",
price: "₹75 Lakhs",
imageSrc:
"http://img.b2bpic.net/free-photo/close-up-entrance-courtyard-lions_1139-26.jpg",
"http://img.b2bpic.net/free-photo/close-up-entrance-courtyard-lions_1139-26.jpg?_wi=1",
imageAlt: "Independent house in South Indore",
},
{
@@ -227,7 +227,7 @@ export default function HomePage() {
name: "Residential Plot - Premium Location",
price: "₹25 Lakhs",
imageSrc:
"http://img.b2bpic.net/free-photo/scene-construction-site-with-equipment_23-2151317260.jpg",
"http://img.b2bpic.net/free-photo/scene-construction-site-with-equipment_23-2151317260.jpg?_wi=1",
imageAlt: "Residential plot in premium location",
},
{
@@ -235,7 +235,7 @@ export default function HomePage() {
name: "Investment Apartment - IT Park Area",
price: "₹35 Lakhs",
imageSrc:
"http://img.b2bpic.net/free-photo/hight-rise-condominium-office-buildings_1127-3571.jpg",
"http://img.b2bpic.net/free-photo/hight-rise-condominium-office-buildings_1127-3571.jpg?_wi=1",
imageAlt: "Investment apartment near IT Park",
},
{
@@ -243,7 +243,7 @@ export default function HomePage() {
name: "Commercial Space - Business District",
price: "₹50 Lakhs",
imageSrc:
"http://img.b2bpic.net/free-photo/concrete-street_1127-2051.jpg",
"http://img.b2bpic.net/free-photo/concrete-street_1127-2051.jpg?_wi=1",
imageAlt: "Commercial space in business district",
},
{
@@ -251,7 +251,7 @@ export default function HomePage() {
name: "Apartment Complex - New Development",
price: "₹60 Lakhs",
imageSrc:
"http://img.b2bpic.net/free-photo/office-buildings-with-modern-architecture_107420-95730.jpg",
"http://img.b2bpic.net/free-photo/office-buildings-with-modern-architecture_107420-95730.jpg?_wi=1",
imageAlt: "Apartment complex in new development",
},
]}
@@ -315,7 +315,7 @@ export default function HomePage() {
name: "Vipin Gupta",
role: "Property Buyer",
imageSrc:
"http://img.b2bpic.net/free-photo/man-with-thumb-up_1368-6368.jpg",
"http://img.b2bpic.net/free-photo/man-with-thumb-up_1368-6368.jpg?_wi=1",
imageAlt: "professional headshot business man portrait",
},
{
@@ -326,7 +326,7 @@ export default function HomePage() {
name: "Yash Kasniyal",
role: "Property Investor",
imageSrc:
"http://img.b2bpic.net/free-photo/happy-mature-businessman-talking-cellphone-with-cup-coffee-laptop-desk_23-2147955268.jpg",
"http://img.b2bpic.net/free-photo/happy-mature-businessman-talking-cellphone-with-cup-coffee-laptop-desk_23-2147955268.jpg?_wi=1",
imageAlt: "young professional investor portrait photo",
},
{
@@ -337,7 +337,7 @@ export default function HomePage() {
name: "Sanjana Sharma",
role: "First-time Homebuyer",
imageSrc:
"http://img.b2bpic.net/free-photo/young-smiling-woman-cafe-drinking-coffee-date-looking-camera_197531-22708.jpg",
"http://img.b2bpic.net/free-photo/young-smiling-woman-cafe-drinking-coffee-date-looking-camera_197531-22708.jpg?_wi=1",
imageAlt: "professional woman businesswoman portrait",
},
{
@@ -348,7 +348,7 @@ export default function HomePage() {
name: "Rajesh Patel",
role: "Real Estate Investor",
imageSrc:
"http://img.b2bpic.net/free-photo/young-successful-businessman-thinking-posing-beige-wall_176420-144.jpg",
"http://img.b2bpic.net/free-photo/young-successful-businessman-thinking-posing-beige-wall_176420-144.jpg?_wi=1",
imageAlt: "professional man investor portrait photo",
},
{
@@ -359,7 +359,7 @@ export default function HomePage() {
name: "Priya Sharma",
role: "Property Seller",
imageSrc:
"http://img.b2bpic.net/free-photo/portrait-young-successful-businesswoman-suit-cross-arms-chest-smile-look-confident_1258-194088.jpg",
"http://img.b2bpic.net/free-photo/portrait-young-successful-businesswoman-suit-cross-arms-chest-smile-look-confident_1258-194088.jpg?_wi=1",
imageAlt: "professional woman portrait businesswoman",
},
{
@@ -370,7 +370,7 @@ export default function HomePage() {
name: "Arun Kumar",
role: "Satisfied Client",
imageSrc:
"http://img.b2bpic.net/free-photo/front-view-smiley-man-posing_23-2150171293.jpg",
"http://img.b2bpic.net/free-photo/front-view-smiley-man-posing_23-2150171293.jpg?_wi=1",
imageAlt: "satisfied customer man portrait photo",
},
]}

View File

@@ -93,42 +93,42 @@ export default function PropertiesPage() {
id: "property-1",
name: "Luxury Flat - Mahalaxmi Nagar",
price: "₹45 Lakhs",
imageSrc: "http://img.b2bpic.net/free-photo/stylish-scandinavian-living-room-with-design-mint-sofa-furnitures-mock-up-poster-map-plants-eleg_1258-152167.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/stylish-scandinavian-living-room-with-design-mint-sofa-furnitures-mock-up-poster-map-plants-eleg_1258-152167.jpg?_wi=2",
imageAlt: "Luxury flat in Mahalaxmi Nagar, Indore",
},
{
id: "property-2",
name: "Independent House - South Indore",
price: "₹75 Lakhs",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-entrance-courtyard-lions_1139-26.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-entrance-courtyard-lions_1139-26.jpg?_wi=2",
imageAlt: "Independent house in South Indore",
},
{
id: "property-3",
name: "Residential Plot - Premium Location",
price: "₹25 Lakhs",
imageSrc: "http://img.b2bpic.net/free-photo/scene-construction-site-with-equipment_23-2151317260.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/scene-construction-site-with-equipment_23-2151317260.jpg?_wi=2",
imageAlt: "Residential plot in premium location",
},
{
id: "property-4",
name: "Investment Apartment - IT Park Area",
price: "₹35 Lakhs",
imageSrc: "http://img.b2bpic.net/free-photo/hight-rise-condominium-office-buildings_1127-3571.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/hight-rise-condominium-office-buildings_1127-3571.jpg?_wi=2",
imageAlt: "Investment apartment near IT Park",
},
{
id: "property-5",
name: "Commercial Space - Business District",
price: "₹50 Lakhs",
imageSrc: "http://img.b2bpic.net/free-photo/concrete-street_1127-2051.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/concrete-street_1127-2051.jpg?_wi=2",
imageAlt: "Commercial space in business district",
},
{
id: "property-6",
name: "Apartment Complex - New Development",
price: "₹60 Lakhs",
imageSrc: "http://img.b2bpic.net/free-photo/office-buildings-with-modern-architecture_107420-95730.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/office-buildings-with-modern-architecture_107420-95730.jpg?_wi=2",
imageAlt: "Apartment complex in new development",
},
]}
@@ -155,7 +155,7 @@ export default function PropertiesPage() {
quote: "Great experience. Best place for buying flats. The team was professional and helped me find exactly what I was looking for within my budget.",
name: "Vipin Gupta",
role: "Property Buyer",
imageSrc: "http://img.b2bpic.net/free-photo/man-with-thumb-up_1368-6368.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/man-with-thumb-up_1368-6368.jpg?_wi=2",
imageAlt: "professional headshot business man portrait",
},
{
@@ -164,7 +164,7 @@ export default function PropertiesPage() {
quote: "I had a very positive experience with their services. They made the entire process smooth and hassle-free. I would definitely recommend them to anyone looking for real estate solutions.",
name: "Yash Kasniyal",
role: "Property Investor",
imageSrc: "http://img.b2bpic.net/free-photo/happy-mature-businessman-talking-cellphone-with-cup-coffee-laptop-desk_23-2147955268.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/happy-mature-businessman-talking-cellphone-with-cup-coffee-laptop-desk_23-2147955268.jpg?_wi=2",
imageAlt: "young professional investor portrait photo",
},
{
@@ -173,7 +173,7 @@ export default function PropertiesPage() {
quote: "The entire team was professional, transparent, and always available when I needed them. They helped me find the perfect property within my budget and guided me through every step.",
name: "Sanjana Sharma",
role: "First-time Homebuyer",
imageSrc: "http://img.b2bpic.net/free-photo/young-smiling-woman-cafe-drinking-coffee-date-looking-camera_197531-22708.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-smiling-woman-cafe-drinking-coffee-date-looking-camera_197531-22708.jpg?_wi=2",
imageAlt: "professional woman businesswoman portrait",
},
{
@@ -182,7 +182,7 @@ export default function PropertiesPage() {
quote: "As a non-local investor, I relied heavily on their expertise. They provided excellent market insights and helped me identify profitable investment opportunities in Indore.",
name: "Rajesh Patel",
role: "Real Estate Investor",
imageSrc: "http://img.b2bpic.net/free-photo/young-successful-businessman-thinking-posing-beige-wall_176420-144.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-successful-businessman-thinking-posing-beige-wall_176420-144.jpg?_wi=2",
imageAlt: "professional man investor portrait photo",
},
{
@@ -191,7 +191,7 @@ export default function PropertiesPage() {
quote: "Selling my property was made easy by their professional approach. They handled all the documentation and negotiation beautifully, ensuring the best price.",
name: "Priya Sharma",
role: "Property Seller",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-successful-businesswoman-suit-cross-arms-chest-smile-look-confident_1258-194088.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-successful-businesswoman-suit-cross-arms-chest-smile-look-confident_1258-194088.jpg?_wi=2",
imageAlt: "professional woman portrait businesswoman",
},
{
@@ -200,7 +200,7 @@ export default function PropertiesPage() {
quote: "Outstanding service from start to finish. The team's dedication and attention to detail made all the difference. I'm very satisfied with the outcome.",
name: "Arun Kumar",
role: "Satisfied Client",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-smiley-man-posing_23-2150171293.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-smiley-man-posing_23-2150171293.jpg?_wi=2",
imageAlt: "satisfied customer man portrait photo",
},
]}
@@ -216,7 +216,7 @@ export default function PropertiesPage() {
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=1"
imageAlt="modern real estate office interior indore"
mediaAnimation="slide-up"
mediaPosition="right"

View File

@@ -108,7 +108,7 @@ export default function ServicesPage() {
content: "Navigate property finance with ease. We provide guidance on home loan options, financial planning, and connect you with reliable lenders to secure the best loan terms.",
},
]}
imageSrc="http://img.b2bpic.net/free-photo/senior-businessman-with-laptop-sitting-together-with-colleague-office_23-2147923364.jpg"
imageSrc="http://img.b2bpic.net/free-photo/senior-businessman-with-laptop-sitting-together-with-colleague-office_23-2147923364.jpg?_wi=2"
imageAlt="real estate consultant meeting client"
mediaAnimation="slide-up"
useInvertedBackground={true}