File tree Expand file tree Collapse file tree 1 file changed +38
-0
lines changed Expand file tree Collapse file tree 1 file changed +38
-0
lines changed Original file line number Diff line number Diff line change 1+ import React from "react" ;
2+
3+ function Navbar ( ) {
4+ return (
5+ < div >
6+ < nav className = "shadow-sm fixed w-full z-10 bg-transparent m-0" >
7+ < div className = "w-full" style = { { background : "#1a1a1abf" } } >
8+ < div className = "flex items-center h-16 w-full justify-center" >
9+ < div className = "hidden md:block " >
10+ < div className = "ml-10 flex items-baseline space-x-4 bg-transparent" >
11+ < a className = "cursor-pointer text-white font-semibold px-3 py-2 text-md" >
12+ Resources
13+ </ a >
14+ < a className = "cursor-pointer text-white font-semibold px-3 py-2 text-md" >
15+ Pages
16+ </ a >
17+ < a className = "cursor-pointer text-white font-semibold px-3 py-2 text-md" >
18+ Blogs
19+ </ a >
20+ < a className = "cursor-pointer text-white font-semibold px-3 py-2 text-md" >
21+ Login
22+ </ a >
23+ < a className = "cursor-pointer text-white font-semibold px-3 py-2 text-md" >
24+ Register
25+ </ a >
26+ < a className = "cursor-pointer text-white px-3 py-3 rounded-md text-sm font-medium" >
27+ Upcoming Events
28+ </ a >
29+ </ div >
30+ </ div >
31+ </ div >
32+ </ div >
33+ </ nav >
34+ </ div >
35+ ) ;
36+ }
37+
38+ export default Navbar ;
You can’t perform that action at this time.
0 commit comments