diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2023-11-09 08:53:17 -0500 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2023-11-09 08:53:17 -0500 |
| commit | c4a5c6b31a7ff2aa81295c52905bda557027f36e (patch) | |
| tree | c2ac82bdc0ab4bc00dad9033fb5a5a115f08c3e1 /components | |
| parent | 1e027ebf8c8afe5fa2e12868d9cd39703a029b34 (diff) | |
| download | personal-website-c4a5c6b31a7ff2aa81295c52905bda557027f36e.tar.gz personal-website-c4a5c6b31a7ff2aa81295c52905bda557027f36e.tar.bz2 personal-website-c4a5c6b31a7ff2aa81295c52905bda557027f36e.zip | |
Final commit for branch
Diffstat (limited to 'components')
| -rw-r--r-- | components/nav.js | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/components/nav.js b/components/nav.js new file mode 100644 index 0000000..7c951d6 --- /dev/null +++ b/components/nav.js @@ -0,0 +1,16 @@ +import Link from "next/link"; + +const Navigation = () => { + return ( + <div className="flex-row font-normal space-x-3 p-2"> + <Link href="/about"><button className="button">About Me</button></Link> + <Link href="#"><button className="button">Projects</button></Link> + <Link href="#"><button className="button">Videos</button></Link> + <Link href="#"><button className="button">Blog</button></Link> + <Link href="#"><button className="button">Downloads</button></Link> + <Link href="/guidelines"><button className="button">Guidelines</button></Link> + </div> + ) +} + +export default Navigation; |
