""import React from 'react'; import { Card, CardContent } from '@/components/ui/card'; import { Button } from '@/components/ui/button'; import { Calendar, MapPin, Info, CheckCircle } from 'lucide-react'; const EventBookingPage = () => { return (
{/* Header Section */}

Book Your Private Event

Perfect for birthdays, business events, celebrations, and more. Discover our spaces and secure your date seamlessly.

{/* Image Gallery */}
{['/images/space1.jpg', '/images/space2.jpg', '/images/space3.jpg'].map((src, index) => ( {`Event ))}
{/* Venue Details */}

Venue Details

  • Square Footage: 3,000 sq ft
  • Layout Options: Banquet, Theater, Classroom, Cocktail
  • Capacity: Up to 150 guests
  • Accessibility: Wheelchair accessible
  • Parking: On-site and street parking available
  • Audio/Visual Equipment: Projectors, sound systems, and more
{/* Booking Information */}

Booking Information

  • Hourly, Half-day, and Full-day rates available
  • Flexible setup and teardown options
  • Deposit and cancellation policies apply
  • Access to catering services and event planning support
{/* Availability & Booking Form */}

Check Availability

Select your preferred date and time to view availability and reserve your space for your next event.

{/* FAQs */}

Frequently Asked Questions

  • Can I bring my own vendors?
  • Is there an on-site coordinator for business events?
  • What is the cancellation policy for private celebrations?
  • Are catering and decor services available?
); }; export default EventBookingPage; ""