diff --git a/frontend/src/App.jsx b/frontend/src/App.jsx index b8e7d30..7359f9e 100644 --- a/frontend/src/App.jsx +++ b/frontend/src/App.jsx @@ -9,11 +9,11 @@ import RailwayStations from './Pages/stations'; import NavigationPage from './Pages/navigation'; import './App.css' import BookingPage from './Pages/booking'; -import DMapPage from './Pages/3Dmaps'; +import MapPage from './Pages/3Dmaps'; import SchedulePage from './Pages/schedule'; import NotificationPage from './Pages/notification'; import Contributor from './Pages/contributor'; - +import Chatbot from './components/chatbot'; function App() { @@ -27,10 +27,11 @@ function App() { } /> } /> } /> - } /> + } /> } /> } /> } /> + } /> diff --git a/frontend/src/Pages/Herosection.jsx b/frontend/src/Pages/Herosection.jsx index 8508597..698d9ca 100644 --- a/frontend/src/Pages/Herosection.jsx +++ b/frontend/src/Pages/Herosection.jsx @@ -13,6 +13,7 @@ import { useNavigate } from 'react-router-dom'; import HamburgerMenu from './hamburger'; import contributor from './contributor'; import contributorsvg from '../assets/svg/contributor.svg'; +import chatbotsvg from '../assets/svg/chatbot.svg'; const Herosection = () => { const navigate = useNavigate(); @@ -32,6 +33,21 @@ const Herosection = () => { const BookingCLick = () => { navigate('/Booking'); // Navigates to the login page }; + const MapCLick = () => { + navigate('/3DMap'); // Navigates to the login page + } + const ScheduleCLick = () => { + navigate('/Schedule'); // Navigates to the login page + } + const NotificationCLick = () => { + navigate('/Notification'); // Navigates to the login page + } + const ContributorCLick = () => { + navigate('/contributors'); // Navigates to the login page + } + const ChatbotCLick = () => { + navigate('/chatbot'); // Navigates to the login page + } return ( <> @@ -64,7 +80,7 @@ const Herosection = () => {
-
@@ -74,13 +90,18 @@ const Herosection = () => {

Station

-
-
-
+
+ +
+ +
-

Contributors

- +

Contributors

+ +
+ chatbot +
); diff --git a/frontend/src/Pages/booking.jsx b/frontend/src/Pages/booking.jsx index c6ed904..2c9a495 100644 --- a/frontend/src/Pages/booking.jsx +++ b/frontend/src/Pages/booking.jsx @@ -2,7 +2,16 @@ import React from 'react' const BookingPage = () => { return ( -
Website is in Progress
+ <> +
+ Website is in Progress +
+
+

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.

+
+ ) } diff --git a/frontend/src/Pages/contributor.jsx b/frontend/src/Pages/contributor.jsx index 5c9a557..0435a2e 100644 --- a/frontend/src/Pages/contributor.jsx +++ b/frontend/src/Pages/contributor.jsx @@ -1,10 +1,18 @@ - import React from 'react' const Contributor = () => { return ( -
contributor
- ) + <> +
+ Website is in Progress +
+
+

Welcome to the Contributor Page!

+ + +
+ + ) } export default Contributor; \ No newline at end of file diff --git a/frontend/src/Pages/notification.jsx b/frontend/src/Pages/notification.jsx index a0bca0a..54269cc 100644 --- a/frontend/src/Pages/notification.jsx +++ b/frontend/src/Pages/notification.jsx @@ -2,7 +2,17 @@ import React from 'react' const NotificationPage = () => { return ( -
Making in Progress
+ <> +
+ Website is in Progress +
+
+

Welcome to the Notification Page!

+ + +
+ + ) }