"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} ))} ); }