Skip to content

Commit 90cc77b

Browse files
committed
chore: fix look of navbar
1 parent 1ab134a commit 90cc77b

File tree

1 file changed

+5
-25
lines changed

1 file changed

+5
-25
lines changed

web/src/components/nav-bar/nav-bar.tsx

Lines changed: 5 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -9,35 +9,15 @@ import { Button, Link } from "@nextui-org/react";
99

1010
export default function Nav() {
1111
return (
12-
13-
<Navbar position="static" isBordered>
12+
<Navbar position="static" isBordered className="bg-[#D4D4D4]">
1413
<NavbarBrand>
15-
<p className="font-bold text-inherit">ACME</p>
14+
<p className="font-bold text-inherit text-slate-900">STARR Lab Rad-Effects Database</p>
1615
</NavbarBrand>
17-
<NavbarContent className="hidden sm:flex gap-4" justify="center">
18-
<NavbarItem>
19-
<Link color="foreground" href="#">
20-
Features
21-
</Link>
22-
</NavbarItem>
23-
<NavbarItem isActive>
24-
<Link href="#" aria-current="page">
25-
Customers
26-
</Link>
27-
</NavbarItem>
28-
<NavbarItem>
29-
<Link color="foreground" href="#">
30-
Integrations
31-
</Link>
32-
</NavbarItem>
33-
</NavbarContent>
3416
<NavbarContent justify="end">
35-
<NavbarItem className="hidden lg:flex">
36-
<Link href="#">Login</Link>
37-
</NavbarItem>
17+
{/* TODO: add which nsid is logged in */}
3818
<NavbarItem>
39-
<Button as={Link} color="primary" href="#" variant="flat">
40-
Sign Up
19+
<Button className="bg-usask-green" variant="flat">
20+
<span className="text-slate-50">Log out</span>
4121
</Button>
4222
</NavbarItem>
4323
</NavbarContent>

0 commit comments

Comments
 (0)