We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d4d0e6 commit 5c462d1Copy full SHA for 5c462d1
src/components/navbar.tsx
@@ -1,16 +1,16 @@
1
import Logo from "../assets/logo.svg";
2
-import { Button } from "@/components/ui/button";
3
const Navbar: React.FC = () => {
4
return (
5
<nav className="py-7 border-border border-b">
6
<div className="flex justify-between items-center max-w-5xl mx-auto">
7
<div>
8
- <a href="/">
+ <a href="https://if.greensoftware.foundation/" target="_blank" rel="noopener noreferrer">
9
<img src={Logo} alt="Logo" className="h-10" />
10
</a>
11
</div>
12
- <div>
13
- <Button>Become a watcher</Button>
+ <div className="flex gap-4">
+ <a href="/" >Home</a>
+ <a href="https://if.greensoftware.foundation/intro" target="_blank" rel="noopener noreferrer" >Documentation</a>
14
15
16
</nav>
0 commit comments