Merge version_1 into main #2
543
src/app/page.tsx
543
src/app/page.tsx
@@ -1,438 +1,121 @@
|
||||
"use client";
|
||||
|
||||
'use client';
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import ContactText from '@/components/sections/contact/ContactText';
|
||||
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
|
||||
import FeatureCardEight from '@/components/sections/feature/FeatureCardEight';
|
||||
import FooterCard from '@/components/sections/footer/FooterCard';
|
||||
import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi';
|
||||
import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen';
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import ProductCardFour from '@/components/sections/product/ProductCardFour';
|
||||
import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi';
|
||||
import SplitAbout from '@/components/sections/about/SplitAbout';
|
||||
import FeatureCardEight from '@/components/sections/feature/FeatureCardEight';
|
||||
import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen';
|
||||
import ProductCardFour from '@/components/sections/product/ProductCardFour';
|
||||
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
|
||||
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
|
||||
import ContactText from '@/components/sections/contact/ContactText';
|
||||
import FooterCard from '@/components/sections/footer/FooterCard';
|
||||
import Link from 'next/link';
|
||||
|
||||
export default function LandingPage() {
|
||||
const navItems = [{ name: "Home", id: "/" }];
|
||||
|
||||
export default function Page() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="elastic-effect"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="pill"
|
||||
contentWidth="compact"
|
||||
sizing="largeSmallSizeLargeTitles"
|
||||
background="floatingGradient"
|
||||
cardStyle="gradient-bordered"
|
||||
primaryButtonStyle="double-inset"
|
||||
secondaryButtonStyle="radial-glow"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "About",
|
||||
id: "about",
|
||||
},
|
||||
{
|
||||
name: "Amenities",
|
||||
id: "amenities",
|
||||
},
|
||||
{
|
||||
name: "Gallery",
|
||||
id: "gallery",
|
||||
},
|
||||
{
|
||||
name: "Location",
|
||||
id: "location",
|
||||
},
|
||||
]}
|
||||
brandName="ENAKI"
|
||||
button={{
|
||||
text: "Book Tour",
|
||||
href: "#contact",
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitKpi
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
title="Welcome to Elevated Living"
|
||||
description="Enaki Resort Residence is a private sanctuary in Nairobi where architecture, wellness, and luxury converge."
|
||||
kpis={[
|
||||
{
|
||||
value: "4.7",
|
||||
label: "Resident Rating",
|
||||
},
|
||||
{
|
||||
value: "24/7",
|
||||
label: "Security Access",
|
||||
},
|
||||
{
|
||||
value: "Luxury",
|
||||
label: "Wellness Living",
|
||||
},
|
||||
]}
|
||||
enableKpiAnimation={true}
|
||||
buttons={[
|
||||
{
|
||||
text: "Book a Private Tour",
|
||||
href: "#contact",
|
||||
},
|
||||
{
|
||||
text: "View Residences",
|
||||
href: "#amenities",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/3d-rendering-abstract-building_23-2150896794.jpg?_wi=1"
|
||||
mediaAnimation="blur-reveal"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/building-night_1127-3365.jpg",
|
||||
alt: "Resident profile",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/modern-building-seen-from_116348-65.jpg",
|
||||
alt: "Resident profile",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/facade-modern-building-with-geometric-windows-curved-walls_181624-16998.jpg",
|
||||
alt: "Resident profile",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/residential-district-night-valencia-spain_1398-2379.jpg",
|
||||
alt: "Resident profile",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/still-life-flowers-with-decorative-objects-living-room_169016-5967.jpg",
|
||||
alt: "Resident profile",
|
||||
},
|
||||
]}
|
||||
avatarText="Join our community of satisfied residents"
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text",
|
||||
text: "Luxury Architecture",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Nairobi Prime",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Wellness Focused",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Resort Living",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Secure Sanctuary",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<SplitAbout
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={true}
|
||||
title="Designed for the Way You Live Today"
|
||||
description="Enaki Resort Residence is more than a home—it's a lifestyle ecosystem. Designed in collaboration with world-class architects, every detail is curated to support modern living, balance, and quiet luxury. Set in a serene environment in Nairobi, Enaki blends privacy, accessibility, and elegance into one seamless experience."
|
||||
bulletPoints={[
|
||||
{
|
||||
title: "Private Sanctuary",
|
||||
description: "Designed for seclusion and peace.",
|
||||
},
|
||||
{
|
||||
title: "World-Class Architecture",
|
||||
description: "Curated details for modern life.",
|
||||
},
|
||||
{
|
||||
title: "Wellness Centered",
|
||||
description: "Lifestyle ecosystem for balance.",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/contemporary-living-room_1150-12613.jpg?_wi=1"
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="masterplan" data-section="masterplan">
|
||||
<FeatureCardEight
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "Zone A",
|
||||
description: "6 exclusive residential blocks.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/3d-rendering-modern-dining-room-living-room-with-luxury-decor_105762-2251.jpg",
|
||||
imageAlt: "3d rendering modern dining room and living room with luxury decor",
|
||||
},
|
||||
{
|
||||
title: "Zone B",
|
||||
description: "9 premium residential blocks.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/3d-rendering-abstract-building_23-2150896794.jpg?_wi=2",
|
||||
imageAlt: "3d rendering modern dining room and living room with luxury decor",
|
||||
},
|
||||
{
|
||||
title: "Shared Amenities",
|
||||
description: "Connected access for all residents.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/contemporary-living-room_1150-12613.jpg?_wi=2",
|
||||
imageAlt: "3d rendering modern dining room and living room with luxury decor",
|
||||
},
|
||||
]}
|
||||
title="A Community Within a Community"
|
||||
description="Each zone is thoughtfully planned to offer privacy while maintaining access to shared luxury amenities."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="amenities" data-section="amenities">
|
||||
<FeatureCardEight
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{
|
||||
title: "Swimming Pool",
|
||||
description: "Relax, unwind, and recharge.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pool-hammocks_1203-141.jpg",
|
||||
},
|
||||
{
|
||||
title: "Fitness Gym",
|
||||
description: "Modern fitness for your strength.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/gym-interior-with-equipment_93675-128388.jpg",
|
||||
},
|
||||
{
|
||||
title: "Spin Studio",
|
||||
description: "High-energy workout experiences.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/people-doing-indoor-cycling_23-2149270219.jpg",
|
||||
},
|
||||
{
|
||||
title: "Private Cinema",
|
||||
description: "Exclusive cinematic experiences.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cozy-loungers-health-spa-with-no-people-copy-space_637285-6704.jpg",
|
||||
},
|
||||
{
|
||||
title: "Game Lounge",
|
||||
description: "Social, fun, and immersive.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/people-playing-beer-pong-indoor-party_23-2149431314.jpg",
|
||||
},
|
||||
{
|
||||
title: "Book Lounge",
|
||||
description: "Quiet sophistication for thinkers.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/still-life-from-home-interior-wooden-background_169016-3751.jpg",
|
||||
},
|
||||
]}
|
||||
title="Every Detail Designed for Living Well"
|
||||
description="Premium amenities designed for your wellness and social lifestyle."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="lifestyle" data-section="lifestyle">
|
||||
<MetricCardFourteen
|
||||
useInvertedBackground={false}
|
||||
title="Where the Future Meets Comfort"
|
||||
tag="Resident Sentiment"
|
||||
metrics={[
|
||||
{
|
||||
id: "m1",
|
||||
value: "100%",
|
||||
description: "Intentional Moments",
|
||||
},
|
||||
{
|
||||
id: "m2",
|
||||
value: "Premium",
|
||||
description: "Exceptional Finishes",
|
||||
},
|
||||
{
|
||||
id: "m3",
|
||||
value: "Serene",
|
||||
description: "Daily Surroundings",
|
||||
},
|
||||
]}
|
||||
metricsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="gallery" data-section="gallery">
|
||||
<ProductCardFour
|
||||
animationType="opacity"
|
||||
textboxLayout="default"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={true}
|
||||
products={[
|
||||
{
|
||||
id: "g1",
|
||||
name: "Exterior Facade",
|
||||
price: "Architectural",
|
||||
variant: "View",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/still-life-with-vases-with-spring-flowers-living-room_169016-5983.jpg",
|
||||
},
|
||||
{
|
||||
id: "g2",
|
||||
name: "Resort Pool",
|
||||
price: "Wellness",
|
||||
variant: "View",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/hotel-swimming-pool_1385-760.jpg",
|
||||
},
|
||||
{
|
||||
id: "g3",
|
||||
name: "Interior Suites",
|
||||
price: "Luxury",
|
||||
variant: "View",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-luxury-sofa_74190-6516.jpg",
|
||||
},
|
||||
{
|
||||
id: "g4",
|
||||
name: "Spin Studio",
|
||||
price: "Fitness",
|
||||
variant: "View",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-adult-exercising-home_23-2150164749.jpg",
|
||||
},
|
||||
{
|
||||
id: "g5",
|
||||
name: "Cinema Room",
|
||||
price: "Social",
|
||||
variant: "View",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/neoclassical-style-interior-design-with-decor-furnishings_23-2151199364.jpg",
|
||||
},
|
||||
{
|
||||
id: "g6",
|
||||
name: "Game Lounge",
|
||||
price: "Recreation",
|
||||
variant: "View",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/people-library-reading-books_23-2150293539.jpg",
|
||||
},
|
||||
]}
|
||||
title="Visualizing Elegance"
|
||||
description="Explore the exquisite design and architecture."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="location" data-section="location">
|
||||
<FaqSplitText
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "l1",
|
||||
title: "Address",
|
||||
content: "QQGP+8FJ, Nairobi",
|
||||
},
|
||||
{
|
||||
id: "l2",
|
||||
title: "Availability",
|
||||
content: "Open 24 Hours for tours.",
|
||||
},
|
||||
{
|
||||
id: "l3",
|
||||
title: "Access",
|
||||
content: "Smooth access roads provided.",
|
||||
},
|
||||
]}
|
||||
sideTitle="Connected Yet Private"
|
||||
sideDescription="Strategically located in Nairobi with smooth access roads, Enaki offers both convenience and escape."
|
||||
faqsAnimation="blur-reveal"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardSixteen
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
testimonials={[
|
||||
{
|
||||
id: "t1",
|
||||
name: "Sarah J.",
|
||||
role: "Executive",
|
||||
company: "Resident",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-mature-business-man-standing-office-cafe-leaning-counter-holding-jacket-shoulder-showing-thumb-up-like_74855-10007.jpg",
|
||||
},
|
||||
{
|
||||
id: "t2",
|
||||
name: "Mark D.",
|
||||
role: "Investor",
|
||||
company: "Visitor",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/bearded-black-man-wearing-suit-felt-hat_613910-1878.jpg",
|
||||
},
|
||||
{
|
||||
id: "t3",
|
||||
name: "Elena V.",
|
||||
role: "Architect",
|
||||
company: "Resident",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/senior-couple-dancing-home_23-2149891223.jpg",
|
||||
},
|
||||
{
|
||||
id: "t4",
|
||||
name: "David K.",
|
||||
role: "Executive",
|
||||
company: "Resident",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/details-decor-table-living-room-hygge-style_169016-10387.jpg",
|
||||
},
|
||||
{
|
||||
id: "t5",
|
||||
name: "Lucy H.",
|
||||
role: "Director",
|
||||
company: "Visitor",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/gorgeous-smiling-blonde-fashion-model-sits-white-suit-soft-armchair_8353-5476.jpg",
|
||||
},
|
||||
]}
|
||||
kpiItems={[
|
||||
{
|
||||
value: "100+",
|
||||
label: "Happy Residents",
|
||||
},
|
||||
{
|
||||
value: "5.0",
|
||||
label: "Design Rating",
|
||||
},
|
||||
{
|
||||
value: "15+",
|
||||
label: "Total Blocks",
|
||||
},
|
||||
]}
|
||||
title="Resident Experiences"
|
||||
description="Hear what our exclusive community says."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactText
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "sparkles-gradient",
|
||||
}}
|
||||
text="Experience Enaki for Yourself. Schedule your private tour and view our residences."
|
||||
buttons={[
|
||||
{
|
||||
text: "Schedule Viewing",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
text: "Request Pricing",
|
||||
href: "#",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterCard
|
||||
logoText="ENAKI RESORT RESIDENCE"
|
||||
copyrightText="© 2025 Enaki Resort Residence | Designed for Better Living"
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
<ThemeProvider>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay navItems={navItems} />
|
||||
</div>
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitKpi
|
||||
background={{ variant: "gradient-bars" }}
|
||||
title="Welcome to Elevated Living"
|
||||
description="Enaki Resort Residence is a private sanctuary in Nairobi where architecture, wellness, and luxury converge."
|
||||
kpis={[{ value: "4.7", label: "Resident Rating" }, { value: "24/7", label: "Security Access" }, { value: "Luxury", label: "Wellness Living" }]}
|
||||
enableKpiAnimation={true}
|
||||
buttons={[{ text: "Book a Private Tour", href: "#contact" }, { text: "View Residences", href: "#amenities" }]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/3d-rendering-abstract-building_23-2150896794.jpg"
|
||||
mediaAnimation="blur-reveal"
|
||||
avatars={[{ src: "http://img.b2bpic.net/free-photo/building-night_1127-3365.jpg", alt: "Resident profile" }, { src: "http://img.b2bpic.net/free-photo/modern-building-seen-from_116348-65.jpg", alt: "Resident profile" }, { src: "http://img.b2bpic.net/free-photo/facade-modern-building-with-geometric-windows-curved-walls_181624-16998.jpg", alt: "Resident profile" }, { src: "http://img.b2bpic.net/free-photo/residential-district-night-valencia-spain_1398-2379.jpg", alt: "Resident profile" }, { src: "http://img.b2bpic.net/free-photo/still-life-flowers-with-decorative-objects-living-room_169016-5967.jpg", alt: "Resident profile" }]}
|
||||
avatarText="Join our community of satisfied residents"
|
||||
marqueeItems={[{ type: "text", text: "Luxury Architecture" }, { type: "text", text: "Nairobi Prime" }, { type: "text", text: "Wellness Focused" }, { type: "text", text: "Resort Living" }, { type: "text", text: "Secure Sanctuary" }]}
|
||||
/>
|
||||
</div>
|
||||
<div id="about" data-section="about">
|
||||
<SplitAbout
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={true}
|
||||
title="Designed for the Way You Live Today"
|
||||
description="Enaki Resort Residence is more than a home—it's a lifestyle ecosystem. Designed in collaboration with world-class architects, every detail is curated to support modern living, balance, and quiet luxury. Set in a serene environment in Nairobi, Enaki blends privacy, accessibility, and elegance into one seamless experience."
|
||||
bulletPoints={[{ title: "Private Sanctuary", description: "Designed for seclusion and peace." }, { title: "World-Class Architecture", description: "Curated details for modern life." }, { title: "Wellness Centered", description: "Lifestyle ecosystem for balance." }]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/contemporary-living-room_1150-12613.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
<div id="masterplan" data-section="masterplan">
|
||||
<FeatureCardEight
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
features={[{ title: "Zone A", description: "6 exclusive residential blocks.", imageSrc: "http://img.b2bpic.net/free-photo/3d-rendering-modern-dining-room-living-room-with-luxury-decor_105762-2251.jpg" }, { title: "Zone B", description: "9 premium residential blocks.", imageSrc: "http://img.b2bpic.net/free-photo/3d-rendering-abstract-building_23-2150896794.jpg" }, { title: "Shared Amenities", description: "Connected access for all residents.", imageSrc: "http://img.b2bpic.net/free-photo/contemporary-living-room_1150-12613.jpg" }]}
|
||||
title="A Community Within a Community"
|
||||
description="Each zone is thoughtfully planned to offer privacy while maintaining access to shared luxury amenities."
|
||||
/>
|
||||
</div>
|
||||
<div id="amenities" data-section="amenities">
|
||||
<FeatureCardEight
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
features={[{ title: "Swimming Pool", description: "Relax, unwind, and recharge.", imageSrc: "http://img.b2bpic.net/free-photo/pool-hammocks_1203-141.jpg" }, { title: "Fitness Gym", description: "Modern fitness for your strength.", imageSrc: "http://img.b2bpic.net/free-photo/gym-interior-with-equipment_93675-128388.jpg" }, { title: "Spin Studio", description: "High-energy workout experiences.", imageSrc: "http://img.b2bpic.net/free-photo/people-doing-indoor-cycling_23-2149270219.jpg" }, { title: "Private Cinema", description: "Exclusive cinematic experiences.", imageSrc: "http://img.b2bpic.net/free-photo/cozy-loungers-health-spa-with-no-people-copy-space_637285-6704.jpg" }, { title: "Game Lounge", description: "Social, fun, and immersive.", imageSrc: "http://img.b2bpic.net/free-photo/people-playing-beer-pong-indoor-party_23-2149431314.jpg" }, { title: "Book Lounge", description: "Quiet sophistication for thinkers.", imageSrc: "http://img.b2bpic.net/free-photo/still-life-from-home-interior-wooden-background_169016-3751.jpg" }]}
|
||||
title="Every Detail Designed for Living Well"
|
||||
description="Premium amenities designed for your wellness and social lifestyle."
|
||||
/>
|
||||
</div>
|
||||
<div id="lifestyle" data-section="lifestyle">
|
||||
<MetricCardFourteen
|
||||
useInvertedBackground={false}
|
||||
title="Where the Future Meets Comfort"
|
||||
tag="Resident Sentiment"
|
||||
metrics={[{ id: "m1", value: "100%", description: "Intentional Moments" }, { id: "m2", value: "Premium", description: "Exceptional Finishes" }, { id: "m3", value: "Serene", description: "Daily Surroundings" }]}
|
||||
metricsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
<div id="gallery" data-section="gallery">
|
||||
<ProductCardFour
|
||||
animationType="opacity"
|
||||
textboxLayout="default"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={true}
|
||||
products={[{ id: "g1", name: "Exterior Facade", price: "Architectural", variant: "View", imageSrc: "http://img.b2bpic.net/free-photo/still-life-with-vases-with-spring-flowers-living-room_169016-5983.jpg" }, { id: "g2", name: "Resort Pool", price: "Wellness", variant: "View", imageSrc: "http://img.b2bpic.net/free-photo/hotel-swimming-pool_1385-760.jpg" }, { id: "g3", name: "Interior Suites", price: "Luxury", variant: "View", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-luxury-sofa_74190-6516.jpg" }, { id: "g4", name: "Spin Studio", price: "Fitness", variant: "View", imageSrc: "http://img.b2bpic.net/free-photo/young-adult-exercising-home_23-2150164749.jpg" }, { id: "g5", name: "Cinema Room", price: "Social", variant: "View", imageSrc: "http://img.b2bpic.net/free-photo/neoclassical-style-interior-design-with-decor-furnishings_23-2151199364.jpg" }, { id: "g6", name: "Game Lounge", price: "Recreation", variant: "View", imageSrc: "http://img.b2bpic.net/free-photo/people-library-reading-books_23-2150293539.jpg" }]}
|
||||
title="Visualizing Elegance"
|
||||
description="Explore the exquisite design and architecture."
|
||||
/>
|
||||
</div>
|
||||
<div id="location" data-section="location">
|
||||
<FaqSplitText
|
||||
useInvertedBackground={false}
|
||||
faqs={[{ id: "l1", title: "Address", content: "QQGP+8FJ, Nairobi" }, { id: "l2", title: "Availability", content: "Open 24 Hours for tours." }, { id: "l3", title: "Access", content: "Smooth access roads provided." }]}
|
||||
sideTitle="Connected Yet Private"
|
||||
sideDescription="Strategically located in Nairobi with smooth access roads, Enaki offers both convenience and escape."
|
||||
faqsAnimation="blur-reveal"
|
||||
/>
|
||||
</div>
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardSixteen
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
testimonials={[{ id: "t1", name: "Sarah J.", role: "Executive", company: "Resident", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/happy-mature-business-man-standing-office-cafe-leaning-counter-holding-jacket-shoulder-showing-thumb-up-like_74855-10007.jpg" }, { id: "t2", name: "Mark D.", role: "Investor", company: "Visitor", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/bearded-black-man-wearing-suit-felt-hat_613910-1878.jpg" }, { id: "t3", name: "Elena V.", role: "Architect", company: "Resident", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/senior-couple-dancing-home_23-2149891223.jpg" }, { id: "t4", name: "David K.", role: "Executive", company: "Resident", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/details-decor-table-living-room-hygge-style_169016-10387.jpg" }, { id: "t5", name: "Lucy H.", role: "Director", company: "Visitor", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/gorgeous-smiling-blonde-fashion-model-sits-white-suit-soft-armchair_8353-5476.jpg" }]}
|
||||
kpiItems={[{ value: "100+", label: "Happy Residents" }, { value: "5.0", label: "Design Rating" }, { value: "15+", label: "Total Blocks" }]}
|
||||
title="Resident Experiences"
|
||||
description="Hear what our exclusive community says."
|
||||
/>
|
||||
</div>
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactText
|
||||
text="Experience Enaki for Yourself. Schedule your private tour and view our residences."
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
buttons={[{ text: "Schedule Viewing", href: "#" }, { text: "Request Pricing", href: "#" }]}
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterCard
|
||||
logoText="ENAKI RESORT RESIDENCE"
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user