import { useTranslation } from "react-i18next"; import { FolderTree, Server, TerminalSquare } from "lucide-react"; const HIGHLIGHTS = [ { icon: Server, key: "hosts" }, { icon: TerminalSquare, key: "terminal" }, { icon: FolderTree, key: "files" }, ] as const; export function WelcomeStep() { const { t } = useTranslation(); return (

{t("onboarding.welcomeIntro")}

{HIGHLIGHTS.map(({ icon: Icon, key }) => (
{t(`onboarding.welcome_${key}`)} {t(`onboarding.welcome_${key}_desc`)}
))}
); }