From d9ee73f68e55d53d9b38f9e16bb1527d4283f4d4 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 01:34:11 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 40 +++++++++++++++++++++++++++++++++++----- 1 file changed, 35 insertions(+), 5 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 9429505..afedebe 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -55,6 +55,16 @@ export default function LandingPage() { mediaAnimation="blur-reveal" imagePosition="right" background={{ variant: "glowing-orb" }} + marqueeItems={[ + { type: "image", src: "http://img.b2bpic.net/free-photo/sportswoman-doing-hyperextension-exercise_651396-754.jpg", alt: "Women training" }, + { type: "text", text: "Transform Your Body" }, + { type: "image", src: "http://img.b2bpic.net/free-photo/three-young-women-training-gym_1303-16217.jpg", alt: "Gym training" }, + { type: "text", text: "Build Strength" }, + { type: "image", src: "http://img.b2bpic.net/free-photo/suntanned-muscular-female-doing-workouts-chest-exercising-machine_613910-7764.jpg", alt: "Women fitness" }, + { type: "text", text: "Join Our Community" } + ]} + marqueeSpeed={30} + showMarqueeCard={true} testimonials={[ { name: "Sarah Johnson", handle: "Fitness Enthusiast", testimonial: "Transformed my body in 3 months. The trainers are amazing!", rating: 5, @@ -77,6 +87,11 @@ export default function LandingPage() {
); -} \ No newline at end of file +}