From e0b5c6f1d5ca263dc71409599fefa1086bbd24b4 Mon Sep 17 00:00:00 2001 From: Ryana May Que Date: Fri, 6 Sep 2024 13:52:24 +0800 Subject: [PATCH] improve: theming --- src/components/NavigationBar.tsx | 11 ++- src/components/SearchBar.tsx | 160 +++++++++++++++++++------------ src/components/ThemeSwitcher.tsx | 7 +- src/styles/globals.css | 3 + 4 files changed, 113 insertions(+), 68 deletions(-) diff --git a/src/components/NavigationBar.tsx b/src/components/NavigationBar.tsx index 9136bc8..6c5b286 100644 --- a/src/components/NavigationBar.tsx +++ b/src/components/NavigationBar.tsx @@ -2,6 +2,9 @@ import { useState, useEffect } from 'react' import SearchBar from './SearchBar' import Link from 'next/link' import ThemeSwitcher from './ThemeSwitcher' +import { IoSparkles } from 'react-icons/io5' +import { FaHamburger } from 'react-icons/fa' +import { GiHamburgerMenu } from 'react-icons/gi' interface NavigationBarProps { onSelectSymbol: (symbol: string) => void @@ -21,9 +24,9 @@ const NavigationBar = ({ onSelectSymbol }: NavigationBarProps) => { } return ( -