import { motion } from 'framer-motion'; import { Users } from 'lucide-react'; const teamStructure = [ { title: 'Core Development', description: 'Responsible for the base system and core tools integration', }, { title: 'Security Tools', description: 'Maintains and updates the vast collection of security tools', }, { title: 'Documentation', description: 'Creates and maintains user documentation and guides', }, { title: 'Community Management', description: 'Manages community interactions and contributions', }, ]; export function TeamSection() { return (
{teamStructure.map((team, index) => (

{team.title}

{team.description}

))}
); }