-
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
4c66ab3
commit 120bb63
Showing
3 changed files
with
26 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 @@ | ||
--- | ||
import Emoji from 'astro-emoji' | ||
--- | ||
|
||
<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> |
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,7 @@ | ||
export default function Navbar(props) { | ||
return ( | ||
<div> | ||
{props.navbar} | ||
</div> | ||
) | ||
} |