import { motion } from "framer-motion";
export const MobileAppVector = () => {
return (
{/* Subtle Background */}
{/* Main iPhone Device */}
{/* iPhone Frame */}
{/* Screen */}
{/* Dynamic Island */}
{/* App Interface */}
{/* Status Bar */}
{/* App Content */}
{/* Header */}
{/* Feature Cards */}
{Array.from({ length: 3 }).map((_, i) => (
))}
{/* Bottom Navigation */}
{Array.from({ length: 4 }).map((_, i) => (
))}
{/* React Native Icon */}
⚛️
{/* Code Window */}
{/* App Store & Google Play */}
📱
🤖
{/* Technology Labels */}
{[
{ name: "iOS", color: "from-blue-500 to-blue-600" },
{ name: "Android", color: "from-green-500 to-green-600" },
{ name: "React Native", color: "from-cyan-500 to-cyan-600" }
].map((tech, index) => (
{tech.name}
))}
{/* Subtle Connecting Line */}
);
};