Skip to content

Commit c8a44bf

Browse files
authored
Merge pull request #251 from sohan2503001/sohan
Added transparent navbar
2 parents f457183 + 7f256d4 commit c8a44bf

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed

tscomm/pages/navbar.js

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
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;

0 commit comments

Comments
 (0)