import { ArrowRight } from "lucide-react"; import { Link } from "@/i18n/routing"; // 🔥 IMPORTAMOS LA VERSIÓN DE SERVIDOR import { getTranslations } from "next-intl/server"; export default async function PatrizioLegacy() { const t = await getTranslations("PatrizioLegacy"); return (

{t("subtitle")}

{t("title1")}
{t("title2")}

{t("p1_1")}{t("p1_2")}{t("p1_3")}

{t("p2")}

{t("button")}
); }