Merge version_2 into main #2
@@ -4,24 +4,22 @@ import Link from "next/link";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
|
||||
import MediaAbout from "@/components/sections/about/MediaAbout";
|
||||
import TeamCardOne from "@/components/sections/team/TeamCardOne";
|
||||
import MetricCardThree from "@/components/sections/metrics/MetricCardThree";
|
||||
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
||||
import FooterSimple from "@/components/sections/footer/FooterSimple";
|
||||
import { Building2, Users, Phone } from "lucide-react";
|
||||
import { Building2, TrendingUp, Phone, Home, DollarSign, Users, Award } from "lucide-react";
|
||||
|
||||
export default function AboutPage() {
|
||||
const navItems = [
|
||||
{ name: "Home", id: "home" },
|
||||
{ name: "Properties", id: "properties" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Team", id: "team" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Properties", id: "/properties" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Team", id: "/team" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
];
|
||||
|
||||
const navButton = {
|
||||
text: "Schedule Tour",
|
||||
href: "/contact",
|
||||
};
|
||||
text: "Schedule Tour", href: "/contact"};
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
@@ -40,75 +38,50 @@ export default function AboutPage() {
|
||||
<NavbarStyleCentered
|
||||
navItems={navItems}
|
||||
button={navButton}
|
||||
brandName="Luxe Properties"
|
||||
brandName="DreamIntoRealty"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<MediaAbout
|
||||
title="Premier Real Estate Excellence Since 1999"
|
||||
description="With over 25 years of expertise in luxury property markets, we've established ourselves as the leading agency for discerning clients seeking exceptional properties in prime locations. Our commitment to personalized service, market expertise, and client satisfaction sets us apart."
|
||||
tag="About Luxe Properties"
|
||||
title="About DreamIntoRealty: Mukul & Kunal's Vision"
|
||||
description="DreamIntoRealty was founded by Mukul and Kunal with a mission to transform the real estate landscape in Greater Noida and Jewar. With 15+ years of combined expertise in commercial, industrial, and residential property markets, we specialize in connecting investors with exceptional opportunities. Our commitment to transparency, personalized service, and market expertise has made us the trusted choice for buyers, sellers, and developers across the region."
|
||||
tag="Our Story"
|
||||
tagIcon={Building2}
|
||||
tagAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/serious-confident-businesswomen-walking-man-suit-office-interior-full-length-back-view-business-meeting-concept_74855-11969.jpg?_wi=2"
|
||||
imageAlt="Luxe Properties team office"
|
||||
buttons={[{ text: "View Our Services", href: "#" }]}
|
||||
imageAlt="DreamIntoRealty founders and team"
|
||||
buttons={[{ text: "Schedule Consultation", href: "/contact" }]}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="team" data-section="team">
|
||||
<TeamCardOne
|
||||
title="Meet Our Expert Team"
|
||||
description="Seasoned professionals dedicated to delivering exceptional service in luxury real estate"
|
||||
tag="Our Team"
|
||||
tagIcon={Users}
|
||||
<div id="metrics" data-section="metrics">
|
||||
<MetricCardThree
|
||||
title="Our Track Record"
|
||||
description="Proven success and impact in real estate transactions across Greater Noida and Jewar"
|
||||
tag="Market Leadership"
|
||||
tagIcon={TrendingUp}
|
||||
tagAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="four-items-2x2-equal-grid"
|
||||
animationType="slide-up"
|
||||
useInvertedBackground={false}
|
||||
members={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Victoria Sterling",
|
||||
role: "Senior Agent",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/confident-middle-aged-businesswoman-posing-near-office-building_1262-21023.jpg",
|
||||
imageAlt: "Victoria Sterling",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Michael Chen",
|
||||
role: "Investment Specialist",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/handsome-gay-official-suit-looking-camera-front-view-bearded-caucasian-man-smiling-camera-getting-dressed-wedding-ceremony-with-lover-lgbt-love-marriage-concept_74855-22937.jpg",
|
||||
imageAlt: "Michael Chen",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Alexandra Laurent",
|
||||
role: "Luxury Properties Director",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/friendly-successful-business-woman-posing-with-arms-crossed_74855-2813.jpg",
|
||||
imageAlt: "Alexandra Laurent",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "James Richardson",
|
||||
role: "Client Relations Manager",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/workers-taking-break_1098-1262.jpg",
|
||||
imageAlt: "James Richardson",
|
||||
},
|
||||
metrics={[
|
||||
{ id: "1", icon: Home, title: "Properties Transacted", value: "180+" },
|
||||
{ id: "2", icon: DollarSign, title: "Transaction Value", value: "₹450 Cr" },
|
||||
{ id: "3", icon: Users, title: "Satisfied Clients", value: "350+" },
|
||||
{ id: "4", icon: Award, title: "Industry Experience", value: "15+ Yrs" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCTA
|
||||
tag="Get In Touch"
|
||||
tag="Let's Connect"
|
||||
tagIcon={Phone}
|
||||
tagAnimation="slide-up"
|
||||
title="Learn More About Our Services"
|
||||
description="Have questions about our luxury real estate services or want to discuss your property needs? Our expert team is ready to assist you with personalized guidance."
|
||||
description="Whether you're looking to buy, sell, or invest in commercial, industrial, or residential properties in Greater Noida and Jewar, Mukul and Kunal are ready to provide expert guidance tailored to your needs."
|
||||
background={{ variant: "plain" }}
|
||||
buttons={[
|
||||
{ text: "Schedule Consultation", href: "/contact" },
|
||||
@@ -123,46 +96,42 @@ export default function AboutPage() {
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "/about" },
|
||||
{ label: "Our Team", href: "/team" },
|
||||
{ label: "Services", href: "#services" },
|
||||
{ label: "Market Insights", href: "#" },
|
||||
{ label: "Services", href: "/contact" },
|
||||
{ label: "Market Insights", href: "/properties" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Properties",
|
||||
items: [
|
||||
{ label: "Featured Listings", href: "/properties" },
|
||||
{ label: "Investment Properties", href: "#" },
|
||||
{ label: "Commercial Real Estate", href: "#" },
|
||||
{ label: "International Properties", href: "#" },
|
||||
title: "Properties", items: [
|
||||
{ label: "Commercial", href: "/properties" },
|
||||
{ label: "Industrial", href: "/properties" },
|
||||
{ label: "Residential", href: "/properties" },
|
||||
{ label: "Greater Noida", href: "/properties" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Resources",
|
||||
items: [
|
||||
{ label: "Buyer's Guide", href: "#" },
|
||||
{ label: "Seller's Guide", href: "#" },
|
||||
{ label: "Market Analysis", href: "#" },
|
||||
{ label: "Blog", href: "#" },
|
||||
title: "Locations", items: [
|
||||
{ label: "Greater Noida", href: "/properties" },
|
||||
{ label: "Jewar", href: "/properties" },
|
||||
{ label: "Investment Zones", href: "/properties" },
|
||||
{ label: "Development Areas", href: "/properties" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact",
|
||||
items: [
|
||||
title: "Contact", items: [
|
||||
{ label: "Schedule Tour", href: "/contact" },
|
||||
{ label: "Email Us", href: "mailto:info@luxeproperties.com" },
|
||||
{ label: "Call: +1 (555) 123-4567", href: "tel:+15551234567" },
|
||||
{ label: "Email Us", href: "mailto:info@dreamintorealty.com" },
|
||||
{ label: "Call: +91 (98765) 43210", href: "tel:+919876543210" },
|
||||
{ label: "Contact Form", href: "/contact" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
bottomLeftText="© 2025 Luxe Properties. All rights reserved."
|
||||
bottomRightText="Made with Webild"
|
||||
bottomLeftText="© 2025 DreamIntoRealty. All rights reserved."
|
||||
bottomRightText="Mukul & Kunal - Real Estate Experts"
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,24 +3,21 @@
|
||||
import Link from "next/link";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
|
||||
import FeatureCardThree from "@/components/sections/feature/featureCardThree/FeatureCardThree";
|
||||
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
||||
import FooterSimple from "@/components/sections/footer/FooterSimple";
|
||||
import { Sparkles, Phone } from "lucide-react";
|
||||
import { Phone, Mail, MapPin } from "lucide-react";
|
||||
|
||||
export default function ContactPage() {
|
||||
const navItems = [
|
||||
{ name: "Home", id: "home" },
|
||||
{ name: "Properties", id: "properties" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Team", id: "team" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Properties", id: "/properties" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Team", id: "/team" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
];
|
||||
|
||||
const navButton = {
|
||||
text: "Schedule Tour",
|
||||
href: "/contact",
|
||||
};
|
||||
text: "Schedule Tour", href: "/contact"};
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
@@ -39,54 +36,17 @@ export default function ContactPage() {
|
||||
<NavbarStyleCentered
|
||||
navItems={navItems}
|
||||
button={navButton}
|
||||
brandName="Luxe Properties"
|
||||
brandName="DreamIntoRealty"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="services" data-section="services">
|
||||
<FeatureCardThree
|
||||
title="Our Comprehensive Services"
|
||||
description="Full-spectrum luxury real estate solutions tailored to your unique needs"
|
||||
tag="Services"
|
||||
tagIcon={Sparkles}
|
||||
tagAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
animationType="slide-up"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
id: "01",
|
||||
title: "Property Sales & Acquisition",
|
||||
description: "Expert guidance through the entire buying and selling process for luxury properties",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/business-leaders-consulting-expert_74855-2095.jpg",
|
||||
imageAlt: "Property sales consultation",
|
||||
},
|
||||
{
|
||||
id: "02",
|
||||
title: "Investment Advisory",
|
||||
description: "Strategic real estate investment consultation to maximize your portfolio returns",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/unrecognizable-businessman-pointing-printed-chart-showing-graph-colleagues-professional-content-partners-making-notes-statistics-cooperation-communication-partnership-concept_74855-14267.jpg",
|
||||
imageAlt: "Investment advisory",
|
||||
},
|
||||
{
|
||||
id: "03",
|
||||
title: "Market Analysis & Valuation",
|
||||
description: "Comprehensive property valuation and market trends analysis for informed decisions",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/house-model-compass-plan-background-real-estate-concept_1423-179.jpg",
|
||||
imageAlt: "Market analysis",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<div id="contact-info" data-section="contact-info">
|
||||
<ContactCTA
|
||||
tag="Ready to Get Started?"
|
||||
tag="Get In Touch"
|
||||
tagIcon={Phone}
|
||||
tagAnimation="slide-up"
|
||||
title="Schedule Your Private Consultation"
|
||||
description="Whether you're buying, selling, or investing in luxury properties, our expert team is ready to guide you through every step of the process. Schedule a consultation with one of our specialists today."
|
||||
title="Contact DreamIntoRealty"
|
||||
description="Mukul and Kunal are ready to help you with your real estate needs in Greater Noida and Jewar. Reach out today to discuss your commercial, industrial, or residential property requirements."
|
||||
background={{ variant: "plain" }}
|
||||
buttons={[
|
||||
{ text: "Schedule Consultation", href: "#" },
|
||||
@@ -97,50 +57,74 @@ export default function ContactPage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact-details" data-section="contact-details" className="py-20">
|
||||
<div className="max-w-6xl mx-auto px-4">
|
||||
<div className="grid grid-cols-1 md:grid-cols-3 gap-8">
|
||||
<div className="text-center">
|
||||
<div className="flex justify-center mb-4">
|
||||
<Phone className="w-8 h-8" style={{ color: "var(--primary-cta)" }} />
|
||||
</div>
|
||||
<h3 className="text-xl font-semibold mb-2">Phone</h3>
|
||||
<p className="text-sm" style={{ color: "var(--foreground)" }}>+91 (98765) 43210</p>
|
||||
</div>
|
||||
<div className="text-center">
|
||||
<div className="flex justify-center mb-4">
|
||||
<Mail className="w-8 h-8" style={{ color: "var(--primary-cta)" }} />
|
||||
</div>
|
||||
<h3 className="text-xl font-semibold mb-2">Email</h3>
|
||||
<p className="text-sm" style={{ color: "var(--foreground)" }}>info@dreamintorealty.com</p>
|
||||
</div>
|
||||
<div className="text-center">
|
||||
<div className="flex justify-center mb-4">
|
||||
<MapPin className="w-8 h-8" style={{ color: "var(--primary-cta)" }} />
|
||||
</div>
|
||||
<h3 className="text-xl font-semibold mb-2">Location</h3>
|
||||
<p className="text-sm" style={{ color: "var(--foreground)" }}>Greater Noida & Jewar, UP</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "/about" },
|
||||
{ label: "Our Team", href: "/team" },
|
||||
{ label: "Services", href: "#services" },
|
||||
{ label: "Market Insights", href: "#" },
|
||||
{ label: "Services", href: "/contact" },
|
||||
{ label: "Market Insights", href: "/properties" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Properties",
|
||||
items: [
|
||||
{ label: "Featured Listings", href: "/properties" },
|
||||
{ label: "Investment Properties", href: "#" },
|
||||
{ label: "Commercial Real Estate", href: "#" },
|
||||
{ label: "International Properties", href: "#" },
|
||||
title: "Properties", items: [
|
||||
{ label: "Commercial", href: "/properties" },
|
||||
{ label: "Industrial", href: "/properties" },
|
||||
{ label: "Residential", href: "/properties" },
|
||||
{ label: "Greater Noida", href: "/properties" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Resources",
|
||||
items: [
|
||||
{ label: "Buyer's Guide", href: "#" },
|
||||
{ label: "Seller's Guide", href: "#" },
|
||||
{ label: "Market Analysis", href: "#" },
|
||||
{ label: "Blog", href: "#" },
|
||||
title: "Locations", items: [
|
||||
{ label: "Greater Noida", href: "/properties" },
|
||||
{ label: "Jewar", href: "/properties" },
|
||||
{ label: "Investment Zones", href: "/properties" },
|
||||
{ label: "Development Areas", href: "/properties" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact",
|
||||
items: [
|
||||
title: "Contact", items: [
|
||||
{ label: "Schedule Tour", href: "/contact" },
|
||||
{ label: "Email Us", href: "mailto:info@luxeproperties.com" },
|
||||
{ label: "Call: +1 (555) 123-4567", href: "tel:+15551234567" },
|
||||
{ label: "Email Us", href: "mailto:info@dreamintorealty.com" },
|
||||
{ label: "Call: +91 (98765) 43210", href: "tel:+919876543210" },
|
||||
{ label: "Contact Form", href: "/contact" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
bottomLeftText="© 2025 Luxe Properties. All rights reserved."
|
||||
bottomRightText="Made with Webild"
|
||||
bottomLeftText="© 2025 DreamIntoRealty. All rights reserved."
|
||||
bottomRightText="Mukul & Kunal - Real Estate Experts"
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6,40 +6,25 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const manrope = Manrope({
|
||||
variable: "--font-manrope",
|
||||
subsets: ["latin"],
|
||||
variable: "--font-manrope", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const dmSans = DM_Sans({
|
||||
variable: "--font-dm-sans",
|
||||
subsets: ["latin"],
|
||||
variable: "--font-dm-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Luxury Real Estate | Exclusive Properties & Premium Service",
|
||||
description: "Discover exceptional luxury properties with Luxe Properties. Expert real estate agents specializing in premium residential and commercial listings in prime locations.",
|
||||
keywords: "luxury real estate, high-end properties, exclusive listings, premium homes, real estate agent",
|
||||
metadataBase: new URL("https://luxeproperties.com"),
|
||||
title: "DreamIntoRealty | Commercial, Industrial & Residential Real Estate in Greater Noida & Jewar", description: "DreamIntoRealty specializes in commercial, industrial, and residential real estate solutions in Greater Noida and Jewar. Expert guidance from Mukul and Kunal for premium property investments.", keywords: "real estate Greater Noida, commercial property, industrial real estate, residential property, Jewar real estate, property investment, land sale", metadataBase: new URL("https://dreamintorealty.com"),
|
||||
alternates: {
|
||||
canonical: "https://luxeproperties.com",
|
||||
},
|
||||
canonical: "https://dreamintorealty.com"},
|
||||
openGraph: {
|
||||
title: "Luxury Real Estate | Exclusive Properties",
|
||||
description: "Discover exceptional luxury properties with expert real estate services",
|
||||
type: "website",
|
||||
siteName: "Luxe Properties",
|
||||
images: [
|
||||
title: "DreamIntoRealty | Real Estate Solutions in Greater Noida & Jewar", description: "Commercial, industrial, and residential real estate expertise in Greater Noida and Jewar. Premium property investment opportunities.", type: "website", siteName: "DreamIntoRealty", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/attractive-woman-reading-magazine-near-panoramic-window_7502-9287.jpg",
|
||||
alt: "Luxury real estate properties",
|
||||
},
|
||||
url: "http://img.b2bpic.net/free-photo/attractive-woman-reading-magazine-near-panoramic-window_7502-9287.jpg", alt: "Real estate properties in Greater Noida and Jewar"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Luxury Real Estate | Exclusive Properties",
|
||||
description: "Discover exceptional luxury properties with expert real estate services",
|
||||
images: ["http://img.b2bpic.net/free-photo/attractive-woman-reading-magazine-near-panoramic-window_7502-9287.jpg"],
|
||||
card: "summary_large_image", title: "DreamIntoRealty | Real Estate in Greater Noida & Jewar", description: "Commercial, industrial, and residential real estate solutions with expert guidance.", images: ["http://img.b2bpic.net/free-photo/attractive-woman-reading-magazine-near-panoramic-window_7502-9287.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
@@ -1429,4 +1414,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
198
src/app/page.tsx
198
src/app/page.tsx
@@ -14,17 +14,15 @@ import { Crown, Star, Building2, TrendingUp, Phone, Home, DollarSign, Users, Awa
|
||||
|
||||
export default function HomePage() {
|
||||
const navItems = [
|
||||
{ name: "Home", id: "home" },
|
||||
{ name: "Properties", id: "properties" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Team", id: "team" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Properties", id: "/properties" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Team", id: "/team" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
];
|
||||
|
||||
const navButton = {
|
||||
text: "Schedule Tour",
|
||||
href: "/contact",
|
||||
};
|
||||
text: "Schedule Tour", href: "/contact"};
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
@@ -43,39 +41,29 @@ export default function HomePage() {
|
||||
<NavbarStyleCentered
|
||||
navItems={navItems}
|
||||
button={navButton}
|
||||
brandName="Luxe Properties"
|
||||
brandName="DreamIntoRealty"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardGallery
|
||||
title="Discover Exceptional Luxury Properties"
|
||||
description="Curated selection of premium residential and commercial real estate in the most sought-after locations"
|
||||
tag="Luxury Real Estate"
|
||||
title="Transform Your Real Estate Dreams Into Reality"
|
||||
description="Expert commercial, industrial, and residential property solutions in Greater Noida and Jewar. Professional guidance from Mukul and Kunal for your investment success."
|
||||
tag="Premium Real Estate Solutions"
|
||||
tagIcon={Crown}
|
||||
tagAnimation="slide-up"
|
||||
background={{ variant: "plain" }}
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/attractive-woman-reading-magazine-near-panoramic-window_7502-9287.jpg?_wi=1",
|
||||
imageAlt: "Modern luxury penthouse",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/attractive-woman-reading-magazine-near-panoramic-window_7502-9287.jpg?_wi=1", imageAlt: "Modern commercial property in Greater Noida"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/design-house-modern-villa-with-open-plan-living-private-bedroom-wing-large-terrace-with-privacy_1258-169750.jpg",
|
||||
imageAlt: "Contemporary villa with pool",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/design-house-modern-villa-with-open-plan-living-private-bedroom-wing-large-terrace-with-privacy_1258-169750.jpg", imageAlt: "Residential development in Jewar"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/luxury-poolside-experience-where-guests-bask-opulence-cabanas_1268-31113.jpg?_wi=1",
|
||||
imageAlt: "Waterfront estate property",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/luxury-poolside-experience-where-guests-bask-opulence-cabanas_1268-31113.jpg?_wi=1", imageAlt: "Industrial complex opportunity"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-young-woman-stairs_23-2149204468.jpg",
|
||||
imageAlt: "Elegant mansion exterior",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-young-woman-stairs_23-2149204468.jpg", imageAlt: "Premium office space"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-couple-resting-home-with-good-mood_651396-28.jpg",
|
||||
imageAlt: "Luxury apartment interior",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-couple-resting-home-with-good-mood_651396-28.jpg", imageAlt: "Comfortable residential property"},
|
||||
]}
|
||||
mediaAnimation="slide-up"
|
||||
buttons={[
|
||||
@@ -88,8 +76,8 @@ export default function HomePage() {
|
||||
|
||||
<div id="properties" data-section="properties">
|
||||
<ProductCardFour
|
||||
title="Featured Luxury Properties"
|
||||
description="Explore our most exclusive listings with premium finishes and prime locations"
|
||||
title="Featured Properties"
|
||||
description="Explore our exclusive portfolio of commercial, industrial, and residential properties across Greater Noida and Jewar"
|
||||
tag="Premium Selection"
|
||||
tagIcon={Star}
|
||||
tagAnimation="slide-up"
|
||||
@@ -99,29 +87,11 @@ export default function HomePage() {
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Contemporary Waterfront Penthouse",
|
||||
price: "$8,500,000",
|
||||
variant: "5 Bedrooms 2 Story Private Dock",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-spacious-room-with-large-panoramic-window_7502-7289.jpg?_wi=1",
|
||||
imageAlt: "Waterfront penthouse",
|
||||
},
|
||||
id: "1", name: "Commercial Plaza - Greater Noida", price: "₹5.2 Cr", variant: "12000 Sq.ft Prime Location Retail", imageSrc: "http://img.b2bpic.net/free-photo/modern-spacious-room-with-large-panoramic-window_7502-7289.jpg?_wi=1", imageAlt: "Commercial plaza in Greater Noida"},
|
||||
{
|
||||
id: "2",
|
||||
name: "Architectural Masterpiece Estate",
|
||||
price: "$12,200,000",
|
||||
variant: "7 Bedrooms Smart Home Cinema",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-villa-with-multiple-lights-sun-loungers-asprovalta-greece_1268-16093.jpg?_wi=1",
|
||||
imageAlt: "Luxury estate",
|
||||
},
|
||||
id: "2", name: "Industrial Estate - Jewar", price: "₹8.5 Cr", variant: "25000 Sq.ft Manufacturing Ready Power", imageSrc: "http://img.b2bpic.net/free-photo/modern-villa-with-multiple-lights-sun-loungers-asprovalta-greece_1268-16093.jpg?_wi=1", imageAlt: "Industrial property in Jewar"},
|
||||
{
|
||||
id: "3",
|
||||
name: "Modern Urban Luxury Residence",
|
||||
price: "$6,750,000",
|
||||
variant: "4 Bedrooms City Views Rooftop Terrace",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/attractive-woman-reading-magazine-near-panoramic-window_7502-9287.jpg?_wi=2",
|
||||
imageAlt: "Modern urban residence",
|
||||
},
|
||||
id: "3", name: "Residential Complex - Greater Noida", price: "₹3.8 Cr", variant: "2BHK to 4BHK Modern Amenities", imageSrc: "http://img.b2bpic.net/free-photo/attractive-woman-reading-magazine-near-panoramic-window_7502-9287.jpg?_wi=2", imageAlt: "Residential complex in Greater Noida"},
|
||||
]}
|
||||
buttons={[{ text: "View All Properties", href: "/properties" }]}
|
||||
buttonAnimation="slide-up"
|
||||
@@ -130,13 +100,13 @@ export default function HomePage() {
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<MediaAbout
|
||||
title="Premier Real Estate Excellence"
|
||||
description="With over 25 years of expertise in luxury property markets, we've established ourselves as the leading agency for discerning clients seeking exceptional properties in prime locations."
|
||||
tag="About Luxe Properties"
|
||||
title="DreamIntoRealty: Your Trusted Real Estate Partner"
|
||||
description="Founded by Mukul and Kunal, DreamIntoRealty specializes in commercial, industrial, and residential real estate across Greater Noida and Jewar. With deep market expertise and a commitment to transparent, client-focused service, we help investors and businesses turn their real estate dreams into profitable reality."
|
||||
tag="About DreamIntoRealty"
|
||||
tagIcon={Building2}
|
||||
tagAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/serious-confident-businesswomen-walking-man-suit-office-interior-full-length-back-view-business-meeting-concept_74855-11969.jpg?_wi=1"
|
||||
imageAlt="Luxe Properties team office"
|
||||
imageAlt="DreamIntoRealty founders"
|
||||
buttons={[{ text: "Learn More", href: "/about" }]}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
@@ -144,8 +114,8 @@ export default function HomePage() {
|
||||
|
||||
<div id="metrics" data-section="metrics">
|
||||
<MetricCardThree
|
||||
title="By The Numbers"
|
||||
description="Our track record of success in luxury real estate markets"
|
||||
title="Our Market Impact"
|
||||
description="Proven success in real estate transactions across Greater Noida and Jewar"
|
||||
tag="Market Performance"
|
||||
tagIcon={TrendingUp}
|
||||
tagAnimation="slide-up"
|
||||
@@ -153,10 +123,10 @@ export default function HomePage() {
|
||||
animationType="slide-up"
|
||||
useInvertedBackground={false}
|
||||
metrics={[
|
||||
{ id: "1", icon: Home, title: "Properties Sold", value: "250+" },
|
||||
{ id: "2", icon: DollarSign, title: "Total Sales Volume", value: "$2.1B" },
|
||||
{ id: "3", icon: Users, title: "Satisfied Clients", value: "500+" },
|
||||
{ id: "4", icon: Award, title: "Years of Experience", value: "25+" },
|
||||
{ id: "1", icon: Home, title: "Properties Transacted", value: "180+" },
|
||||
{ id: "2", icon: DollarSign, title: "Transaction Volume", value: "₹450 Cr" },
|
||||
{ id: "3", icon: Users, title: "Satisfied Clients", value: "350+" },
|
||||
{ id: "4", icon: Award, title: "Market Expertise", value: "15+ Yrs" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -164,7 +134,7 @@ export default function HomePage() {
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardFive
|
||||
title="What Our Clients Say"
|
||||
description="Testimonials from satisfied buyers and sellers who've experienced our exceptional service"
|
||||
description="Success stories from satisfied buyers, sellers, and investors who partnered with DreamIntoRealty"
|
||||
tag="Client Success"
|
||||
tagIcon={Star}
|
||||
tagAnimation="slide-up"
|
||||
@@ -172,65 +142,17 @@ export default function HomePage() {
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Robert & Elizabeth Mitchell, Investors",
|
||||
date: "Date: November 2024",
|
||||
title: "Exceeded All Our Expectations",
|
||||
quote: "The team at Luxe Properties found us the perfect penthouse in record time. Their market expertise and attention to detail were absolutely exceptional. We couldn't have asked for better service.",
|
||||
tag: "Investor",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-real-estate-agent-giving-keys-couple-who-is-buying-their-new-home_637285-6093.jpg",
|
||||
},
|
||||
id: "1", name: "Rajesh Sharma, Business Owner", date: "Date: November 2024", title: "Perfect Commercial Space Found", quote: "Mukul and Kunal helped us find the ideal commercial space in Greater Noida. Their market knowledge and negotiation skills saved us significant time and money. Highly recommended!", tag: "Commercial Buyer", avatarSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", imageSrc: "http://img.b2bpic.net/free-photo/happy-real-estate-agent-giving-keys-couple-who-is-buying-their-new-home_637285-6093.jpg"},
|
||||
{
|
||||
id: "2",
|
||||
name: "Sarah Chen, Real Estate Developer",
|
||||
date: "Date: October 2024",
|
||||
title: "Professional and Trustworthy",
|
||||
quote: "Working with Luxe Properties for multiple investment properties has been outstanding. They provide invaluable market insights and handle complex transactions with ease and professionalism.",
|
||||
tag: "Developer",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/positive-confident-businesswoman-wearing-formal-suit-standing-with-arms-folded_74855-10328.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-businesswoman-her-employees-background_1262-20305.jpg",
|
||||
},
|
||||
id: "2", name: "Priya Gupta, Industrial Investor", date: "Date: October 2024", title: "Excellent Industrial Properties", quote: "DreamIntoRealty's industrial portfolio in Jewar is outstanding. The team provided comprehensive market analysis and helped us make a profitable investment decision with confidence.", tag: "Industrial Investor", avatarSrc: "http://img.b2bpic.net/free-photo/positive-confident-businesswoman-wearing-formal-suit-standing-with-arms-folded_74855-10328.jpg", imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-businesswoman-her-employees-background_1262-20305.jpg"},
|
||||
{
|
||||
id: "3",
|
||||
name: "James & Catherine Thompson, Relocating",
|
||||
date: "Date: September 2024",
|
||||
title: "Made Our Move Seamless",
|
||||
quote: "Moving to a new city was stressful, but Luxe Properties made finding our dream home effortless. Their international relocation services were comprehensive and their team was always available.",
|
||||
tag: "Relocating Client",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/workers-taking-break_1098-1262.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-family-with-kids-near-carton-boxes-standing-living-room_74855-9991.jpg",
|
||||
},
|
||||
id: "3", name: "Amit & Deepa Verma, Home Buyers", date: "Date: September 2024", title: "Found Our Dream Home Effortlessly", quote: "The residential properties shown to us in Greater Noida exceeded our expectations. Mukul and Kunal's professional approach made the entire buying process smooth and enjoyable.", tag: "Residential Buyer", avatarSrc: "http://img.b2bpic.net/free-photo/workers-taking-break_1098-1262.jpg", imageSrc: "http://img.b2bpic.net/free-photo/happy-family-with-kids-near-carton-boxes-standing-living-room_74855-9991.jpg"},
|
||||
{
|
||||
id: "4",
|
||||
name: "Victoria Bergström, Executive",
|
||||
date: "Date: August 2024",
|
||||
title: "Truly Luxury Service",
|
||||
quote: "From initial consultation to closing, Luxe Properties delivered a premium experience. They understood my specific requirements and found properties that exceeded my expectations.",
|
||||
tag: "Executive",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/confident-young-businesswoman-with-folded-arms_1262-1775.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/successful-businesswoman-ready-challenges_1163-4336.jpg",
|
||||
},
|
||||
id: "4", name: "Vikram Singh, Property Developer", date: "Date: August 2024", title: "Strategic Land Investment Success", quote: "As a developer, I appreciate DreamIntoRealty's deep understanding of market trends and land potential. Their insights guided my investment strategy perfectly.", tag: "Developer", avatarSrc: "http://img.b2bpic.net/free-photo/confident-young-businesswoman-with-folded-arms_1262-1775.jpg", imageSrc: "http://img.b2bpic.net/free-photo/successful-businesswoman-ready-challenges_1163-4336.jpg"},
|
||||
{
|
||||
id: "5",
|
||||
name: "David Moretti, Entrepreneur",
|
||||
date: "Date: July 2024",
|
||||
title: "Exceptional Market Knowledge",
|
||||
quote: "The agents demonstrated incredible knowledge of luxury market trends and helped me make a smart investment decision. Their professionalism is unmatched in the industry.",
|
||||
tag: "Entrepreneur",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/blond-businessman-happy-expression_1194-3797.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/blond-businessman-happy-expression_1194-3797.jpg",
|
||||
},
|
||||
id: "5", name: "Anita Desai, NRI Investor", date: "Date: July 2024", title: "Seamless NRI Investment Experience", quote: "Being an NRI, I was concerned about navigating property investment. DreamIntoRealty's transparent process and regular updates made me feel completely confident in my investment.", tag: "NRI Investor", avatarSrc: "http://img.b2bpic.net/free-photo/blond-businessman-happy-expression_1194-3797.jpg", imageSrc: "http://img.b2bpic.net/free-photo/blond-businessman-happy-expression_1194-3797.jpg"},
|
||||
{
|
||||
id: "6",
|
||||
name: "Patricia & Henry Walsh, Downsizers",
|
||||
date: "Date: June 2024",
|
||||
title: "Smooth and Stress-Free",
|
||||
quote: "After selling our family estate, we needed a new property. Luxe Properties handled everything beautifully. Their concierge service made the entire process enjoyable.",
|
||||
tag: "Downsizers",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/happy-elderly-couple-hugging-bench_1398-4307.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-male-female-colleagues-different-ages-sitting-table-co-working-using-tablet-together-writing-notes-looking-camera-smiling_74855-10003.jpg",
|
||||
},
|
||||
id: "6", name: "Suresh & Meera Patel, Property Sellers", date: "Date: June 2024", title: "Highest Price Achieved", quote: "We sold our property through DreamIntoRealty and achieved the best price in the market. Kunal's marketing strategy was exceptional and brought qualified buyers quickly.", tag: "Property Seller", avatarSrc: "http://img.b2bpic.net/free-photo/happy-elderly-couple-hugging-bench_1398-4307.jpg", imageSrc: "http://img.b2bpic.net/free-photo/happy-male-female-colleagues-different-ages-sitting-table-co-working-using-tablet-together-writing-notes-looking-camera-smiling_74855-10003.jpg"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -240,8 +162,8 @@ export default function HomePage() {
|
||||
tag="Get In Touch"
|
||||
tagIcon={Phone}
|
||||
tagAnimation="slide-up"
|
||||
title="Ready to Find Your Perfect Property?"
|
||||
description="Schedule a private consultation with our luxury real estate specialists. Whether you're buying, selling, or investing, we're here to guide you through every step."
|
||||
title="Ready to Invest in Your Future?"
|
||||
description="Schedule a consultation with Mukul and Kunal. Whether you're looking for commercial space, industrial property, or residential solutions, we're here to guide you through every step of your real estate journey."
|
||||
background={{ variant: "plain" }}
|
||||
buttons={[
|
||||
{ text: "Schedule Consultation", href: "/contact" },
|
||||
@@ -256,46 +178,42 @@ export default function HomePage() {
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "/about" },
|
||||
{ label: "Our Team", href: "/team" },
|
||||
{ label: "Services", href: "#services" },
|
||||
{ label: "Market Insights", href: "#" },
|
||||
{ label: "Services", href: "/contact" },
|
||||
{ label: "Market Insights", href: "/properties" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Properties",
|
||||
items: [
|
||||
{ label: "Featured Listings", href: "/properties" },
|
||||
{ label: "Investment Properties", href: "#" },
|
||||
{ label: "Commercial Real Estate", href: "#" },
|
||||
{ label: "International Properties", href: "#" },
|
||||
title: "Properties", items: [
|
||||
{ label: "Commercial", href: "/properties" },
|
||||
{ label: "Industrial", href: "/properties" },
|
||||
{ label: "Residential", href: "/properties" },
|
||||
{ label: "Greater Noida", href: "/properties" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Resources",
|
||||
items: [
|
||||
{ label: "Buyer's Guide", href: "#" },
|
||||
{ label: "Seller's Guide", href: "#" },
|
||||
{ label: "Market Analysis", href: "#" },
|
||||
{ label: "Blog", href: "#" },
|
||||
title: "Locations", items: [
|
||||
{ label: "Greater Noida", href: "/properties" },
|
||||
{ label: "Jewar", href: "/properties" },
|
||||
{ label: "Investment Zones", href: "/properties" },
|
||||
{ label: "Development Areas", href: "/properties" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact",
|
||||
items: [
|
||||
title: "Contact", items: [
|
||||
{ label: "Schedule Tour", href: "/contact" },
|
||||
{ label: "Email Us", href: "mailto:info@luxeproperties.com" },
|
||||
{ label: "Call: +1 (555) 123-4567", href: "tel:+15551234567" },
|
||||
{ label: "Email Us", href: "mailto:info@dreamintorealty.com" },
|
||||
{ label: "Call: +91 (98765) 43210", href: "tel:+919876543210" },
|
||||
{ label: "Contact Form", href: "/contact" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
bottomLeftText="© 2025 Luxe Properties. All rights reserved."
|
||||
bottomRightText="Made with Webild"
|
||||
bottomLeftText="© 2025 DreamIntoRealty. All rights reserved."
|
||||
bottomRightText="Mukul & Kunal - Real Estate Experts"
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,25 +3,22 @@
|
||||
import Link from "next/link";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
|
||||
import FeatureCardThree from "@/components/sections/feature/featureCardThree/FeatureCardThree";
|
||||
import ProductCardFour from "@/components/sections/product/ProductCardFour";
|
||||
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
||||
import FooterSimple from "@/components/sections/footer/FooterSimple";
|
||||
import { Star, Sparkles, Phone } from "lucide-react";
|
||||
import { Star, Phone } from "lucide-react";
|
||||
|
||||
export default function PropertiesPage() {
|
||||
const navItems = [
|
||||
{ name: "Home", id: "home" },
|
||||
{ name: "Properties", id: "properties" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Team", id: "team" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Properties", id: "/properties" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Team", id: "/team" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
];
|
||||
|
||||
const navButton = {
|
||||
text: "Schedule Tour",
|
||||
href: "/contact",
|
||||
};
|
||||
text: "Schedule Tour", href: "/contact"};
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
@@ -40,15 +37,15 @@ export default function PropertiesPage() {
|
||||
<NavbarStyleCentered
|
||||
navItems={navItems}
|
||||
button={navButton}
|
||||
brandName="Luxe Properties"
|
||||
brandName="DreamIntoRealty"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="properties-featured" data-section="properties-featured">
|
||||
<ProductCardFour
|
||||
title="Featured Luxury Properties"
|
||||
description="Explore our most exclusive listings with premium finishes and prime locations"
|
||||
tag="Premium Selection"
|
||||
title="Our Property Portfolio"
|
||||
description="Comprehensive selection of commercial, industrial, and residential properties across Greater Noida and Jewar"
|
||||
tag="Available Properties"
|
||||
tagIcon={Star}
|
||||
tagAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
@@ -57,79 +54,30 @@ export default function PropertiesPage() {
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Contemporary Waterfront Penthouse",
|
||||
price: "$8,500,000",
|
||||
variant: "5 Bedrooms 2 Story Private Dock",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-spacious-room-with-large-panoramic-window_7502-7289.jpg?_wi=2",
|
||||
imageAlt: "Waterfront penthouse",
|
||||
},
|
||||
id: "1", name: "Commercial Plaza - Greater Noida", price: "₹5.2 Cr", variant: "12000 Sq.ft Prime Location Retail", imageSrc: "http://img.b2bpic.net/free-photo/modern-spacious-room-with-large-panoramic-window_7502-7289.jpg?_wi=2", imageAlt: "Commercial plaza in Greater Noida"},
|
||||
{
|
||||
id: "2",
|
||||
name: "Architectural Masterpiece Estate",
|
||||
price: "$12,200,000",
|
||||
variant: "7 Bedrooms Smart Home Cinema",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-villa-with-multiple-lights-sun-loungers-asprovalta-greece_1268-16093.jpg?_wi=2",
|
||||
imageAlt: "Luxury estate",
|
||||
},
|
||||
id: "2", name: "Industrial Estate - Jewar", price: "₹8.5 Cr", variant: "25000 Sq.ft Manufacturing Ready Power", imageSrc: "http://img.b2bpic.net/free-photo/modern-villa-with-multiple-lights-sun-loungers-asprovalta-greece_1268-16093.jpg?_wi=2", imageAlt: "Industrial property in Jewar"},
|
||||
{
|
||||
id: "3",
|
||||
name: "Modern Urban Luxury Residence",
|
||||
price: "$6,750,000",
|
||||
variant: "4 Bedrooms City Views Rooftop Terrace",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/attractive-woman-reading-magazine-near-panoramic-window_7502-9287.jpg?_wi=3",
|
||||
imageAlt: "Modern urban residence",
|
||||
},
|
||||
id: "3", name: "Residential Complex - Greater Noida", price: "₹3.8 Cr", variant: "2BHK to 4BHK Modern Amenities", imageSrc: "http://img.b2bpic.net/free-photo/attractive-woman-reading-magazine-near-panoramic-window_7502-9287.jpg?_wi=3", imageAlt: "Residential complex in Greater Noida"},
|
||||
{
|
||||
id: "4", name: "Office Complex - Greater Noida", price: "₹4.1 Cr", variant: "8000 Sq.ft Corporate Ready Grade A", imageSrc: "http://img.b2bpic.net/free-photo/business-leaders-consulting-expert_74855-2095.jpg", imageAlt: "Office complex in Greater Noida"},
|
||||
{
|
||||
id: "5", name: "Land Plot - Jewar Growth Zone", price: "₹2.9 Cr", variant: "5000 Sq.ft Development Ready Highway", imageSrc: "http://img.b2bpic.net/free-photo/house-model-compass-plan-background-real-estate-concept_1423-179.jpg", imageAlt: "Land plot in Jewar"},
|
||||
{
|
||||
id: "6", name: "Mixed-Use Development - Greater Noida", price: "₹6.7 Cr", variant: "15000 Sq.ft Retail + Residential Premium", imageSrc: "http://img.b2bpic.net/free-photo/luxury-poolside-experience-where-guests-bask-opulence-cabanas_1268-31113.jpg?_wi=2", imageAlt: "Mixed-use development"},
|
||||
]}
|
||||
buttons={[]}
|
||||
buttonAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="property-types" data-section="property-types">
|
||||
<FeatureCardThree
|
||||
title="Property Categories"
|
||||
description="Discover our diverse portfolio of luxury properties across multiple segments"
|
||||
tag="Explore Categories"
|
||||
tagIcon={Sparkles}
|
||||
tagAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
animationType="slide-up"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
id: "01",
|
||||
title: "Residential Estates",
|
||||
description: "Luxury single-family homes and estates in prime locations",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-villa-with-multiple-lights-sun-loungers-asprovalta-greece_1268-16093.jpg?_wi=3",
|
||||
imageAlt: "Residential estate",
|
||||
},
|
||||
{
|
||||
id: "02",
|
||||
title: "Urban Penthouses",
|
||||
description: "Sophisticated city penthouse apartments with panoramic views",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-spacious-room-with-large-panoramic-window_7502-7289.jpg?_wi=3",
|
||||
imageAlt: "Urban penthouse",
|
||||
},
|
||||
{
|
||||
id: "03",
|
||||
title: "Waterfront Properties",
|
||||
description: "Exclusive beachfront and lakefront luxury residences",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/luxury-poolside-experience-where-guests-bask-opulence-cabanas_1268-31113.jpg?_wi=2",
|
||||
imageAlt: "Waterfront property",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCTA
|
||||
tag="Schedule a Tour"
|
||||
tagIcon={Phone}
|
||||
tagAnimation="slide-up"
|
||||
title="Interested in Any of These Properties?"
|
||||
description="Contact our luxury real estate specialists to schedule a private viewing or get more information about our featured properties."
|
||||
description="Contact Mukul and Kunal to schedule private viewings or get detailed information about our featured properties. Our team is ready to answer all your questions."
|
||||
background={{ variant: "plain" }}
|
||||
buttons={[
|
||||
{ text: "Schedule Tour", href: "/contact" },
|
||||
@@ -144,46 +92,42 @@ export default function PropertiesPage() {
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "/about" },
|
||||
{ label: "Our Team", href: "/team" },
|
||||
{ label: "Services", href: "#services" },
|
||||
{ label: "Market Insights", href: "#" },
|
||||
{ label: "Services", href: "/contact" },
|
||||
{ label: "Market Insights", href: "/properties" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Properties",
|
||||
items: [
|
||||
{ label: "Featured Listings", href: "/properties" },
|
||||
{ label: "Investment Properties", href: "#" },
|
||||
{ label: "Commercial Real Estate", href: "#" },
|
||||
{ label: "International Properties", href: "#" },
|
||||
title: "Properties", items: [
|
||||
{ label: "Commercial", href: "/properties" },
|
||||
{ label: "Industrial", href: "/properties" },
|
||||
{ label: "Residential", href: "/properties" },
|
||||
{ label: "Greater Noida", href: "/properties" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Resources",
|
||||
items: [
|
||||
{ label: "Buyer's Guide", href: "#" },
|
||||
{ label: "Seller's Guide", href: "#" },
|
||||
{ label: "Market Analysis", href: "#" },
|
||||
{ label: "Blog", href: "#" },
|
||||
title: "Locations", items: [
|
||||
{ label: "Greater Noida", href: "/properties" },
|
||||
{ label: "Jewar", href: "/properties" },
|
||||
{ label: "Investment Zones", href: "/properties" },
|
||||
{ label: "Development Areas", href: "/properties" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact",
|
||||
items: [
|
||||
title: "Contact", items: [
|
||||
{ label: "Schedule Tour", href: "/contact" },
|
||||
{ label: "Email Us", href: "mailto:info@luxeproperties.com" },
|
||||
{ label: "Call: +1 (555) 123-4567", href: "tel:+15551234567" },
|
||||
{ label: "Email Us", href: "mailto:info@dreamintorealty.com" },
|
||||
{ label: "Call: +91 (98765) 43210", href: "tel:+919876543210" },
|
||||
{ label: "Contact Form", href: "/contact" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
bottomLeftText="© 2025 Luxe Properties. All rights reserved."
|
||||
bottomRightText="Made with Webild"
|
||||
bottomLeftText="© 2025 DreamIntoRealty. All rights reserved."
|
||||
bottomRightText="Mukul & Kunal - Real Estate Experts"
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
140
src/app/team/page.tsx
Normal file
140
src/app/team/page.tsx
Normal file
@@ -0,0 +1,140 @@
|
||||
"use client";
|
||||
|
||||
import Link from "next/link";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
|
||||
import MediaAbout from "@/components/sections/about/MediaAbout";
|
||||
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
||||
import FooterSimple from "@/components/sections/footer/FooterSimple";
|
||||
import { Users, Phone } from "lucide-react";
|
||||
|
||||
export default function TeamPage() {
|
||||
const navItems = [
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Properties", id: "/properties" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Team", id: "/team" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
];
|
||||
|
||||
const navButton = {
|
||||
text: "Schedule Tour", href: "/contact"};
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="pill"
|
||||
contentWidth="mediumSmall"
|
||||
sizing="mediumLarge"
|
||||
background="none"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="primary-glow"
|
||||
secondaryButtonStyle="radial-glow"
|
||||
headingFontWeight="medium"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={navItems}
|
||||
button={navButton}
|
||||
brandName="DreamIntoRealty"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="team-intro" data-section="team-intro">
|
||||
<MediaAbout
|
||||
title="Meet the DreamIntoRealty Team"
|
||||
description="Mukul and Kunal lead a dedicated team of real estate professionals committed to delivering exceptional service in commercial, industrial, and residential property markets. With their combined expertise and market knowledge, they guide clients through every step of their real estate journey in Greater Noida and Jewar."
|
||||
tag="Our Expert Team"
|
||||
tagIcon={Users}
|
||||
tagAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/serious-confident-businesswomen-walking-man-suit-office-interior-full-length-back-view-business-meeting-concept_74855-11969.jpg?_wi=2"
|
||||
imageAlt="DreamIntoRealty team"
|
||||
buttons={[{ text: "Schedule Meeting", href: "/contact" }]}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="team-bios" data-section="team-bios" className="py-20">
|
||||
<div className="max-w-6xl mx-auto px-4">
|
||||
<div className="grid grid-cols-1 md:grid-cols-2 gap-12">
|
||||
<div className="text-center">
|
||||
<div className="mb-6" style={{ height: "300px", backgroundColor: "var(--card)", borderRadius: "var(--rounded-theme-capped, 12px)", overflow: "hidden" }}>
|
||||
<img src="http://img.b2bpic.net/free-photo/confident-young-businessman-with-folded-arms_1262-1775.jpg" alt="Mukul" className="w-full h-full object-cover" />
|
||||
</div>
|
||||
<h3 className="text-2xl font-semibold mb-2">Mukul</h3>
|
||||
<p className="text-lg font-medium" style={{ color: "var(--primary-cta)" }}>Founder & Commercial Specialist</p>
|
||||
<p className="mt-4 text-sm" style={{ color: "var(--foreground)" }}>With 15+ years of expertise in commercial real estate, Mukul specializes in identifying high-value investment opportunities and guiding businesses to their ideal locations in Greater Noida.</p>
|
||||
</div>
|
||||
<div className="text-center">
|
||||
<div className="mb-6" style={{ height: "300px", backgroundColor: "var(--card)", borderRadius: "var(--rounded-theme-capped, 12px)", overflow: "hidden" }}>
|
||||
<img src="http://img.b2bpic.net/free-photo/positive-confident-businesswoman-wearing-formal-suit-standing-with-arms-folded_74855-10328.jpg" alt="Kunal" className="w-full h-full object-cover" />
|
||||
</div>
|
||||
<h3 className="text-2xl font-semibold mb-2">Kunal</h3>
|
||||
<p className="text-lg font-medium" style={{ color: "var(--primary-cta)" }}>Founder & Development Strategist</p>
|
||||
<p className="mt-4 text-sm" style={{ color: "var(--foreground)" }}>Kunal brings strategic insight to residential and industrial property development. His expertise in Jewar's emerging market has helped numerous investors maximize returns on property ventures.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCTA
|
||||
tag="Connect With Us"
|
||||
tagIcon={Phone}
|
||||
tagAnimation="slide-up"
|
||||
title="Work With Our Team"
|
||||
description="Whether you need commercial space, industrial property, or residential solutions, Mukul, Kunal, and our team are ready to help you achieve your real estate goals."
|
||||
background={{ variant: "plain" }}
|
||||
buttons={[
|
||||
{ text: "Schedule Meeting", href: "/contact" },
|
||||
{ text: "Back to Home", href: "/" },
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "/about" },
|
||||
{ label: "Our Team", href: "/team" },
|
||||
{ label: "Services", href: "/contact" },
|
||||
{ label: "Market Insights", href: "/properties" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Properties", items: [
|
||||
{ label: "Commercial", href: "/properties" },
|
||||
{ label: "Industrial", href: "/properties" },
|
||||
{ label: "Residential", href: "/properties" },
|
||||
{ label: "Greater Noida", href: "/properties" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Locations", items: [
|
||||
{ label: "Greater Noida", href: "/properties" },
|
||||
{ label: "Jewar", href: "/properties" },
|
||||
{ label: "Investment Zones", href: "/properties" },
|
||||
{ label: "Development Areas", href: "/properties" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact", items: [
|
||||
{ label: "Schedule Tour", href: "/contact" },
|
||||
{ label: "Email Us", href: "mailto:info@dreamintorealty.com" },
|
||||
{ label: "Call: +91 (98765) 43210", href: "tel:+919876543210" },
|
||||
{ label: "Contact Form", href: "/contact" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
bottomLeftText="© 2025 DreamIntoRealty. All rights reserved."
|
||||
bottomRightText="Mukul & Kunal - Real Estate Experts"
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user