Update src/app/page.tsx

This commit is contained in:
2026-04-15 07:38:23 +00:00
parent 0e1c54b38a
commit e2091e116a

View File

@@ -10,21 +10,21 @@ import HeroOverlayTestimonial from '@/components/sections/hero/HeroOverlayTestim
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
import MediaAbout from '@/components/sections/about/MediaAbout';
import { Sparkles, CheckCircle, ArrowRight, ShieldCheck, Mail, Phone } from "lucide-react";
import { Sparkles, CheckCircle, ShieldCheck } from "lucide-react";
export default function LandingPage() {
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
borderRadius="pill"
contentWidth="medium"
sizing="medium"
background="noiseDiagonalGradient"
cardStyle="glass-depth"
primaryButtonStyle="primary-glow"
secondaryButtonStyle="glass"
headingFontWeight="semibold"
background="floatingGradient"
cardStyle="gradient-mesh"
primaryButtonStyle="radial-glow"
secondaryButtonStyle="layered"
headingFontWeight="bold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
@@ -78,7 +78,7 @@ export default function LandingPage() {
]}
animationType="blur-reveal"
textboxLayout="split-description"
useInvertedBackground={false}
useInvertedBackground={true}
/>
</div>
@@ -91,7 +91,7 @@ export default function LandingPage() {
{ id: "2", name: "Local Cafe", imageSrc: "https://img.b2bpic.net/free-photo/coffee-business-owner-concept-portrait-happy-young-bearded-caucasian-barista-apron-with-confident-looking-smiling-camera-coffee-shop-counter_1258-103925.jpg" }
]}
cardAnimation="slide-up"
useInvertedBackground={false}
useInvertedBackground={true}
/>
</div>
@@ -105,7 +105,7 @@ export default function LandingPage() {
]}
faqsAnimation="slide-up"
textboxLayout="split"
useInvertedBackground={false}
useInvertedBackground={true}
/>
</div>
@@ -114,8 +114,8 @@ export default function LandingPage() {
tag="Contact"
title="Reach Out to Us"
description="Whether it's cleaning services or supply chain assistance, we're ready to serve."
background={{ variant: "gradient-bars" }}
useInvertedBackground={false}
background={{ variant: "sparkles-gradient" }}
useInvertedBackground={true}
/>
</div>
@@ -129,4 +129,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}