aboutsummaryrefslogtreecommitdiff
path: root/components/nav.js
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2024-01-01 16:32:41 -0500
committerAndrew Lee <alee14498@protonmail.com>2024-01-01 16:32:41 -0500
commita0485ad26353a08562c13c14ea9de73fd705f9de (patch)
tree1bc499c572e3642b769f7391f493d972a8a749d9 /components/nav.js
parent0349923dd0a970f009ce7ca54881f8c398c67100 (diff)
downloadpersonal-website-a0485ad26353a08562c13c14ea9de73fd705f9de.tar.gz
personal-website-a0485ad26353a08562c13c14ea9de73fd705f9de.tar.bz2
personal-website-a0485ad26353a08562c13c14ea9de73fd705f9de.zip
Initial Rewrite
Diffstat (limited to 'components/nav.js')
-rw-r--r--components/nav.js16
1 files changed, 0 insertions, 16 deletions
diff --git a/components/nav.js b/components/nav.js
deleted file mode 100644
index 7c951d6..0000000
--- a/components/nav.js
+++ /dev/null
@@ -1,16 +0,0 @@
-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;