diff --git a/frontend/src/App.jsx b/frontend/src/App.jsx
index daaf0f2..ec92202 100644
--- a/frontend/src/App.jsx
+++ b/frontend/src/App.jsx
@@ -10,6 +10,7 @@ import TermsOfService from './Components/common/Footer/LegalSection/TermsOfServi
import CreateMeeting from './Pages/Create-Meeting-Page';
import MeetingDetails from './Components/Pages/Meeting-Page/Meeting-Details';
import MeetingAvailability from './Components/Pages/Meeting-Page/Meeting-Availability';
+import ErrorPage from './Pages/Error-Page';
import Navbar from './Components/Pages/Landing-Page/Navbar';
const App = () => {
@@ -38,6 +39,8 @@ const App = () => {
path='/meetingDetails/meetingAvailaibility'
element={}
/>
+ {/* Error */}
+ } />
diff --git a/frontend/src/Components/Pages/Error-Page/ErrorPage.jsx b/frontend/src/Components/Pages/Error-Page/ErrorPage.jsx
new file mode 100644
index 0000000..58b5faf
--- /dev/null
+++ b/frontend/src/Components/Pages/Error-Page/ErrorPage.jsx
@@ -0,0 +1,25 @@
+import React from 'react';
+import backgroundImage from '../../../assets/Landing-Page-Assets/ErrorImage.png';
+
+const Error = () => {
+ return (
+
+ );
+};
+
+export default Error;
diff --git a/frontend/src/Pages/Error-Page.jsx b/frontend/src/Pages/Error-Page.jsx
new file mode 100644
index 0000000..1703152
--- /dev/null
+++ b/frontend/src/Pages/Error-Page.jsx
@@ -0,0 +1,12 @@
+import React from 'react';
+import ErrorPageContainer from '../Components/Pages/Error-Page/ErrorPage';
+
+const ErrorPage = () => {
+ return (
+
+
+
+ );
+};
+
+export default ErrorPage;
diff --git a/frontend/src/assets/Landing-Page-Assets/ErrorImage.png b/frontend/src/assets/Landing-Page-Assets/ErrorImage.png
new file mode 100644
index 0000000..6ff5a44
Binary files /dev/null and b/frontend/src/assets/Landing-Page-Assets/ErrorImage.png differ