diff options
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; |
