diff --git a/src/components/ColorModeSwitch.tsx b/src/components/ColorModeSwitch.tsx
index 1fa02cc..9782806 100644
--- a/src/components/ColorModeSwitch.tsx
+++ b/src/components/ColorModeSwitch.tsx
@@ -6,7 +6,7 @@ const ColorModeSwitch = () => {
return (
- Dark Mode
+ Dark Mode
)
}
diff --git a/src/components/NavBar.tsx b/src/components/NavBar.tsx
index c7eff32..e42027d 100644
--- a/src/components/NavBar.tsx
+++ b/src/components/NavBar.tsx
@@ -1,11 +1,13 @@
import { HStack, Image } from '@chakra-ui/react'
import logo from '../assets/logo.webp';
import ColorModeSwitch from './ColorModeSwitch';
+import SearchInput from './SearchInput';
const NavBar = () => {
return (
-
+
+
)
diff --git a/src/components/SearchInput.tsx b/src/components/SearchInput.tsx
new file mode 100644
index 0000000..a420d1a
--- /dev/null
+++ b/src/components/SearchInput.tsx
@@ -0,0 +1,13 @@
+import { Input, InputGroup, InputLeftElement } from "@chakra-ui/react";
+import { BsSearch } from "react-icons/bs";
+
+const SearchInput = () => {
+ return (
+
+ } />
+
+
+ );
+};
+
+export default SearchInput;