diff --git a/frontend/src/Pages/booking.jsx b/frontend/src/Pages/booking.jsx index 2c9a495..42a5f26 100644 --- a/frontend/src/Pages/booking.jsx +++ b/frontend/src/Pages/booking.jsx @@ -1,20 +1,111 @@ -import React from 'react' +import React, { useState } from 'react'; +import { IoCalendarOutline } from 'react-icons/io5'; +import { IoArrowBack } from 'react-icons/io5'; +import { useNavigate } from 'react-router-dom'; const BookingPage = () => { + const [station, setStation] = useState(''); + const [date, setDate] = useState(''); + const navigate = useNavigate(); + + const services = [ + { + id: 'cloak', + name: 'Cloak Room Booking', + availability: 20 + }, + { + id: 'wheelchair', + name: 'Wheel Chair Booking', + availability: 5 + }, + { + id: 'coolie', + name: 'Coolie Booking', + availability: 12 + } + ]; + return ( - <> -
Welcome to the Booking Page!
-Here you will be able to book your tickets for coolie booking , wheelchair booking and cloack room booking and manage your reservations.
-Stay tuned for more updates.
-