import { Container } from "@/components/container"; import { Heading } from "@/components/heading"; import { Subheading } from "@/components/subheading"; import { Card, CardHeader, CardTitle, CardDescription } from "@/components/ui/card"; import { Dumbbell, Timer, Target, Users } from "lucide-react"; const features = [ { title: "Personal Training", description: "One-on-one sessions designed specifically for your fitness level and goals.", icon: , }, { title: "Performance Coaching", description: "Specialized training for athletes looking to take their game to the next level.", icon: , }, { title: "Group Sessions", description: "High-energy group workouts that keep you motivated and accountable.", icon: , }, { title: "Flexible Scheduling", description: "We work around your busy Miami lifestyle. Morning, noon, or night.", icon: , }, ]; export function Features() { return (
ELITE SERVICES Tailored programs designed for the Miami lifestyle. High performance, zero excuses.
{features.map((feature, index) => (
{feature.icon}
{feature.title} {feature.description}
))}
); }