import type { JSX } from "react" import { getTranslations } from "next-intl/server" import Image from "next/image" import { Badge } from "@/components/ui/badge" export async function HeroSection(): Promise { const t = await getTranslations("manifesto") return (
Background
{t("badge")}

{t("hero.title")}

{t("hero.subtitle")}

) }