"use client" import type React from "react" import Image from "next/image" import { Button } from "@/components/ui/button" import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card" import { Input } from "@/components/ui/input" import { Label } from "@/components/ui/label" import { Textarea } from "@/components/ui/textarea" import { Badge } from "@/components/ui/badge" import { Clock, Mail, MapPin, Phone } from "lucide-react" import { useState } from "react" import ClinicSenseButton from "@/components/clinicsense-button" export default function ContactPage() { const [formData, setFormData] = useState({ name: "", email: "", phone: "", service: "", message: "", }) const handleSubmit = (e: React.FormEvent) => { e.preventDefault() // Handle form submission here console.log("Form submitted:", formData) } const handleChange = (e: React.ChangeEvent) => { setFormData({ ...formData, [e.target.name]: e.target.value, }) } return (
{/* Hero Section */}
Get in Touch

Contact Us

"A place to unwind, a place to heal, a place to grow"

Ready to experience boutique wellness? Let's chat about creating your personalized sanctuary for healing and self-care.

{/* Clinic Images Section */}
Ebb'nFlow Therapeutics clinic exterior

Our Welcoming Exterior

Distinctive yellow entrance door

Find Our Yellow Door

{/* Contact Form & Info Section */}
{/* Contact Form */} Send Us a Message Fill out the form below and we'll get back to you within 24 hours.