diff --git a/app/_common/button/Button.tsx b/app/_common/button/Button.tsx index f4641ff..f93df56 100644 --- a/app/_common/button/Button.tsx +++ b/app/_common/button/Button.tsx @@ -12,7 +12,7 @@ export type ButtonProps = { const Button:React.FC = ({ text, type }) => { return ( - { text } + { text } ) } diff --git a/app/_common/icons/Icons.tsx b/app/_common/icons/Icons.tsx new file mode 100644 index 0000000..ed159d1 --- /dev/null +++ b/app/_common/icons/Icons.tsx @@ -0,0 +1,35 @@ +export const TrendingIcon:React.FC<{}> = () => { + return + + +} + +export const WebsitesIcon:React.FC<{}> = () => { + return + + +} + +export const TechnologiesIcon:React.FC<{}> = () => { + return + + +} + +export const CollectionsIcon:React.FC<{}> = () => { + return + + +} + +export const UIElementsIcon:React.FC<{}> = () => { + return + + +} + +export const BlogIcon:React.FC<{}> = () => { + return + + +} \ No newline at end of file diff --git a/app/_components/header/Header.tsx b/app/_components/header/Header.tsx index ebf4cd8..c4a2b3b 100644 --- a/app/_components/header/Header.tsx +++ b/app/_components/header/Header.tsx @@ -23,37 +23,37 @@ 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 -