blob: 7c951d661e83ff6c1bce68ff6153eb3328bcec9e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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;
|