Merge version_1 into main
Merge version_1 into main
This commit was merged in pull request #2.
This commit is contained in:
350
src/app/page.tsx
350
src/app/page.tsx
@@ -13,7 +13,7 @@ import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
|||||||
import TeamCardEleven from '@/components/sections/team/TeamCardEleven';
|
import TeamCardEleven from '@/components/sections/team/TeamCardEleven';
|
||||||
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
|
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
|
||||||
import TextAbout from '@/components/sections/about/TextAbout';
|
import TextAbout from '@/components/sections/about/TextAbout';
|
||||||
import { Award, Home, TrendingUp, Users } from "lucide-react";
|
import { Award, Home, TrendingUp, Users, LandPlot, Tag, Key } from "lucide-react";
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
@@ -34,79 +34,44 @@ export default function LandingPage() {
|
|||||||
<NavbarLayoutFloatingOverlay
|
<NavbarLayoutFloatingOverlay
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{
|
||||||
name: "Home",
|
name: "Home", id: "#home"},
|
||||||
id: "#home",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "About",
|
name: "About", id: "#about"},
|
||||||
id: "#about",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Services",
|
name: "Services", id: "#services"},
|
||||||
id: "#services",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Properties",
|
name: "Properties", id: "#properties"},
|
||||||
id: "#properties",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Team",
|
name: "Team", id: "#team"},
|
||||||
id: "#team",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Contact",
|
name: "Contact", id: "#contact"},
|
||||||
id: "#contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
logoSrc="http://img.b2bpic.net/free-photo/low-angle-shot-high-modern-architecture-with-beautiful-sky_181624-2992.jpg"
|
logoSrc="http://img.b2bpic.net/free-photo/low-angle-shot-high-modern-architecture-with-beautiful-sky_181624-2992.jpg"
|
||||||
logoAlt="Algeria Estate logo"
|
logoAlt="Algeria Estate logo"
|
||||||
brandName="Algeria Estate"
|
brandName="Algeria Estate"
|
||||||
button={{
|
button={{
|
||||||
text: "List Your Property",
|
text: "List Your Property", href: "#contact"}}
|
||||||
href: "#contact",
|
|
||||||
}}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="home" data-section="home">
|
<div id="home" data-section="home">
|
||||||
<HeroSplitDualMedia
|
<HeroSplitDualMedia
|
||||||
background={{
|
background={{
|
||||||
variant: "plain",
|
variant: "plain"}}
|
||||||
}}
|
|
||||||
title="Your Dream Home Awaits in Algeria"
|
title="Your Dream Home Awaits in Algeria"
|
||||||
description="Discover exceptional properties for sale and rent across Algeria. Our expert team ensures a seamless experience from search to keys."
|
description="Discover exceptional properties for sale and rent across Algeria. Our expert team ensures a seamless experience from search to keys."
|
||||||
tag="Trusted Real Estate Partner"
|
tag="Trusted Real Estate Partner"
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Explore Properties",
|
text: "Explore Properties", href: "#properties"},
|
||||||
href: "#properties",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
text: "List Your Property",
|
text: "List Your Property", href: "#contact"},
|
||||||
href: "#contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
mediaItems={[
|
mediaItems={[
|
||||||
{
|
{
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/luxurious-villa-with-modern-architectural-design_23-2151694081.jpg?_wi=1",
|
imageSrc: "http://img.b2bpic.net/free-photo/luxurious-villa-with-modern-architectural-design_23-2151694081.jpg", imageAlt: "Modern Algerian villa exterior"},
|
||||||
imageAlt: "Modern Algerian villa exterior",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/people-office-workday_23-2147668795.jpg",
|
imageSrc: "http://img.b2bpic.net/free-photo/people-office-workday_23-2147668795.jpg", imageAlt: "Interior of a modern Algerian apartment"}
|
||||||
imageAlt: "Interior of a modern Algerian apartment",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/inviting-front-porch-with-wooden-door-hanging-baskets_23-2151974394.jpg",
|
|
||||||
imageAlt: "Luxury holiday home",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/cozy-living-room-interior-with-panoramic-window_1262-12322.jpg",
|
|
||||||
imageAlt: "Modern apartment interior with city view",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/countryside-house_53876-16157.jpg",
|
|
||||||
imageAlt: "Elegant house with a green garden",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
mediaAnimation="opacity"
|
mediaAnimation="opacity"
|
||||||
rating={5}
|
rating={5}
|
||||||
@@ -120,11 +85,9 @@ export default function LandingPage() {
|
|||||||
title="Connecting You to Algeria's Finest Properties"
|
title="Connecting You to Algeria's Finest Properties"
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Learn More",
|
text: "Learn More", href: "#services"},
|
||||||
href: "#services",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
description="Algeria Estate is a leading real estate agency dedicated to providing unparalleled service in buying, selling, and renting properties across Algeria. With years of experience and deep market knowledge, we help clients navigate the dynamic Algerian real estate landscape with confidence and ease. Our commitment is to transparency, professionalism, and delivering results."
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -134,32 +97,16 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
title: "Property Sales",
|
title: "Property Sales", description: "From luxurious villas to modern apartments, we help you find the perfect property to buy, offering expert guidance every step of the way.", imageSrc: "http://img.b2bpic.net/free-photo/photo-serious-mixed-race-partners-discuss-financial-data_273609-44254.jpg", imageAlt: "Hand holding house key for sale", buttonIcon: LandPlot,
|
||||||
description: "From luxurious villas to modern apartments, we help you find the perfect property to buy, offering expert guidance every step of the way.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/photo-serious-mixed-race-partners-discuss-financial-data_273609-44254.jpg",
|
|
||||||
imageAlt: "Hand holding house key for sale",
|
|
||||||
buttonIcon: "LandPlot",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Home Selling",
|
title: "Home Selling", description: "Maximize your property's value with our comprehensive marketing strategies and extensive network of potential buyers. We make selling effortless.", imageSrc: "http://img.b2bpic.net/free-photo/sale-agent-preparing-presenting-house_23-2149383583.jpg", imageAlt: "Real estate agent showing property", buttonIcon: Tag,
|
||||||
description: "Maximize your property's value with our comprehensive marketing strategies and extensive network of potential buyers. We make selling effortless.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/sale-agent-preparing-presenting-house_23-2149383583.jpg",
|
|
||||||
imageAlt: "Real estate agent showing property",
|
|
||||||
buttonIcon: "Tag",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Rental Solutions",
|
title: "Rental Solutions", description: "Discover a wide range of rental properties, from cozy studios to family homes. We connect tenants with ideal landlords, ensuring a smooth process.", imageSrc: "http://img.b2bpic.net/free-photo/horizontal-shot-african-woman-her-husband-study-family-budget-make-accountings_273609-44232.jpg", imageAlt: "Couple looking at apartment for rent", buttonIcon: Key,
|
||||||
description: "Discover a wide range of rental properties, from cozy studios to family homes. We connect tenants with ideal landlords, ensuring a smooth process.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/horizontal-shot-african-woman-her-husband-study-family-budget-make-accountings_273609-44232.jpg",
|
|
||||||
imageAlt: "Couple looking at apartment for rent",
|
|
||||||
buttonIcon: "Key",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Investment Advisory",
|
title: "Investment Advisory", description: "Gain insights into Algeria's real estate market with our expert investment advice, identifying high-growth opportunities for maximum returns.", imageSrc: "http://img.b2bpic.net/free-photo/man-big-center-using-smartphone_171337-19943.jpg", imageAlt: "Financial advisor explaining property investment", buttonIcon: TrendingUp,
|
||||||
description: "Gain insights into Algeria's real estate market with our expert investment advice, identifying high-growth opportunities for maximum returns.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/man-big-center-using-smartphone_171337-19943.jpg",
|
|
||||||
imageAlt: "Financial advisor explaining property investment",
|
|
||||||
buttonIcon: "TrendingUp",
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
title="Comprehensive Real Estate Services"
|
title="Comprehensive Real Estate Services"
|
||||||
@@ -175,47 +122,17 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
products={[
|
products={[
|
||||||
{
|
{
|
||||||
id: "p1",
|
id: "p1", name: "Luxury Villa in Algiers", price: "DZD 120,000,000", imageSrc: "http://img.b2bpic.net/free-photo/luxurious-villa-with-modern-architectural-design_23-2151694083.jpg", imageAlt: "Luxury villa in Algiers"},
|
||||||
name: "Luxury Villa in Algiers",
|
|
||||||
price: "DZD 120,000,000",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/luxurious-villa-with-modern-architectural-design_23-2151694083.jpg",
|
|
||||||
imageAlt: "Luxury villa in Algiers",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p2",
|
id: "p2", name: "Modern Apartment, Oran", price: "DZD 25,000,000", imageSrc: "http://img.b2bpic.net/free-photo/low-angle-office-buildings-city_23-2148798680.jpg", imageAlt: "Modern apartment in Oran"},
|
||||||
name: "Modern Apartment, Oran",
|
|
||||||
price: "DZD 25,000,000",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/low-angle-office-buildings-city_23-2148798680.jpg",
|
|
||||||
imageAlt: "Modern apartment in Oran",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p3",
|
id: "p3", name: "Traditional Riad, Ghardaïa", price: "DZD 45,000,000", imageSrc: "http://img.b2bpic.net/free-photo/chicago-water-tower_649448-3053.jpg", imageAlt: "Traditional riad in Ghardaïa"},
|
||||||
name: "Traditional Riad, Ghardaïa",
|
|
||||||
price: "DZD 45,000,000",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/chicago-water-tower_649448-3053.jpg",
|
|
||||||
imageAlt: "Traditional riad in Ghardaïa",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p4",
|
id: "p4", name: "Commercial Office Space, Constantine", price: "DZD 70,000,000", imageSrc: "http://img.b2bpic.net/free-photo/relax-area-hotel_1150-10812.jpg", imageAlt: "Commercial office space in Constantine"},
|
||||||
name: "Commercial Office Space, Constantine",
|
|
||||||
price: "DZD 70,000,000",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/relax-area-hotel_1150-10812.jpg",
|
|
||||||
imageAlt: "Commercial office space in Constantine",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p5",
|
id: "p5", name: "Land Plot for Development, Annaba", price: "DZD 15,000,000", imageSrc: "http://img.b2bpic.net/free-photo/aerial-view-luxury-rural-estates-gold-coast-australia_1308-189345.jpg", imageAlt: "Land plot for development in Annaba"},
|
||||||
name: "Land Plot for Development, Annaba",
|
|
||||||
price: "DZD 15,000,000",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/aerial-view-luxury-rural-estates-gold-coast-australia_1308-189345.jpg",
|
|
||||||
imageAlt: "Land plot for development in Annaba",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p6",
|
id: "p6", name: "Penthouse with Sea View, Skikda", price: "DZD 85,000,000", imageSrc: "http://img.b2bpic.net/free-photo/full-shot-woman-working-office_23-2151149104.jpg", imageAlt: "Penthouse with sea view in Skikda"},
|
||||||
name: "Penthouse with Sea View, Skikda",
|
|
||||||
price: "DZD 85,000,000",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-woman-working-office_23-2151149104.jpg",
|
|
||||||
imageAlt: "Penthouse with sea view in Skikda",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Featured Properties for Sale"
|
title="Featured Properties for Sale"
|
||||||
description="Explore our curated selection of premium residential and commercial properties available across Algeria."
|
description="Explore our curated selection of premium residential and commercial properties available across Algeria."
|
||||||
@@ -229,29 +146,17 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
metrics={[
|
metrics={[
|
||||||
{
|
{
|
||||||
id: "m1",
|
id: "m1", icon: Home,
|
||||||
icon: Home,
|
title: "Properties Sold", value: "250+"},
|
||||||
title: "Properties Sold",
|
|
||||||
value: "250+",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "m2",
|
id: "m2", icon: Users,
|
||||||
icon: Users,
|
title: "Satisfied Clients", value: "500+"},
|
||||||
title: "Satisfied Clients",
|
|
||||||
value: "500+",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "m3",
|
id: "m3", icon: Award,
|
||||||
icon: Award,
|
title: "Years of Experience", value: "10+"},
|
||||||
title: "Years of Experience",
|
|
||||||
value: "10+",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "m4",
|
id: "m4", icon: TrendingUp,
|
||||||
icon: TrendingUp,
|
title: "Average Growth", value: "15%"},
|
||||||
title: "Average Growth",
|
|
||||||
value: "15%",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Our Track Record of Excellence"
|
title="Our Track Record of Excellence"
|
||||||
description="Proudly serving the Algerian real estate market with dedication and outstanding results."
|
description="Proudly serving the Algerian real estate market with dedication and outstanding results."
|
||||||
@@ -265,36 +170,14 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
groups={[
|
groups={[
|
||||||
{
|
{
|
||||||
id: "g1",
|
id: "g1", groupTitle: "Our Expert Real Estate Agents", members: [
|
||||||
groupTitle: "Our Expert Real Estate Agents",
|
|
||||||
members: [
|
|
||||||
{
|
{
|
||||||
id: "t1",
|
id: "t1", title: "Ahmed Benali", subtitle: "Senior Sales Agent", detail: "Specializing in luxury residential properties.", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-working-as-real-estate-agent_23-2151064820.jpg", imageAlt: "Ahmed Benali, Senior Sales Agent"},
|
||||||
title: "Ahmed Benali",
|
|
||||||
subtitle: "Senior Sales Agent",
|
|
||||||
detail: "Specializing in luxury residential properties.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-working-as-real-estate-agent_23-2151064820.jpg",
|
|
||||||
imageAlt: "Ahmed Benali, Senior Sales Agent",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "t2",
|
id: "t2", title: "Fatima Zahra", subtitle: "Rental Specialist", detail: "Your guide to the best rental opportunities.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-confident-businesswoman_107420-84872.jpg", imageAlt: "Fatima Zahra, Rental Specialist"},
|
||||||
title: "Fatima Zahra",
|
|
||||||
subtitle: "Rental Specialist",
|
|
||||||
detail: "Your guide to the best rental opportunities.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-confident-businesswoman_107420-84872.jpg",
|
|
||||||
imageAlt: "Fatima Zahra, Rental Specialist",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "t3",
|
id: "t3", title: "Karim Djelloul", subtitle: "Commercial Properties", detail: "Expert in commercial real estate investments.", imageSrc: "http://img.b2bpic.net/free-photo/side-positive-mature-business-leader-working-with-laptop_74855-3293.jpg", imageAlt: "Karim Djelloul, Commercial Properties"},
|
||||||
title: "Karim Djelloul",
|
]
|
||||||
subtitle: "Commercial Properties",
|
|
||||||
detail: "Expert in commercial real estate investments.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/side-positive-mature-business-leader-working-with-laptop_74855-3293.jpg",
|
|
||||||
imageAlt: "Karim Djelloul, Commercial Properties",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/luxurious-villa-with-modern-architectural-design_23-2151694081.jpg?_wi=2",
|
|
||||||
imageAlt: "professional Algerian real estate agent man smiling",
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
title="Meet Our Dedicated Team"
|
title="Meet Our Dedicated Team"
|
||||||
@@ -308,63 +191,28 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
id: "test1",
|
id: "test1", name: "Dr. Sarah Mansouri", handle: "@SarahM", testimonial: "Algeria Estate made finding our new clinic incredibly easy. Their professionalism and market insight were exceptional!", rating: 5,
|
||||||
name: "Dr. Sarah Mansouri",
|
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-middle-aged-businesswoman_1262-21005.jpg", imageAlt: "Dr. Sarah Mansouri"},
|
||||||
handle: "@SarahM",
|
|
||||||
testimonial: "Algeria Estate made finding our new clinic incredibly easy. Their professionalism and market insight were exceptional!",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-middle-aged-businesswoman_1262-21005.jpg",
|
|
||||||
imageAlt: "Dr. Sarah Mansouri",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "test2",
|
id: "test2", name: "Omar Khedim", handle: "@Omar_K", testimonial: "Selling my apartment was a breeze with Algeria Estate. They handled everything efficiently, securing a great price.", rating: 5,
|
||||||
name: "Omar Khedim",
|
imageSrc: "http://img.b2bpic.net/free-photo/front-view-smiley-female-realtor-holding-miniature-house_23-2148895445.jpg", imageAlt: "Omar Khedim"},
|
||||||
handle: "@Omar_K",
|
|
||||||
testimonial: "Selling my apartment was a breeze with Algeria Estate. They handled everything efficiently, securing a great price.",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-smiley-female-realtor-holding-miniature-house_23-2148895445.jpg",
|
|
||||||
imageAlt: "Omar Khedim",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "test3",
|
id: "test3", name: "Amina Bouzid", handle: "@AminaB", testimonial: "The team at Algeria Estate helped us find the perfect family home. Their dedication and support were invaluable.", rating: 5,
|
||||||
name: "Amina Bouzid",
|
imageSrc: "http://img.b2bpic.net/free-photo/colleagues-having-online-meeting-work_23-2148940758.jpg", imageAlt: "Amina Bouzid"},
|
||||||
handle: "@AminaB",
|
|
||||||
testimonial: "The team at Algeria Estate helped us find the perfect family home. Their dedication and support were invaluable.",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/colleagues-having-online-meeting-work_23-2148940758.jpg",
|
|
||||||
imageAlt: "Amina Bouzid",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "test4",
|
id: "test4", name: "Yacine Amari", handle: "@YacineA", testimonial: "As an investor, I rely on expert advice. Algeria Estate provided excellent guidance, leading to a successful acquisition.", rating: 5,
|
||||||
name: "Yacine Amari",
|
imageSrc: "http://img.b2bpic.net/free-photo/we-are-so-happy-from-our-new-apartment_329181-164.jpg", imageAlt: "Yacine Amari"},
|
||||||
handle: "@YacineA",
|
|
||||||
testimonial: "As an investor, I rely on expert advice. Algeria Estate provided excellent guidance, leading to a successful acquisition.",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/we-are-so-happy-from-our-new-apartment_329181-164.jpg",
|
|
||||||
imageAlt: "Yacine Amari",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "test5",
|
id: "test5", name: "Mrs. Khadija Meziane", handle: "@KhadijaM", testimonial: "Their service is truly five-star. They found a lovely tenant for my property quickly and without any hassle.", rating: 5,
|
||||||
name: "Mrs. Khadija Meziane",
|
imageSrc: "http://img.b2bpic.net/free-photo/blond-businessman-happy-expression_1194-3864.jpg", imageAlt: "Mrs. Khadija Meziane"},
|
||||||
handle: "@KhadijaM",
|
|
||||||
testimonial: "Their service is truly five-star. They found a lovely tenant for my property quickly and without any hassle.",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/blond-businessman-happy-expression_1194-3864.jpg",
|
|
||||||
imageAlt: "Mrs. Khadija Meziane",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "test6",
|
id: "test6", name: "Khalid Ouaret", handle: "@Khalid_O", testimonial: "Smooth transaction and fantastic support throughout the entire buying process. Highly recommended!", rating: 5,
|
||||||
name: "Khalid Ouaret",
|
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-happy-people_23-2149193851.jpg", imageAlt: "Medium shot happy people"},
|
||||||
handle: "@Khalid_O",
|
|
||||||
testimonial: "Smooth transaction and fantastic support throughout the entire buying process. Highly recommended!",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-happy-people_23-2149193851.jpg",
|
|
||||||
imageAlt: "Medium shot happy people",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
showRating={true}
|
showRating={true}
|
||||||
title="What Our Clients Say"
|
title="What Our Clients Say"
|
||||||
description="Hear from satisfied property owners, buyers, and renters who chose Algeria Estate."
|
description="Hear from satisfied property owners, buyers, and renters who chose Algeria Estate."
|
||||||
|
animationType="slide-up"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -373,30 +221,15 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
faqs={[
|
faqs={[
|
||||||
{
|
{
|
||||||
id: "faq1",
|
id: "faq1", title: "What areas do you cover in Algeria?", content: "We cover major cities and regions across Algeria, including Algiers, Oran, Constantine, Annaba, and many more. Our extensive network allows us to assist clients nationwide."},
|
||||||
title: "What areas do you cover in Algeria?",
|
|
||||||
content: "We cover major cities and regions across Algeria, including Algiers, Oran, Constantine, Annaba, and many more. Our extensive network allows us to assist clients nationwide.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "faq2",
|
id: "faq2", title: "How long does it take to sell a property?", content: "The timeline for selling a property varies based on market conditions, property type, and pricing. Our team works diligently to ensure your property is sold as quickly as possible at the best market value."},
|
||||||
title: "How long does it take to sell a property?",
|
|
||||||
content: "The timeline for selling a property varies based on market conditions, property type, and pricing. Our team works diligently to ensure your property is sold as quickly as possible at the best market value.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "faq3",
|
id: "faq3", title: "Do you assist with legal documentation?", content: "Yes, we provide comprehensive assistance with all legal documentation required for buying, selling, or renting properties, ensuring a smooth and compliant transaction process."},
|
||||||
title: "Do you assist with legal documentation?",
|
|
||||||
content: "Yes, we provide comprehensive assistance with all legal documentation required for buying, selling, or renting properties, ensuring a smooth and compliant transaction process.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "faq4",
|
id: "faq4", title: "What are your fees for services?", content: "Our fees are competitive and transparent. We discuss all costs upfront during your initial consultation, ensuring you have a clear understanding of our service charges."},
|
||||||
title: "What are your fees for services?",
|
|
||||||
content: "Our fees are competitive and transparent. We discuss all costs upfront during your initial consultation, ensuring you have a clear understanding of our service charges.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "faq5",
|
id: "faq5", title: "Can I get a property valuation?", content: "Absolutely. We offer professional property valuation services to help you understand the true market value of your asset, whether for sale or investment."},
|
||||||
title: "Can I get a property valuation?",
|
|
||||||
content: "Absolutely. We offer professional property valuation services to help you understand the true market value of your asset, whether for sale or investment.",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
sideTitle="Frequently Asked Questions"
|
sideTitle="Frequently Asked Questions"
|
||||||
sideDescription="Find quick answers to the most common questions about buying, selling, or renting property with Algeria Estate."
|
sideDescription="Find quick answers to the most common questions about buying, selling, or renting property with Algeria Estate."
|
||||||
@@ -409,18 +242,13 @@ export default function LandingPage() {
|
|||||||
<ContactText
|
<ContactText
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
background={{
|
background={{
|
||||||
variant: "plain",
|
variant: "plain"}}
|
||||||
}}
|
|
||||||
text="Ready to Find Your Next Property or Sell Your Current One? Contact Us Today!"
|
text="Ready to Find Your Next Property or Sell Your Current One? Contact Us Today!"
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Call Us Now",
|
text: "Call Us Now", href: "tel:+213555123456"},
|
||||||
href: "tel:+213555123456",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
text: "Send an Email",
|
text: "Send an Email", href: "mailto:info@algeriaestate.dz"},
|
||||||
href: "mailto:info@algeriaestate.dz",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -432,71 +260,43 @@ export default function LandingPage() {
|
|||||||
logoText="Algeria Estate"
|
logoText="Algeria Estate"
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Company",
|
title: "Company", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "About Us",
|
label: "About Us", href: "#about"},
|
||||||
href: "#about",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Our Team",
|
label: "Our Team", href: "#team"},
|
||||||
href: "#team",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Careers",
|
label: "Careers", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Services",
|
title: "Services", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "Buy Property",
|
label: "Buy Property", href: "#properties"},
|
||||||
href: "#properties",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Sell Property",
|
label: "Sell Property", href: "#contact"},
|
||||||
href: "#contact",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Rent Property",
|
label: "Rent Property", href: "#services"},
|
||||||
href: "#services",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Invest",
|
label: "Invest", href: "#services"},
|
||||||
href: "#services",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Resources",
|
title: "Resources", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "FAQs",
|
label: "FAQs", href: "#faq"},
|
||||||
href: "#faq",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Blog",
|
label: "Blog", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Support",
|
label: "Support", href: "#contact"},
|
||||||
href: "#contact",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Legal",
|
title: "Legal", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "Privacy Policy",
|
label: "Privacy Policy", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Terms of Service",
|
label: "Terms of Service", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
|
|||||||
Reference in New Issue
Block a user