Files
2026-03-31 17:13:46 +00:00

233 lines
6.8 KiB
TypeScript

"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import HeroLogo from '@/components/sections/hero/HeroLogo';
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
import { Briefcase, Headphones, Server, Zap } from "lucide-react";
export default function LandingPage() {
return (
<ThemeProvider
defaultButtonVariant="shift-hover"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
contentWidth="mediumLarge"
sizing="medium"
background="none"
cardStyle="inset"
primaryButtonStyle="gradient"
secondaryButtonStyle="radial-glow"
headingFontWeight="medium"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{
name: "Home",
id: "hero",
},
{
name: "Features",
id: "features",
},
{
name: "Testimonials",
id: "testimonials",
},
{
name: "Contact",
id: "contact",
},
]}
brandName="BusinessPro"
/>
</div>
<div id="hero" data-section="hero">
<HeroLogo
logoText="Empowering Your Success"
description="We deliver professional solutions designed to accelerate growth and maximize your efficiency. Partner with us today for lasting impact."
buttons={[
{
text: "Get Started",
href: "#contact",
},
]}
imageSrc="http://img.b2bpic.net/free-photo/group-businesspeople-meeting_23-2147923288.jpg?_wi=1"
/>
</div>
<div id="features" data-section="features">
<FeatureCardTwelve
animationType="slide-up"
textboxLayout="split"
useInvertedBackground={true}
features={[
{
id: "f1",
label: "Reliability",
title: "Dependable Support",
items: [
"24/7 dedicated help",
"Proactive maintenance",
"System uptime monitoring",
],
},
{
id: "f2",
label: "Growth",
title: "Scalable Infrastructure",
items: [
"Cloud-native platform",
"Modular scaling options",
"High availability design",
],
},
{
id: "f3",
label: "Innovation",
title: "Advanced Technology",
items: [
"State-of-the-art tools",
"AI-driven insights",
"API first approach",
],
},
]}
title="Why Choose Us"
description="Our features are built to solve real-world problems for modern businesses."
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardFifteen
useInvertedBackground={false}
testimonial="Working with this team has completely transformed our operational efficiency. Their support is unparalleled in the industry."
rating={5}
author="Sarah Miller, Growth Director at InnovateCo"
avatars={[
{
src: "http://img.b2bpic.net/free-photo/close-up-man-with-bright-smile_23-2148563438.jpg",
alt: "Sarah Miller",
},
{
src: "http://img.b2bpic.net/free-photo/joyful-woman-black-jacket-liking-lip-posing-isolated-background-charming-lady-dark-suit-smiling-white-backdrop_197531-18516.jpg",
alt: "John Smith",
},
{
src: "http://img.b2bpic.net/free-photo/alone-specialist-handsome-daydreaming-collar_1262-870.jpg",
alt: "Elena Rodriguez",
},
{
src: "http://img.b2bpic.net/free-photo/beautiful-corporate-woman-looks-dreamy-smiles-stands-outside-street-leans-her-head-hands-d_1258-123449.jpg",
alt: "Marcus Lee",
},
{
src: "http://img.b2bpic.net/free-photo/close-up-man-with-bright-smile_23-2148563438.jpg",
alt: "Additional Professional",
},
]}
ratingAnimation="slide-up"
avatarsAnimation="slide-up"
/>
</div>
<div id="metric" data-section="metric">
<MetricCardOne
animationType="slide-up"
textboxLayout="default"
gridVariant="uniform-all-items-equal"
useInvertedBackground={false}
title="Impact at a Glance"
description="Driven by data, our solutions empower businesses to reach their full potential through measurable growth and optimized workflows."
metrics={[
{
id: "m1",
value: "99.9%",
title: "Uptime",
description: "Ensuring your business never misses a beat.",
icon: Server,
},
{
id: "m2",
value: "150+",
title: "Projects",
description: "Successfully completed for global clients.",
icon: Briefcase,
},
{
id: "m3",
value: "2x",
title: "Efficiency",
description: "Average increase in operational speed.",
icon: Zap,
},
{
id: "m4",
value: "24/7",
title: "Support",
description: "Always here to help you grow.",
icon: Headphones,
},
]}
/>
</div>
<div id="contact" data-section="contact">
<ContactSplit
useInvertedBackground={true}
background={{
variant: "plain",
}}
title="Let's Build Something Great"
description="Ready to get started? Reach out to us today to discuss your next business project."
mediaAnimation="slide-up"
tag="Contact Us"
imageSrc="http://img.b2bpic.net/free-photo/group-businesspeople-meeting_23-2147923288.jpg?_wi=2"
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseCard
columns={[
{
title: "Product",
items: [
{
label: "Features",
href: "#features",
},
{
label: "Pricing",
href: "#",
},
],
},
{
title: "Company",
items: [
{
label: "About Us",
href: "#",
},
{
label: "Contact",
href: "#contact",
},
],
},
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}