2 Commits

2 changed files with 84 additions and 35 deletions

View File

@@ -154,41 +154,32 @@ export default function FitForcePage() {
<div id="pricing" data-section="pricing">
<PricingCardThree
title="Investment in Your Health"
description="Flexible training packages designed to fit your goals and budget"
tag="Pricing"
tagIcon={Zap}
textboxLayout="default"
animationType="slide-up"
plans={[
{
id: "1", price: "$120", name: "Single Session", buttons: [
{ text: "Book Now", href: "contact" }
],
features: [
"60-minute one-on-one session", "Form analysis and correction", "Custom exercise selection", "Post-session guidance"
]
},
{
id: "2", badge: "Most Popular", badgeIcon: Sparkles,
price: "$480/mo", name: "4-Week Package", buttons: [
{ text: "Get Started", href: "contact" }
],
features: [
"4 sessions per month", "Personalized program design", "Nutrition guidance", "Progress tracking and adjustments", "Email support between sessions"
]
},
{
id: "3", price: "$1,400", name: "12-Week Transformation", buttons: [
{ text: "Begin Transformation", href: "contact" }
],
features: [
"12 one-on-one sessions", "Complete fitness assessment", "Customized nutrition plan", "Weekly check-ins and adjustments", "Before and after progress photos", "Lifetime program access"
]
}
]}
useInvertedBackground="noInvert"
/>
title="Investment in Your Health"
description="Flexible training packages designed to fit your goals and budget"
tag="Pricing"
tagIcon={Zap}
textboxLayout="default"
animationType="slide-up"
plans={[
{
id: "2",
badge: "Most Popular",
badgeIcon: Sparkles,
price: "$480/mo",
name: "4-Week Package",
buttons: [
{ text: "Get Started", href: "contact" }
],
features: [
"4 sessions per month",
"Personalized program design",
"Nutrition guidance",
"Progress tracking and adjustments"
]
}
]}
useInvertedBackground="noInvert"
/>
</div>
<div id="contact" data-section="contact">

View File

@@ -226,3 +226,61 @@ const TestimonialCardTen = ({
TestimonialCardTen.displayName = "TestimonialCardTen";
export default TestimonialCardTen;
const testimonials = [
{
id: "1",
title: "Amazing Experience",
quote: "I had an amazing experience with this product. It exceeded my expectations.",
name: "John Doe",
role: "Customer",
imageSrc: "https://via.placeholder.com/150",
videoSrc: "https://www.youtube.com/watch?v=dQw4w9WgXcQ",
imageAlt: "John Doe",
videoAriaLabel: "John Doe testimonial video"
},
{
id: "2",
title: "Great Product",
quote: "This product is great. It has improved my daily routine.",
name: "Jane Smith",
role: "Customer",
imageSrc: "https://via.placeholder.com/150",
videoSrc: "https://www.youtube.com/watch?v=dQw4w9WgXcQ",
imageAlt: "Jane Smith",
videoAriaLabel: "Jane Smith testimonial video"
},
{
id: "3",
title: "Highly Recommend",
quote: "I highly recommend this product to everyone. It's a game changer.",
name: "Alice Johnson",
role: "Customer",
imageSrc: "https://via.placeholder.com/150",
videoSrc: "https://www.youtube.com/watch?v=dQw4w9WgXcQ",
imageAlt: "Alice Johnson",
videoAriaLabel: "Alice Johnson testimonial video"
},
{
id: "4",
title: "Best Investment",
quote: "This is the best investment I've made. It's worth every penny.",
name: "Bob Brown",
role: "Customer",
imageSrc: "https://via.placeholder.com/150",
videoSrc: "https://www.youtube.com/watch?v=dQw4w9WgXcQ",
imageAlt: "Bob Brown",
videoAriaLabel: "Bob Brown testimonial video"
},
{
id: "5",
title: "Life Changing",
quote: "This product has changed my life for the better. I'm so grateful.",
name: "Charlie Davis",
role: "Customer",
imageSrc: "https://via.placeholder.com/150",
videoSrc: "https://www.youtube.com/watch?v=dQw4w9WgXcQ",
imageAlt: "Charlie Davis",
videoAriaLabel: "Charlie Davis testimonial video"
}
];