import React from "react"; interface FeatureCardProps { title: string; description: string; icon: string; color: "teal" | "purple" | "rose"; } export function FeatureCard({ title, description, icon, color }: FeatureCardProps) { const colorMap = { teal: "#0c8991", purple: "#9D5E9B", rose: "#B55076" }; return (

{title}

{description}

); } export function FeaturesSection() { const features = [ { title: "Balance", description: "Find harmony between body and mind through mindful movement.", icon: "fa-align-center", color: "teal" as const, }, { title: "Strength", description: "Build core power and muscular endurance through controlled exercises.", icon: "fa-dumbbell", color: "purple" as const, }, { title: "Flexibility", description: "Enhance your range of motion and release tension throughout your body.", icon: "fa-wind", color: "rose" as const, }, ]; return (

Core Benefits

Experience the transformative power of Pilates through these foundational principles

{features.map((feature, index) => ( ))}
); }