mirror of
https://github.com/velocitatem/cvfs.git
synced 2026-05-31 08:43:37 +00:00
28 lines
740 B
TypeScript
28 lines
740 B
TypeScript
import Link from "next/link";
|
|
import { getLocale } from "@/libs/locales";
|
|
|
|
export default function Header() {
|
|
const { common } = getLocale('en');
|
|
|
|
return (
|
|
<header>
|
|
{/* TODO: Style this header when implementing in your project */}
|
|
<div>
|
|
<div>
|
|
<div>
|
|
<Link href="/">{common.header.brand}</Link>
|
|
</div>
|
|
<nav>
|
|
<Link href="/">{common.header.nav.home}</Link>
|
|
<Link href="/dashboard">{common.header.nav.dashboard}</Link>
|
|
<Link href="/blog">{common.header.nav.blog}</Link>
|
|
</nav>
|
|
<div>
|
|
<Link href="/login">{common.header.actions.signIn}</Link>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
);
|
|
}
|