Initial commit

This commit is contained in:
Daniel Alves Rösel
2026-04-02 18:47:14 +02:00
committed by GitHub
commit 90ad5e0260
94 changed files with 7797 additions and 0 deletions

View 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>
);
}