Merge version_2 into main #2

Merged
bender merged 1 commits from version_2 into main 2026-04-22 21:44:18 +00:00

View File

@@ -2,15 +2,15 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import FaqDouble from '@/components/sections/faq/FaqDouble';
import FeatureHoverPattern from '@/components/sections/feature/featureHoverPattern/FeatureHoverPattern';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import HeroBillboard from '@/components/sections/hero/HeroBillboard';
import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
import { Code, Database, Sparkles } from "lucide-react";
export default function LandingPage() {
@@ -179,21 +179,18 @@ export default function LandingPage() {
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardSix
<TestimonialCardSixteen
animationType="slide-up"
textboxLayout="split"
useInvertedBackground={true}
kpiItems={[
{ label: "Global Scale", value: "35+" },
{ label: "AI Performance", value: "98%" },
{ label: "Support Speed", value: "24/7" }
]}
testimonials={[
{
id: "t1", name: "Sarah Chen", handle: "@sarahchen", testimonial: "Sidekick changed how we run our operations. Proactive insights are a game changer.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-stylish-pretty-young-woman-look-professional-cross-hands-chest-smiling-confident-camera-wear-glasses-standing-near-reception-office-hall-discuss-business_197531-22165.jpg"},
{
id: "t2", name: "Michael Ross", handle: "@mross", testimonial: "The new POS Hub is the most reliable hardware we've ever used in-store.", imageSrc: "http://img.b2bpic.net/free-photo/confident-businessman_53876-15997.jpg"},
{
id: "t3", name: "Emily Doe", handle: "@emilyd", testimonial: "Shopify Collective opening in 35 countries helped us reach customers globally.", imageSrc: "http://img.b2bpic.net/free-photo/closeup-confident-asian-man-with-arms-crossed_1262-884.jpg"},
{
id: "t4", name: "Marcus Vane", handle: "@mvane", testimonial: "A/B testing with Rollouts allowed us to optimize our checkout flow perfectly.", imageSrc: "http://img.b2bpic.net/free-photo/videographer-smiling-camera-working-computer-editing-video-footage-audio-app-sitting-mo_482257-2649.jpg"},
{
id: "t5", name: "Jane Smith", handle: "@jsmith", testimonial: "The new financial flex account from Shopify Capital is brilliant for scaling.", imageSrc: "http://img.b2bpic.net/free-photo/person-shopping-second-hand-market_23-2149353704.jpg"},
{ id: "t1", name: "Sarah Chen", role: "Founder", company: "TechCorp", rating: 5, testimonial: "Sidekick changed how we run our operations. Proactive insights are a game changer.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-stylish-pretty-young-woman-look-professional-cross-hands-chest-smiling-confident-camera-wear-glasses-standing-near-reception-office-hall-discuss-business_197531-22165.jpg" },
{ id: "t2", name: "Michael Ross", role: "Director", company: "RetailInc", rating: 5, testimonial: "The new POS Hub is the most reliable hardware we've ever used in-store.", imageSrc: "http://img.b2bpic.net/free-photo/confident-businessman_53876-15997.jpg" }
]}
title="Trusted by Commerce Leaders"
description="Join thousands of merchants growing their business with our winter updates."
@@ -201,7 +198,7 @@ export default function LandingPage() {
</div>
<div id="faq" data-section="faq">
<FaqSplitMedia
<FaqDouble
textboxLayout="split"
useInvertedBackground={false}
faqs={[
@@ -212,40 +209,17 @@ export default function LandingPage() {
{
id: "q3", title: "Is POS hardware compatible with iPad?", content: "Yes, it is fully compatible with iPad via MFi authentication."},
]}
imageSrc="http://img.b2bpic.net/free-photo/call-center-agent-uses-artificial-intelligence-enhance-customer-interactions_482257-126113.jpg"
mediaAnimation="slide-up"
title="Frequently Asked Questions"
description="Have questions about our winter product updates? Get answers here."
faqsAnimation="slide-up"
imageAlt="customer support help desk"
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseReveal
<FooterLogoReveal
logoText="Shopify"
columns={[
{
title: "Product", items: [
{
label: "Sidekick", href: "#"},
{
label: "Retail", href: "#"},
{
label: "Checkout", href: "#"},
],
},
{
title: "Company", items: [
{
label: "About Us", href: "#"},
{
label: "Careers", href: "#"},
{
label: "Terms of Service", href: "#"},
],
},
]}
leftLink={{ text: "Privacy Policy", href: "#" }}
rightLink={{ text: "Terms of Service", href: "#" }}
/>
</div>
</ReactLenis>