"use client";
import { useState } from "react";
import { Button } from "@/components/ui/button";
import { Input } from "@/components/ui/input";
import {
Select,
SelectContent,
SelectItem,
SelectTrigger,
SelectValue,
} from "@/components/ui/select";
import {
Calendar,
Clock,
User,
Mail,
Phone,
MessageSquare,
ArrowLeft,
Heart,
CheckCircle2,
} from "lucide-react";
import Link from "next/link";
import Image from "next/image";
import { useRouter } from "next/navigation";
export default function BookNowPage() {
const router = useRouter();
const [formData, setFormData] = useState({
firstName: "",
lastName: "",
email: "",
phone: "",
appointmentType: "",
preferredDate: "",
preferredTime: "",
message: "",
});
const handleSubmit = (e: React.FormEvent) => {
e.preventDefault();
// Handle form submission
console.log("Form submitted:", formData);
// You can add navigation or API call here
};
const handleChange = (field: string, value: string) => {
setFormData((prev) => ({ ...prev, [field]: value }));
};
return (
{/* Main Content */}
{/* Left Side - Image (Fixed) */}
{/* Logo at Top */}
{/* Overlay Content - Lower Position */}
Begin Your Journey to Wellness
Take the first step towards healing and growth. Our compassionate team is here to support you every step of the way.
{/* Features List */}
Safe and confidential environment
Experienced licensed therapists
Personalized treatment plans
Flexible scheduling options
{/* Right Side - Form (Scrollable) */}
{/* Page Header */}
Book Your Appointment
Fill out the form below and we'll get back to you to confirm your appointment
{/* Booking Form */}
{/* Contact Information */}
);
}