import { motion } from "framer-motion"; export const DeveloperSkillsVector = () => { const skills = [ { name: "Frontend", color: "from-blue-500 to-blue-600", icon: "🎨", position: { x: -60, y: -30 } }, { name: "Backend", color: "from-green-500 to-green-600", icon: "⚙️", position: { x: 60, y: -30 } }, { name: "Database", color: "from-purple-500 to-purple-600", icon: "🗄️", position: { x: 0, y: 50 } } ]; return (
{/* Subtle Background Glow */}
{/* Central Developer Icon */} {/* Skill Badges */} {skills.map((skill, index) => ( {skill.icon} {/* Skill Label */} {skill.name} ))} {/* Subtle Connecting Elements */} {skills.map((skill, index) => ( ))} {/* Status Indicator */}
Available
{/* Experience Level */}
{[1, 2, 3, 4, 5].map((star, index) => ( ))} Expert Level
); };