Files
07190c31-d3c0-4df9-a487-cdb…/src/app/page.tsx
2026-04-04 11:49:09 +00:00

247 lines
6.6 KiB
TypeScript

"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboardRotatedCarousel';
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import PricingCardThree from '@/components/sections/pricing/PricingCardThree';
export default function LandingPage() {
return (
<ThemeProvider
defaultButtonVariant="hover-magnetic"
defaultTextAnimation="reveal-blur"
borderRadius="pill"
contentWidth="smallMedium"
sizing="mediumSizeLargeTitles"
background="floatingGradient"
cardStyle="soft-shadow"
primaryButtonStyle="shadow"
secondaryButtonStyle="glass"
headingFontWeight="bold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{
name: "Dashboard",
id: "/",
},
{
name: "Applications",
id: "/applications",
},
{
name: "Drivers",
id: "/drivers",
},
{
name: "People",
id: "/people",
},
]}
brandName="DVLD"
/>
</div>
<div id="hero" data-section="hero">
<HeroBillboardRotatedCarousel
background={{
variant: "gradient-bars",
}}
title="Welcome to DVLD System"
description="Efficiently manage your vehicle records and driving licenses with our secure administrative portal."
carouselItems={[
{
id: "1",
imageSrc: "http://img.b2bpic.net/free-photo/white-texture-desk-front-blur-public-building_23-2147907249.jpg",
imageAlt: "Government Building 1",
},
{
id: "2",
imageSrc: "http://img.b2bpic.net/free-photo/white-texture-desk-front-blur-public-building_23-2147907249.jpg",
imageAlt: "Government Building 2",
},
{
id: "3",
imageSrc: "http://img.b2bpic.net/free-photo/white-texture-desk-front-blur-public-building_23-2147907249.jpg",
imageAlt: "Government Building 3",
},
{
id: "4",
imageSrc: "http://img.b2bpic.net/free-photo/white-texture-desk-front-blur-public-building_23-2147907249.jpg",
imageAlt: "Government Building 4",
},
{
id: "5",
imageSrc: "http://img.b2bpic.net/free-photo/white-texture-desk-front-blur-public-building_23-2147907249.jpg",
imageAlt: "Government Building 5",
},
{
id: "6",
imageSrc: "http://img.b2bpic.net/free-photo/white-texture-desk-front-blur-public-building_23-2147907249.jpg",
imageAlt: "Government Building 6",
},
]}
/>
</div>
<div id="metrics" data-section="metrics">
<MetricCardEleven
animationType="slide-up"
textboxLayout="split"
useInvertedBackground={false}
metrics={[
{
id: "m1",
value: "12,458",
title: "Total Licenses",
description: "Active license records",
imageSrc: "http://img.b2bpic.net/free-photo/white-texture-desk-front-blur-public-building_23-2147907249.jpg",
},
{
id: "m2",
value: "8,972",
title: "Active Drivers",
description: "Currently valid drivers",
imageSrc: "http://img.b2bpic.net/free-photo/white-texture-desk-front-blur-public-building_23-2147907249.jpg",
},
{
id: "m3",
value: "45",
title: "Pending",
description: "Applications in progress",
imageSrc: "http://img.b2bpic.net/free-photo/white-texture-desk-front-blur-public-building_23-2147907249.jpg",
},
]}
title="System Overview"
description="Key statistics for the current operational period."
/>
</div>
<div id="pricing" data-section="pricing">
<PricingCardThree
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
title="Membership Tiers"
description="Manage institutional access levels."
plans={[
{
id: "p1",
name: "Basic",
price: "$0",
features: [
"Standard Access",
"Basic Reports",
],
buttons: [
{
text: "Select",
href: "#",
},
],
},
{
id: "p2",
name: "Pro",
price: "$99",
features: [
"Advanced Analytics",
"Full API Access",
"Prioritized Support",
],
buttons: [
{
text: "Select",
href: "#",
},
],
},
]}
/>
</div>
<div id="metric" data-section="metric">
<MetricCardFourteen
useInvertedBackground={false}
tag="Performance"
title="System Uptime"
metrics={[
{
id: "u1",
value: "99.9%",
description: "Operational Uptime",
},
{
id: "u2",
value: "5ms",
description: "Query Response",
},
]}
/>
</div>
<div id="contact" data-section="contact">
<ContactCTA
useInvertedBackground={false}
background={{
variant: "plain",
}}
tag="Support"
title="Need Help?"
description="Contact our technical support team for system queries."
buttons={[
{
text: "Contact Us",
href: "/contact",
},
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{
items: [
{
label: "Applications",
href: "/applications",
},
{
label: "Drivers",
href: "/drivers",
},
{
label: "People",
href: "/people",
},
],
},
{
items: [
{
label: "Settings",
href: "#",
},
{
label: "Privacy",
href: "#",
},
],
},
]}
logoText="DVLD"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}