From 54c36a32c8926f667ac4176b4af10a7488d02a19 Mon Sep 17 00:00:00 2001 From: Apurv Sonawane Date: Wed, 3 Jul 2024 15:56:14 +0530 Subject: [PATCH] fixed navbar Signed-off-by: Apurv Sonawane --- .../src/components/NavTopSection.jsx | 19 --------------- react-frontend/src/components/Navbar.jsx | 23 +++++++++++++------ 2 files changed, 16 insertions(+), 26 deletions(-) delete mode 100644 react-frontend/src/components/NavTopSection.jsx diff --git a/react-frontend/src/components/NavTopSection.jsx b/react-frontend/src/components/NavTopSection.jsx deleted file mode 100644 index 7b5651d..0000000 --- a/react-frontend/src/components/NavTopSection.jsx +++ /dev/null @@ -1,19 +0,0 @@ -import sdtLogo from "../images/sdt-logo.png"; - -function NavTopSection() { - return ( -
-
- image12 -
-
-
About
-
Blog
-
Contact
-
Documentation
-
-
- ); -} - -export default NavTopSection; \ No newline at end of file diff --git a/react-frontend/src/components/Navbar.jsx b/react-frontend/src/components/Navbar.jsx index 87e10a8..47ab6af 100644 --- a/react-frontend/src/components/Navbar.jsx +++ b/react-frontend/src/components/Navbar.jsx @@ -1,13 +1,22 @@ -import NavTopSection from "./NavTopSection"; -import SearchBar from "./SearchBar"; +import React from 'react'; +import { Link } from 'react-router-dom' +import sdtLogo from "../images/sdt-logo.png"; -function Navbar({ setResults }) { +function NavBar() { return ( -
- - +
+
+ Software Discovery Tool Logo +
+
+ Home + FAQ + Blog + Contact + Documentation +
); } -export default Navbar; +export default NavBar; \ No newline at end of file