mirror of
https://github.com/velocitatem/cvfs.git
synced 2026-07-16 03:13:36 +00:00
24 lines
629 B
TypeScript
24 lines
629 B
TypeScript
import Link from "next/link";
|
|
import { getLocale } from "@/libs/locales";
|
|
|
|
export default function Hero() {
|
|
const { common } = getLocale('en');
|
|
|
|
return (
|
|
<section>
|
|
{/* TODO: Style this hero section when implementing in your project */}
|
|
<div>
|
|
<h1>{common.hero.title}</h1>
|
|
<p>{common.hero.description}</p>
|
|
<div>
|
|
<Link href="/dashboard">
|
|
<button>{common.hero.actions.getStarted}</button>
|
|
</Link>
|
|
<Link href="/blog">
|
|
<button>{common.hero.actions.learnMore}</button>
|
|
</Link>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
);
|
|
} |