import React, { useState } from 'react'; import { Phone, Calendar, MessageSquare, CheckCircle, Sparkles, Clock, ShieldCheck, ChevronRight, Menu, X, Play, FileText, Lock, MapPin, Mail, Send } from 'lucide-react'; const App = () => { const [isMenuOpen, setIsMenuOpen] = useState(false); const [activeModal, setActiveModal] = useState(null); const services = [ { title: "The 24/7 Voice Desk", benefit: "Never miss a booking again.", desc: "Maya, our serene AI, answers every call instantly. She represents your brand's prestige in every syllable, ensuring your clients feel heard and valued.", icon: }, { title: "Smart Booking Integration", benefit: "Your schedule, perfected.", desc: "Direct sync with Vagaro, GlossGenius, or GHL. Maya checks real-time availability and secures spots without you lifting a finger.", icon: }, { title: "The 'Fill the Gap' Agent", benefit: "Maximize daily revenue.", desc: "When a lead goes cold, AuraFlow gently reaches out with a personalized nudge, keeping your chairs occupied and your revenue consistent.", icon: } ]; const Modal = ({ title, children, onClose }) => (

{title}

{children}
); const handleLegalLink = (e, type) => { e.preventDefault(); setActiveModal(type); }; return (
{/* Navigation */} {/* Hero Section */}
Atlanta's Premier AI Receptionist

Your hands were made
for artistry.

AuraFlow is the AI Front Desk built exclusively for Atlanta's boutique salons and spas. We protect your focus while elevating your client experience.

{/* Services */}
{services.map((service, idx) => (
{service.icon}

{service.title}

{service.benefit}

{service.desc}

))}
{/* Lead Capture Form (SUPER-OPTIMIZED FOR CARRIER BOT) */}

Request Your Demo

Experience AuraFlow LLC quiet excellence firsthand.

e.preventDefault()}>
{/* BOT-FRIENDLY CHECKBOX AREA - FINAL CARRIER PHRASING */}
{/* Footer & Compliance */} {/* Modals */} {activeModal === 'privacy' && ( setActiveModal(null)}>

1. Information Collection: AuraFlow LLC collects names and phone numbers provided via our inquiry forms solely to facilitate AI receptionist demos and service updates.

2. SMS Opt-In Details: We collect SMS opt-in data exclusively through our web form or verbal consent. We do not use third-party lead lists.

3. Use of Data: Data is used to process service requests and send transactional appointment reminders. AuraFlow LLC does not share or sell SMS consent or phone numbers to third parties or affiliates for marketing purposes.

4. Cookies & Tracking: We use minimal session cookies to ensure website functionality. We do not use cross-site tracking or selling of browsing history.

5. Data Security: Your information is stored on encrypted servers with restricted access to ensure the highest level of security for your business data.

6. User Rights: You may request to view, edit, or delete your data at any time by contacting us at (404) 900-3938. You may opt-out of SMS at any time by texting STOP.

)} {activeModal === 'terms' && ( setActiveModal(null)}>

1. Age Restriction: You must be at least 18 years of age to use our services or submit a request via our website.

2. Description of Service: AuraFlow LLC provides AI-driven voice and SMS automation tools for wellness business management. Messages include appointment confirmations and service-related alerts.

3. User Consent: By using this site and submitting a phone number, you agree to receive automated messages. Message frequency depends on your interactions with our service.

4. Opt-out Instructions: You can cancel the SMS service at any time. Just text "STOP" to our number. After you send the SMS message "STOP" to us, we will send you an SMS message to confirm that you have been unsubscribed.

5. Help Instructions: If you are experiencing issues with the messaging program you can reply with the keyword HELP for more assistance.

6. Fees: Carriers are not liable for delayed or undelivered messages. As always, message and data rates may apply for any messages sent to you from us and to us from you.

)}
); }; export default App;