"use client"; import { motion } from "framer-motion"; import { Code2 } from "lucide-react"; interface AnimatedTechItemProps { name: string; iconName: string | null; index: number; } export function AnimatedTechItem({ name, iconName, index }: AnimatedTechItemProps) { return ( {iconName ? ( ) : ( )} {name} ); }