import Link from "next/link"; import { getLocale } from "@/libs/locales"; export default function Header() { const { common } = getLocale('en'); return (
{/* TODO: Style this header when implementing in your project */}
{common.header.brand}
{common.header.actions.signIn}
); }