import { motion } from "framer-motion"; import { Sparkles, Orbit } from "lucide-react"; import { isMobile } from "@/lib/platform"; export function Mobile3DScene() { if (!isMobile()) return null; const cards = [ { title: "Spatial", accent: "from-cyan-500 to-emerald-500", delay: 0 }, { title: "Realtime", accent: "from-purple-500 to-pink-500", delay: 0.08 }, { title: "Secure", accent: "from-amber-500 to-orange-500", delay: 0.16 }, ]; return (