129 lines
3.4 KiB
TypeScript
129 lines
3.4 KiB
TypeScript
"use client";
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import ReactLenis from "lenis/react";
|
|
import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve';
|
|
import FeatureCardTwentySeven from '@/components/sections/feature/FeatureCardTwentySeven';
|
|
import FooterCard from '@/components/sections/footer/FooterCard';
|
|
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
|
|
|
export default function LandingPage() {
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="bounce-effect"
|
|
defaultTextAnimation="entrance-slide"
|
|
borderRadius="pill"
|
|
contentWidth="small"
|
|
sizing="largeSmall"
|
|
background="blurBottom"
|
|
cardStyle="inset"
|
|
primaryButtonStyle="flat"
|
|
secondaryButtonStyle="solid"
|
|
headingFontWeight="extrabold"
|
|
>
|
|
<ReactLenis root>
|
|
<div id="nav" data-section="nav">
|
|
<NavbarStyleFullscreen
|
|
navItems={[
|
|
{
|
|
name: "Home",
|
|
id: "/",
|
|
},
|
|
{
|
|
name: "Features",
|
|
id: "/features",
|
|
},
|
|
{
|
|
name: "Demo",
|
|
id: "/demo",
|
|
},
|
|
{
|
|
name: "Pricing",
|
|
id: "/pricing",
|
|
},
|
|
]}
|
|
brandName="MarketBuilder"
|
|
/>
|
|
</div>
|
|
|
|
<div id="features-list" data-section="features-list">
|
|
<FeatureCardTwelve
|
|
animationType="slide-up"
|
|
textboxLayout="split"
|
|
useInvertedBackground={true}
|
|
features={[
|
|
{
|
|
id: "f1",
|
|
label: "Vendors",
|
|
title: "Easy Onboarding",
|
|
items: [
|
|
"KYC verification",
|
|
"Automated payouts",
|
|
"Custom dashboards",
|
|
],
|
|
},
|
|
{
|
|
id: "f2",
|
|
label: "Payments",
|
|
title: "Secure Payments",
|
|
items: [
|
|
"Stripe integration",
|
|
"Commission splitting",
|
|
"Global currency support",
|
|
],
|
|
},
|
|
{
|
|
id: "f3",
|
|
label: "Manage",
|
|
title: "Advanced Analytics",
|
|
items: [
|
|
"Sales trends",
|
|
"Vendor activity",
|
|
"Inventory alerts",
|
|
],
|
|
},
|
|
]}
|
|
title="Powerful Features for Modern Marketplaces"
|
|
description="All the tools you need to build a global platform."
|
|
/>
|
|
</div>
|
|
|
|
<div id="feature" data-section="feature">
|
|
<FeatureCardTwentySeven
|
|
animationType="slide-up"
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
title="Advanced Features"
|
|
description="Dive deeper into our capabilities."
|
|
features={[
|
|
{
|
|
id: "f1",
|
|
title: "Real-time Sync",
|
|
descriptions: [
|
|
"Instant data updates",
|
|
],
|
|
imageSrc: "http://img.b2bpic.net/free-photo/mobile-shopping-app_23-2151952988.jpg",
|
|
},
|
|
{
|
|
id: "f2",
|
|
title: "Global CDN",
|
|
descriptions: [
|
|
"Fast assets delivery",
|
|
],
|
|
imageSrc: "http://img.b2bpic.net/free-photo/parcels-box-cardboard-boxes-smartphone-online-delivery-transportation-logistics-concept-pink-background-3d-rendering-illustration_56104-1291.jpg",
|
|
},
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="footer" data-section="footer">
|
|
<FooterCard
|
|
logoText="MarketBuilder"
|
|
copyrightText="© 2025 MarketBuilder SaaS"
|
|
/>
|
|
</div>
|
|
</ReactLenis>
|
|
</ThemeProvider>
|
|
);
|
|
}
|