From 8ad3ef6c560a53e558f613bf2f08f4ccc52d5487 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 9 May 2026 18:05:02 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 05260c7..ed94904 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,13 +9,12 @@ import TestimonialCardFifteen from "@/components/sections/testimonial/Testimonia import FaqSplitMedia from "@/components/sections/faq/FaqSplitMedia"; import ContactText from "@/components/sections/contact/ContactText"; import FooterBase from "@/components/sections/footer/FooterBase"; -import { Globe } from "lucide-react"; const navItems = [{ name: "Home", id: "/" }]; export default function Page() { return ( - + @@ -29,6 +28,7 @@ export default function Page() { { value: "99%", label: "Uptime" }, { value: "24/7", label: "Support" }, ]} + enableKpiAnimation={true} mediaAnimation="slide-up" /> @@ -37,6 +37,9 @@ export default function Page() { title="About Us" description="We focus on quality and innovation." metrics={[{ value: "10 Years", title: "Experience" }]} + useInvertedBackground={false} + mediaAnimation="slide-up" + metricsAnimation="slide-up" />
@@ -44,9 +47,11 @@ export default function Page() { title="Core Features" description="Designed to scale." textboxLayout="default" + useInvertedBackground={false} features={[ { - tag: "Fast", title: "Speed", subtitle: "Optimization", description: "Lightning fast performance."}, + tag: "Fast", title: "Speed", subtitle: "Optimization", description: "Lightning fast performance." + }, ]} />
@@ -56,6 +61,7 @@ export default function Page() { description="Data-driven results." textboxLayout="default" animationType="slide-up" + useInvertedBackground={false} metrics={[ { id: "m1", value: "50%", title: "Growth", items: ["Faster", "Better"] }, ]} @@ -69,6 +75,7 @@ export default function Page() { avatars={[]} ratingAnimation="slide-up" avatarsAnimation="slide-up" + useInvertedBackground={false} />
@@ -77,6 +84,7 @@ export default function Page() { description="Common questions." textboxLayout="default" faqsAnimation="slide-up" + useInvertedBackground={false} faqs={[{ id: "f1", title: "How?", content: "Easy." }]} />
@@ -84,6 +92,7 @@ export default function Page() {