"use client"; import React, { useState } from 'react'; import { Smartphone, Monitor, ChevronDown, ChevronRight, Copy, Check } from 'lucide-react'; import { cn } from '@/lib/utils'; export function MobileCookieInstructions() { const [open, setOpen] = useState(false); const [platform, setPlatform] = useState<'desktop' | 'android' | 'ios'>('desktop'); return (
{open && (
{platform === 'desktop' && (

Getting cookies on mobile is hard. The easiest way is to do it on a PC and send it to yourself.

    {[ { step: 1, text: <>Install Cookie-Editor extension on your PC browser (Chrome/Edge). }, { step: 2, text: <>Go to labs.google (Whisk) or facebook.com (Meta) and login. }, { step: 3, text: <>Open extension → Click ExportExport as JSON. }, { step: 4, text: <>Paste into a Google Doc, Keep, Notes, or email it to yourself. }, { step: 5, text: <>Open on phone and paste here. } ].map((item) => (
  1. {item.step} {item.text}
  2. ))}
)} {platform === 'android' && (

Android allows extensions via specific browsers.

    {[ { step: 1, text: <>Install Kiwi Browser or Firefox Nightly from Play Store. }, { step: 2, text: <>Open Kiwi/Firefox and install Cookie-Editor from Chrome Web Store. }, { step: 3, text: <>Login to the service (Whisk/Facebook). }, { step: 4, text: <>Tap menu → Cookie-Editor → Export JSON. } ].map((item) => (
  1. {item.step} {item.text}
  2. ))}
)} {platform === 'ios' && (

iPhone is restrictive. Syncing from Desktop is recommended.

Alternative: Use "Alook Browser" app (Paid) which acts like a desktop browser with developer tools.
    {[ { step: 1, text: <>Use Method 1 (Desktop Sync) - it's much faster. }, { step: 2, text: <>Or access this site on your Mac/PC and configure it there first. Settings are saved to the browser. } ].map((item) => (
  1. {item.step} {item.text}
  2. ))}
)}
)}
); }