import React from "react"; import { Button } from "../ui"; import { X, ExternalLink, Key, Bookmark, PenTool } from "lucide-react"; import { AppleIcon } from "../common/Icons"; import { useTranslation } from "react-i18next"; interface IOSShortcutModalProps { isOpen: boolean; onClose: () => void; } export default function IOSShortcutModal({ isOpen, onClose, }: IOSShortcutModalProps) { const { t } = useTranslation(); if (!isOpen) return null; return (
e.stopPropagation()} >

{t("iosShortcut.title")}

{t("iosShortcut.howTo")}

1

{t("iosShortcut.step1Title")}

{t("iosShortcut.step1Link")}
2

{t("iosShortcut.step2Title")}{" "}

{t("iosShortcut.step2Description")}

3

{t("iosShortcut.step3Title")}

{t("iosShortcut.step3Description")}

4

{t("iosShortcut.step4Title")}{" "}

{t("iosShortcut.step4Description")}

5

{t("iosShortcut.step5Title")}{" "}

{t("iosShortcut.step5Description")}

6

{t("iosShortcut.step6Title")}

{t("iosShortcut.step6Description")}

); }