Update src/app/page.tsx

This commit is contained in:
2026-03-05 01:34:11 +00:00
parent 9bd32aa311
commit d9ee73f68e

View File

@@ -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() {
<div id="about" data-section="about">
<SplitAbout
title="Why Choose FemFit?"
titleSegments={[
{ type: "text", content: "Why Choose " },
{ type: "image", src: "http://img.b2bpic.net/free-photo/positive-confident-businesswoman-wearing-formal-suit-standing-with-arms-folded_74855-10328.jpg", alt: "Woman avatar" },
{ type: "text", content: "FemFit?" }
]}
description="We're dedicated to creating a supportive, judgment-free environment where women of all fitness levels can thrive and achieve their goals."
tag="Our Mission"
tagIcon={Heart}
@@ -99,7 +114,7 @@ export default function LandingPage() {
imageAlt="Women in gym"
mediaAnimation="slide-up"
imagePosition="right"
textboxLayout="default"
textboxLayout="inline-image"
useInvertedBackground={true}
buttons={[{ text: "Learn More", href: "#" }]}
buttonAnimation="slide-up"
@@ -109,11 +124,16 @@ export default function LandingPage() {
<div id="features" data-section="features">
<FeatureCardTwelve
title="Our Training Programs"
titleSegments={[
{ type: "text", content: "Our " },
{ type: "image", src: "http://img.b2bpic.net/free-photo/three-young-women-training-gym_1303-16217.jpg", alt: "Training" },
{ type: "text", content: " Programs" }
]}
description="Comprehensive fitness solutions designed specifically for women"
tag="Services"
tagIcon={Sparkles}
tagAnimation="slide-up"
textboxLayout="default"
textboxLayout="inline-image"
useInvertedBackground={false}
features={[
{
@@ -136,11 +156,16 @@ export default function LandingPage() {
<div id="pricing" data-section="pricing">
<PricingCardEight
title="Membership Plans"
titleSegments={[
{ type: "text", content: "Your " },
{ type: "image", src: "http://img.b2bpic.net/free-photo/suntanned-muscular-female-doing-workouts-chest-exercising-machine_613910-7764.jpg", alt: "Membership" },
{ type: "text", content: " Plans" }
]}
description="Choose the perfect plan to start your transformation today"
tag="Pricing"
tagIcon={DollarSign}
tagAnimation="slide-up"
textboxLayout="default"
textboxLayout="inline-image"
useInvertedBackground={true}
animationType="scale-rotate"
plans={[
@@ -166,11 +191,16 @@ export default function LandingPage() {
<div id="testimonials" data-section="testimonials">
<TestimonialCardTwo
title="Success Stories from Our Community"
titleSegments={[
{ type: "text", content: "" },
{ type: "image", src: "http://img.b2bpic.net/free-photo/positive-confident-businesswoman-wearing-formal-suit-standing-with-arms-folded_74855-10328.jpg", alt: "Success" },
{ type: "text", content: " Success Stories" }
]}
description="Real women achieving real results with FemFit"
tag="Testimonials"
tagIcon={Heart}
tagAnimation="slide-up"
textboxLayout="default"
textboxLayout="inline-image"
useInvertedBackground={false}
animationType="depth-3d"
testimonials={[
@@ -247,4 +277,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}