initial commit
This commit is contained in:
commit
0f94d1300e
18 changed files with 947 additions and 0 deletions
19
components/core/nav.tsx
Normal file
19
components/core/nav.tsx
Normal file
|
@ -0,0 +1,19 @@
|
|||
import Link from "next/link";
|
||||
|
||||
export function Nav() {
|
||||
return (
|
||||
<div className="flex flex-row items-center justify-between px-5 py-3">
|
||||
<Link href="/">
|
||||
<h1 className="text-3xl font-bold font-mono">
|
||||
p0ntus
|
||||
</h1>
|
||||
</Link>
|
||||
<div className="flex flex-row gap-4">
|
||||
<Link href="/">Home</Link>
|
||||
<Link href="/about">About</Link>
|
||||
<Link href="/servers">Servers</Link>
|
||||
<Link href="/services">Services</Link>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue