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 (
{t("iosShortcut.step1Title")}
{t("iosShortcut.step2Title")}{" "}
{t("iosShortcut.step2Description")}
{t("iosShortcut.step3Title")}
{t("iosShortcut.step3Description")}
{t("iosShortcut.step4Title")}{" "}
{t("iosShortcut.step4Description")}
{t("iosShortcut.step5Title")}{" "}
{t("iosShortcut.step5Description")}
{t("iosShortcut.step6Title")}
{t("iosShortcut.step6Description")}