From 96584bf4952fea1c304a43b6695ca37a120e6739 Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Fri, 16 Jan 2026 16:41:48 +0000 Subject: [PATCH] Update components/features.tsx --- components/features.tsx | 57 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 components/features.tsx diff --git a/components/features.tsx b/components/features.tsx new file mode 100644 index 0000000..881d7c4 --- /dev/null +++ b/components/features.tsx @@ -0,0 +1,57 @@ +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} + +
+
+ ))} +
+
+
+ ); +}