From bb92bb098d3fdb33d7ca3e31c1a208592b42ec08 Mon Sep 17 00:00:00 2001 From: imissher Date: Fri, 7 Jun 2024 15:27:12 +0530 Subject: [PATCH 1/4] Created dummy dropdown component --- app/_components/header/Header.tsx | 60 +++++++++---------- app/_components/navigation/Navigation.tsx | 2 +- .../navigationDropdown/NavigationDropdown.tsx | 4 +- app/_components/searchbar/SearchBar.tsx | 2 +- app/globals.scss | 5 ++ 5 files changed, 38 insertions(+), 35 deletions(-) diff --git a/app/_components/header/Header.tsx b/app/_components/header/Header.tsx index ebf4cd8..2e597e3 100644 --- a/app/_components/header/Header.tsx +++ b/app/_components/header/Header.tsx @@ -22,38 +22,38 @@ const Header:React.FC = ({}) => { return (
-
-
+
+
{/* Hamburger menu */} - - - - {/* Logo */} -
- - - - - -
- {/* Navigation */} - - {/* Search Bar */} - - {/* Login / Signup */} -
- Log in - Sign Up - - - + + -
- {/* Additional Buttons */} -
-
+ {/* Logo */} +
+ + + + + +
+ {/* Navigation */} + + {/* Search Bar */} + + {/* Login / Signup */} +
+ Log in + Sign Up + + + + +
+ {/* Additional Buttons */} +
+
{/* Navigation Dropdown */} diff --git a/app/_components/navigation/Navigation.tsx b/app/_components/navigation/Navigation.tsx index d6ee48b..deb907d 100644 --- a/app/_components/navigation/Navigation.tsx +++ b/app/_components/navigation/Navigation.tsx @@ -37,7 +37,7 @@ export type NavigationProps = { const Navigation:React.FC = ({ display, handleToggle }) => { return ( // Navigation Wrapper -