mirror of
https://github.com/velocitatem/cvfs.git
synced 2026-07-16 03:13:36 +00:00
Initial commit
This commit is contained in:
24
apps/webapp/src/components/Hero.tsx
Normal file
24
apps/webapp/src/components/Hero.tsx
Normal file
@@ -0,0 +1,24 @@
|
||||
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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user