-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
65ec578
commit 7da4146
Showing
2 changed files
with
17 additions
and
11 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
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
export default function Nav({ emoji }) { | ||
return ( | ||
<nav class="flex flex-col mt-12 mb-10 text-[#F2F5F7]"> | ||
<div class="flex font-['Merriweather'] text-4xl font-black mb-3"> | ||
<a href="/">Derek Brown <emoji symbol="π¨π»βπ»" label="person" /></a> | ||
</div> | ||
<div class="font-['Merriweather'] text-xl flex items-center gap-4"> | ||
<span class="navItem" id="notes"><a href="/">Notes</a></span> | ||
<span class="navItem" id="tags"><a href="/tags">Tags</a></span> | ||
<span class="navItem" id="about"><a href="/about">About</a></span> | ||
</div> | ||
</nav> | ||
) | ||
} |