diff --git a/src/components/about/TeamSection.tsx b/src/components/about/TeamSection.tsx index d60bef4c..bec28415 100644 --- a/src/components/about/TeamSection.tsx +++ b/src/components/about/TeamSection.tsx @@ -1,45 +1,88 @@ import { motion } from 'framer-motion'; -import { Users } from 'lucide-react'; +import { Users, Shield, BookOpen, MessageSquare } from 'lucide-react'; const teamStructure = [ { title: 'Core Development', - description: 'Responsible for the base system and core tools integration', + description: 'Responsible for the base system and core tools integration.', + icon: Users, + link: '#', }, { title: 'Security Tools', - description: 'Maintains and updates the vast collection of security tools', + description: 'Maintains and updates the vast collection of security tools.', + icon: Shield, + link: '#', }, { title: 'Documentation', - description: 'Creates and maintains user documentation and guides', + description: 'Creates and maintains user documentation and guides.', + icon: BookOpen, + link: '#', }, { title: 'Community Management', - description: 'Manages community interactions and contributions', + description: 'Manages community interactions and contributions.', + icon: MessageSquare, + link: '#', }, ]; export function TeamSection() { return ( -
- {teamStructure.map((team, index) => ( - -
-
- +
+ {/*

+ Meet Our Teams +

*/} +
+ {teamStructure.map((team, index) => ( + + {/* Icon and Title */} +
+
+ +
+

+ {team.title} +

-

{team.title}

-
-

{team.description}

- - ))} + {/* Description */} +

+ {team.description} +

+ {/* Optional Link/Button */} + {team.link && ( + + Learn More + + + + + )} + + ))} +
); }