import { getTranslations } from "next-intl/server"; import Image from "next/image"; interface HeroProps { locale: string; } export default async function Hero({ locale: _locale }: HeroProps) { const t = await getTranslations("home.hero"); return (
{/* Liquid Ambient Background — overflow-hidden here so the blobs are clipped, not the image/badge */}
{/* Left: Text Content */}
{t("badge")}

{t("line1")} {t("line2")}

{t("description")}

{/* Right: The Photo */}
Dennis Konkol
dk0.dev
); }