import ContentWrapper from "@/components/ContentWrapper"; import CustomContainer from "@/components/CustomContainer"; import ScrollBackgroundSpin from "@/components/Home/ScrollBackgroundSpin"; import TechCard from "@/components/TechCard"; import { HashLink } from "react-router-hash-link/dist/react-router-hash-link.cjs.production"; import { useTranslation } from "react-i18next"; const Home = () => { const { t } = useTranslation(); const muestras = t("home.muestras", { returnObjects: true }); return (

{t("home.inicio_title")}

{t("home.inicio_thought")}


{t("home.inicio_welcome")}

{t("home.inicio_note")}

{t("home.inicio_button")}

{t("home.muestras_title")}

{muestras.map((m, i) => (
{m.icon}
{m.title}
))}

{t("home.pedidos_title")}

{t("home.pedidos_text")}

{t("home.sobre_title")}

{t("home.sobre_status.k")} {t("home.sobre_status.v")}
{t("home.sobre_location.k")} {t("home.sobre_location.v")}
{t("home.sobre_specialty.k")} {t("home.sobre_specialty.v")}

{t("home.sobre_text")}

); }; export default Home;