From dc4ef91a41ce3c237829b5e67e9c24076732f8e3 Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Sun, 18 Jan 2026 18:27:12 +0000 Subject: [PATCH] Update components/services.tsx --- components/services.tsx | 67 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 components/services.tsx diff --git a/components/services.tsx b/components/services.tsx new file mode 100644 index 0000000..dd00f92 --- /dev/null +++ b/components/services.tsx @@ -0,0 +1,67 @@ +"use client"; +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 { Sparkles, Scissors, Heart, Star, Zap, Smile } from "lucide-react"; + +const services = [ + { + title: "Advanced Facials", + description: "Customized skin treatments including hydrafacials, anti-aging, and deep cleansing for a radiant Miami glow.", + icon: , + }, + { + title: "Expert Waxing", + description: "Professional hair removal services for smooth, long-lasting results using premium, gentle waxes.", + icon: , + }, + { + title: "Body Treatments", + description: "Rejuvenating body scrubs and wraps designed to detoxify and hydrate your skin.", + icon: , + }, + { + title: "Manicure & Pedicure", + description: "Luxury nail care with high-quality polishes and relaxing spa techniques for perfect hands and feet.", + icon: , + }, + { + title: "Skin Care Consultation", + description: "Personalized analysis and product recommendations from our licensed estheticians.", + icon: , + }, + { + title: "Lash & Brow", + description: "Enhance your natural beauty with professional lash lifts, tints, and brow shaping.", + icon: , + }, +]; + +export function Services() { + return ( +
+ +
+ Our Signature Services + + Tailored beauty solutions designed to make you look and feel your absolute best. + +
+
+ {services.map((service, index) => ( + + +
{service.icon}
+ {service.title} + + {service.description} + +
+
+ ))} +
+
+
+ ); +}