|
1 | 1 | import React, { useState, useEffect } from 'react'; |
2 | 2 | import { FiChevronDown, FiArrowRight, FiHome, FiBarChart2, FiPieChart } from 'react-icons/fi'; |
3 | 3 | import { AnimatePresence, motion } from 'framer-motion'; |
| 4 | +import { FiUser, FiBriefcase, FiClipboard } from 'react-icons/fi'; |
4 | 5 |
|
5 | 6 | const Navbar = () => { |
6 | 7 | const [selected, setSelected] = useState(null); |
@@ -235,21 +236,25 @@ const VerifyNow = () => ( |
235 | 236 | href="https://github.com/codeaashu/DevDisplay/blob/main/CONTRIBUTING.md#-add-your-profile-on-devdisplay-" |
236 | 237 | className="flex w-full flex-col items-center justify-center py-2 text-neutral-400 transition-colors hover:text-neutral-50" |
237 | 238 | > |
238 | | - <FiHome className="mb-2 text-xl text-indigo-300" /> |
| 239 | + {/* <FiHome className="mb-2 text-xl text-indigo-300" /> */} |
| 240 | + <FiUser className="mb-2 text-xl text-indigo-300" /> |
239 | 241 | <span className="text-xs">Add Profile</span> |
240 | 242 | </a> |
241 | 243 | <a |
242 | 244 | href="https://www.devdisplay.org/PortfolioShowcase" |
243 | 245 | className="flex w-full flex-col items-center justify-center py-2 text-neutral-400 transition-colors hover:text-neutral-50" |
244 | 246 | > |
245 | | - <FiBarChart2 className="mb-2 text-xl text-indigo-300" /> |
| 247 | + {/* <FiBarChart2 className="mb-2 text-xl text-indigo-300" /> */} |
| 248 | + <FiBriefcase className="mb-2 text-xl text-indigo-300" /> |
246 | 249 | <span className="text-xs">Add Portfolio</span> |
247 | 250 | </a> |
248 | 251 | <a |
249 | 252 | href="https://www.devdisplay.org/ProjectShowcase" |
250 | 253 | className="flex w-full flex-col items-center justify-center py-2 text-neutral-400 transition-colors hover:text-neutral-50" |
251 | 254 | > |
252 | | - <FiPieChart className="mb-2 text-xl text-indigo-300" /> |
| 255 | + {/* <FiPieChart className="mb-2 text-xl text-indigo-300" /> */} |
| 256 | + {/* <FiFolder className="mb-2 text-xl text-indigo-300" /> */} |
| 257 | + <FiClipboard className="mb-2 text-xl text-indigo-300" /> |
253 | 258 | <span className="text-xs">Add Projects</span> |
254 | 259 | </a> |
255 | 260 | </div> |
|
0 commit comments