import { useState } from "react"; import { Card } from "@/components/ui/card"; import { motion } from "framer-motion"; const services = [ { title: "Beauty Concierge", description: "Personalized guidance in finding the right provider and service tailored to your needs.", mediaType: "image", mediaSrc: "/media/beauty-concierge.jpg", }, { title: "Recovery Concierge", description: "Complete recovery planning and support from start to finish, including meals, caregiver support, and more.", mediaType: "image", mediaSrc: "/media/recovery-concierge.jpg", }, { title: "Add-On Services", description: "Customize your stay with meals, stage 2 fajas, caregivers, transportation, measurements, before/after photos, massages, body sculpting, and local provider referrals.", mediaType: "image", mediaSrc: "/media/addons.jpg", }, { title: "Aftercare Massages", description: "Detailed post-op massage therapy to aid recovery and enhance results.", mediaType: "video", mediaSrc: "/media/massage-reel.mp4", }, ]; export default function LandingPage() { const [currentSlide, setCurrentSlide] = useState(0); const nextSlide = () => { setCurrentSlide((prev) => (prev + 1) % services.length); }; return (

Recovery Concierge

Premium Airbnb stays with personalized post-op and beauty concierge services.

{services[currentSlide].mediaType === "video" ? (
{/* Booking Section */}

Book Your Stay & Services

Start with your stay and choose from a wide range of add-on services tailored to your recovery and beauty journey.