diff --git a/frontend/index.html b/frontend/index.html
index 0c589ec..19012b5 100644
--- a/frontend/index.html
+++ b/frontend/index.html
@@ -4,7 +4,7 @@
-
Vite + React
+ Talent Platform
diff --git a/frontend/src/App.jsx b/frontend/src/App.jsx
index 745b42e..28c4631 100644
--- a/frontend/src/App.jsx
+++ b/frontend/src/App.jsx
@@ -15,7 +15,11 @@ const App = () => {
<>
+ {/* Navbar Component */}
+
+ {/* Routing between pages */}
+
} />
} />
diff --git a/frontend/src/components/Dropdown.jsx b/frontend/src/components/Dropdown.jsx
index 8a59de1..3e40df3 100644
--- a/frontend/src/components/Dropdown.jsx
+++ b/frontend/src/components/Dropdown.jsx
@@ -1,13 +1,18 @@
-
+import React ,{useState}from "react";
+import "tailwindcss/tailwind.css";
const Dropdown = () => {
+ const [visible, setVisible] = useState(false);
+
+ const handleClick = () => { setVisible(!visible); };
+
return (
-