diff --git a/Client/reasn-client/apps/web/app/Nav.tsx b/Client/reasn-client/apps/web/app/Nav.tsx
deleted file mode 100644
index 6081899a..00000000
--- a/Client/reasn-client/apps/web/app/Nav.tsx
+++ /dev/null
@@ -1,39 +0,0 @@
-import React from "react";
-import styles from './Nav.module.css';
-
-
-type Link = {
- label: string
- href: string
-};
-
-const Nav = () => {
-return(
-
-
-
-
-
-)
-}
-export default Nav
\ No newline at end of file
diff --git a/Client/reasn-client/apps/web/app/page.tsx b/Client/reasn-client/apps/web/app/page.tsx
index 5c0f81db..92b3d946 100644
--- a/Client/reasn-client/apps/web/app/page.tsx
+++ b/Client/reasn-client/apps/web/app/page.tsx
@@ -1,12 +1,13 @@
import React from 'react';
import styles from "../styles/index.module.css";
-import Nav from './Nav';
+import Nav from "../components/navbar";
+import Footer from '../components/footer';
export default function Web() {
return (
<>
-
+
>
)
}
\ No newline at end of file
diff --git a/Client/reasn-client/apps/web/components/footer.tsx b/Client/reasn-client/apps/web/components/footer.tsx
new file mode 100644
index 00000000..e5c51f37
--- /dev/null
+++ b/Client/reasn-client/apps/web/components/footer.tsx
@@ -0,0 +1,28 @@
+import React from "react";
+
+const Footer = () => {
+return(
+
+)
+}
+export default Footer
\ No newline at end of file
diff --git a/Client/reasn-client/apps/web/components/navbar.tsx b/Client/reasn-client/apps/web/components/navbar.tsx
new file mode 100644
index 00000000..b4b2b5bb
--- /dev/null
+++ b/Client/reasn-client/apps/web/components/navbar.tsx
@@ -0,0 +1,24 @@
+import React from "react";
+
+const Nav = () => {
+return(
+
+
+
+)
+}
+export default Nav
\ No newline at end of file