import Link from "next/link"; import { getLocale } from "@/libs/locales"; export default function Hero() { const { common } = getLocale('en'); return (
{/* TODO: Style this hero section when implementing in your project */}

{common.hero.title}

{common.hero.description}

); }