187 lines
8.7 KiB
TypeScript
187 lines
8.7 KiB
TypeScript
"use client";
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
|
import HeroSplit from "@/components/sections/hero/HeroSplit";
|
|
import TestimonialAboutCard from "@/components/sections/about/TestimonialAboutCard";
|
|
import FeatureCardTwentyThree from "@/components/sections/feature/FeatureCardTwentyThree";
|
|
import MetricCardSeven from "@/components/sections/metrics/MetricCardSeven";
|
|
import TestimonialCardOne from "@/components/sections/testimonial/TestimonialCardOne";
|
|
import ContactSplit from "@/components/sections/contact/ContactSplit";
|
|
import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
|
|
import { Award, Briefcase, CheckCircle, Heart, Sparkles, TrendingUp, Zap } from "lucide-react";
|
|
|
|
export default function LandingPage() {
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="text-shift"
|
|
defaultTextAnimation="background-highlight"
|
|
borderRadius="pill"
|
|
contentWidth="mediumLarge"
|
|
sizing="largeSmall"
|
|
background="fluid"
|
|
cardStyle="glass-elevated"
|
|
primaryButtonStyle="flat"
|
|
secondaryButtonStyle="layered"
|
|
headingFontWeight="medium"
|
|
>
|
|
<div id="nav" data-section="nav">
|
|
<NavbarLayoutFloatingInline
|
|
brandName="Iwawe Trade"
|
|
navItems={[
|
|
{ name: "About", id: "about" },
|
|
{ name: "Services", id: "services" },
|
|
{ name: "Why Us", id: "why-us" },
|
|
{ name: "Testimonials", id: "testimonials" },
|
|
]}
|
|
button={{ text: "Call Now", href: "tel:+250123456789" }}
|
|
animateOnLoad={true}
|
|
/>
|
|
</div>
|
|
|
|
<div id="hero" data-section="hero">
|
|
<HeroSplit
|
|
title="Expert Local Services You Can Trust"
|
|
description="Quality solutions delivered by experienced professionals. Get connected with the best service providers in your area today."
|
|
tag="Trusted & Verified"
|
|
tagIcon={CheckCircle}
|
|
tagAnimation="slide-up"
|
|
background={{ variant: "glowing-orb" }}
|
|
buttons={[
|
|
{ text: "Get Started", href: "contact" },
|
|
{ text: "Learn More", href: "about" },
|
|
]}
|
|
buttonAnimation="slide-up"
|
|
imageSrc="http://img.b2bpic.net/free-photo/successful-businesswoman-manages-financial-planning-project-development_482257-119932.jpg"
|
|
imageAlt="Professional local business services"
|
|
mediaAnimation="blur-reveal"
|
|
imagePosition="right"
|
|
fixedMediaHeight={true}
|
|
/>
|
|
</div>
|
|
|
|
<div id="about" data-section="about">
|
|
<TestimonialAboutCard
|
|
tag="Who We Are"
|
|
tagIcon={Briefcase}
|
|
tagAnimation="slide-up"
|
|
title="Connecting You With Quality Local Solutions"
|
|
description="Iwawe Trade"
|
|
subdescription="Committed to Excellence"
|
|
icon={Award}
|
|
imageSrc="http://img.b2bpic.net/free-photo/indoor-portrait-joyful-african-woman-with-shaking-hands-stylish-businesswoman-with-elegant-manicure-made-deal-with-young-partners-office_197531-3743.jpg"
|
|
imageAlt="Professional team members"
|
|
mediaAnimation="blur-reveal"
|
|
useInvertedBackground={false}
|
|
/>
|
|
</div>
|
|
|
|
<div id="services" data-section="services">
|
|
<FeatureCardTwentyThree
|
|
title="Our Services"
|
|
description="Comprehensive solutions tailored to meet your local business needs and exceed expectations"
|
|
tag="Services"
|
|
tagIcon={Sparkles}
|
|
tagAnimation="slide-up"
|
|
features={[
|
|
{
|
|
id: "1", title: "Professional Consultation", tags: ["Expert Advice", "Personalized"],
|
|
imageSrc: "http://img.b2bpic.net/free-photo/business-colleagues-attend-online-videocall-meeting-with-shareholder_482257-122906.jpg", imageAlt: "Business consultation service"},
|
|
{
|
|
id: "2", title: "Quality Assurance", tags: ["Verified Quality", "Guaranteed"],
|
|
imageSrc: "http://img.b2bpic.net/free-photo/standard-quality-control-collage-concept_23-2149595827.jpg", imageAlt: "Quality assurance process"},
|
|
{
|
|
id: "3", title: "24/7 Support", tags: ["Always Available", "Responsive"],
|
|
imageSrc: "http://img.b2bpic.net/free-photo/handicapped-young-woman-office_23-2148497262.jpg", imageAlt: "Customer support team"},
|
|
]}
|
|
animationType="slide-up"
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
buttons={[{ text: "View All Services", href: "#" }]}
|
|
buttonAnimation="slide-up"
|
|
/>
|
|
</div>
|
|
|
|
<div id="why-us" data-section="why-us">
|
|
<MetricCardSeven
|
|
title="Why Choose Iwawe Trade"
|
|
description="Proven results and customer satisfaction drive our commitment to excellence"
|
|
tag="Track Record"
|
|
tagIcon={TrendingUp}
|
|
tagAnimation="slide-up"
|
|
metrics={[
|
|
{
|
|
id: "1", value: "500+", title: "Satisfied Customers", items: ["Trusted recommendations", "Repeat business"],
|
|
},
|
|
{
|
|
id: "2", value: "15+", title: "Years Experience", items: ["Industry expertise", "Local knowledge"],
|
|
},
|
|
{
|
|
id: "3", value: "100%", title: "Verified Service", items: ["Quality guaranteed", "Fully certified"],
|
|
},
|
|
]}
|
|
animationType="slide-up"
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
/>
|
|
</div>
|
|
|
|
<div id="testimonials" data-section="testimonials">
|
|
<TestimonialCardOne
|
|
title="What Our Clients Say"
|
|
description="Real feedback from satisfied customers who've experienced our quality service"
|
|
tag="Testimonials"
|
|
tagIcon={Heart}
|
|
tagAnimation="slide-up"
|
|
testimonials={[
|
|
{
|
|
id: "1", name: "Jean Paul", role: "Business Owner", company: "Kigali Enterprises", rating: 5,
|
|
imageSrc: "http://img.b2bpic.net/free-photo/businessman-smiling-looking-camera_23-2148112827.jpg", imageAlt: "Jean Paul testimonial"},
|
|
{
|
|
id: "2", name: "Maria Uwase", role: "Manager", company: "Trade Solutions", rating: 5,
|
|
imageSrc: "http://img.b2bpic.net/free-photo/middle-age-latin-businesswoman-smiling-happy-standing-with-arms-crossed-gesture-city_839833-17431.jpg", imageAlt: "Maria Uwase testimonial"},
|
|
{
|
|
id: "3", name: "Emmanuel Nkusi", role: "Director", company: "Growth Partners", rating: 5,
|
|
imageSrc: "http://img.b2bpic.net/free-photo/young-business-man-listening-music-dancing_23-2148763847.jpg", imageAlt: "Emmanuel Nkusi testimonial"},
|
|
{
|
|
id: "4", name: "Sophie Niyirora", role: "Founder", company: "Local Commerce Ltd", rating: 5,
|
|
imageSrc: "http://img.b2bpic.net/free-photo/young-pretty-woman-outdoors_624325-2662.jpg", imageAlt: "Sophie Niyirora testimonial"},
|
|
]}
|
|
gridVariant="uniform-all-items-equal"
|
|
animationType="slide-up"
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
carouselMode="buttons"
|
|
/>
|
|
</div>
|
|
|
|
<div id="contact-cta" data-section="contact-cta">
|
|
<ContactSplit
|
|
tag="Ready to Get Started?"
|
|
title="Let's Connect Today"
|
|
description="Reach out to us for expert guidance and professional service. We're here to help your business grow."
|
|
tagIcon={Zap}
|
|
tagAnimation="slide-up"
|
|
background={{ variant: "sparkles-gradient" }}
|
|
useInvertedBackground={false}
|
|
imageSrc="http://img.b2bpic.net/free-photo/smiley-women-working-together-office_23-2149337222.jpg"
|
|
imageAlt="Get in touch with us"
|
|
mediaAnimation="blur-reveal"
|
|
mediaPosition="right"
|
|
inputPlaceholder="your@email.com"
|
|
buttonText="Sign Me Up"
|
|
termsText="We respect your privacy. Unsubscribe at any time."
|
|
/>
|
|
</div>
|
|
|
|
<div id="footer" data-section="footer">
|
|
<FooterLogoReveal
|
|
logoText="Iwawe Trade"
|
|
leftLink={{ text: "Privacy Policy", href: "#" }}
|
|
rightLink={{ text: "Contact Us", href: "tel:+250123456789" }}
|
|
/>
|
|
</div>
|
|
</ThemeProvider>
|
|
);
|
|
}
|