Merge version_2 into main #2

Merged
bender merged 1 commits from version_2 into main 2026-04-16 17:46:15 +00:00

View File

@@ -3,11 +3,11 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven';
import FooterBase from '@/components/sections/footer/FooterBase';
import FooterCard from '@/components/sections/footer/FooterCard';
import HeroCentered from '@/components/sections/hero/HeroCentered';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import ProductCart from '@/components/ecommerce/cart/ProductCart';
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
import ProductCartItem from '@/components/ecommerce/cart/ProductCartItem';
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
export default function LandingPage() {
return (
@@ -77,37 +77,36 @@ export default function LandingPage() {
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardFifteen
useInvertedBackground={true}
testimonial="Switching to MarketFlow doubled our seller onboarding efficiency and simplified our accounting significantly."
rating={5}
author="Sarah Jenkins, Platform Lead"
avatars={[
{ src: "http://img.b2bpic.net/free-photo/smiling-african-businessman-wearing-suit-headshot-vertical-portrait-with-team_1163-3924.jpg", alt: "Sarah" },
{ src: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-work_23-2149097959.jpg", alt: "Client 2" },
{ src: "http://img.b2bpic.net/free-photo/portrait-young-business-man-posing-with-crossed-arms_23-2149206526.jpg", alt: "Client 3" },
{ src: "http://img.b2bpic.net/free-photo/close-up-equity-analyst-working-proprietary-firm-reading-annual-company-reports-evaluate_482257-132953.jpg", alt: "Client 4" },
{ src: "http://img.b2bpic.net/free-photo/portrait-handsome-man-smiling_23-2148729669.jpg", alt: "Client 5" },
<TestimonialCardTwo
title="What Our Partners Say"
description="Join thousands of global brands building on MarketFlow."
textboxLayout="default"
animationType="blur-reveal"
testimonials={[
{ id: "t1", name: "Sarah Jenkins", role: "Platform Lead", testimonial: "Switching to MarketFlow doubled our seller onboarding efficiency and simplified our accounting significantly." },
{ id: "t2", name: "Mark Thompson", role: "Director of Ops", testimonial: "The infrastructure is rock solid. We scaled from zero to 10k orders in three months with ease." }
]}
ratingAnimation="slide-up"
avatarsAnimation="slide-up"
useInvertedBackground={true}
/>
</div>
<div id="ecommerce" data-section="ecommerce">
<ProductCart isOpen={false} onClose={() => {}} items={[]} total="$0" buttons={[]} />
<ProductCartItem
item={{ id: "1", name: "Enterprise Plan", price: "$499", quantity: 1, imageSrc: "http://img.b2bpic.net/free-photo/close-up-equity-analyst-working-proprietary-firm-reading-annual-company-reports-evaluate_482257-132953.jpg" }}
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
columns={[
{ title: "Product", items: [{ label: "Features", href: "/shop" }, { label: "Pricing", href: "/pricing" }, { label: "Marketplace API", href: "/shop" }] },
{ title: "Company", items: [{ label: "About Us", href: "/contact" }, { label: "Contact", href: "/contact" }, { label: "Terms of Service", href: "/contact" }] },
]}
<FooterCard
logoText="MarketFlow"
copyrightText="© 2025 | MarketFlow Systems. All rights reserved."
socialLinks={[
{ icon: undefined, href: "#", ariaLabel: "Twitter" },
{ icon: undefined, href: "#", ariaLabel: "LinkedIn" }
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}