-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
19 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,22 @@ | ||
import React from "https://esm.sh/react" | ||
|
||
export default function Navbar({}) { | ||
return <div></div> | ||
} | ||
|
||
return ( | ||
<nav class="flex w-full justify-center items-center py-5"> | ||
<div class="flex justify-around items-center w-10/12 h-14 bg-slate-100 rounded-lg drop-shadow-2xl px-5"> | ||
<a href="https://ibb.co/x1HDkYZ"> | ||
<img src="../assets/logo/logo_banner.png" alt="logo-banner" class="w-32" border="0"/> | ||
</a> | ||
<ul class="flex justify-end items-center flex-1"> | ||
<li class="ml-6"><a href="/" class="hover:text-primary">Home</a></li> | ||
<li class="ml-6"><a href="/about" class="hover:text-primary">About</a></li> | ||
<li class="ml-6"><a href="/projects" class="hover:text-primary">Projects</a></li> | ||
<li class="ml-6"><a href="/apply" class="hover:text-primary">Apply</a></li> | ||
<li class="ml-6"><a href="/contact" class="hover:text-primary">Contact</a></li> | ||
<li class="ml-6"><a href="/apply"><button class="bg-blue-600 text-slate-100 rounded-lg w-32 h-10">Join our Team</button></a></li> | ||
</ul> | ||
</div> | ||
</nav> | ||
); | ||
} |