"use client" import { useTranslations } from "next-intl" import { MousePointerClick, RefreshCw, ArchiveX, Network, FileCode, Share2 } from "lucide-react" export function HowItWorks() { const t = useTranslations("home.howItWorks") return (

{t("title")}

{t("step1.title")}

{t("step1.description")}

{t("step2.title")}

{t("step2.description")}

{t("step3.title")}

{t("step3.description")}

{t("advStep1.title")}

{t("advStep1.description")}

{t("advStep2.title")}

{t("advStep2.description")}

{t("advStep3.title")}

{t("advStep3.description")}

) }