From 14f59c4603de82799a116772081e0041ea0f4102 Mon Sep 17 00:00:00 2001 From: eshanized Date: Mon, 6 Jan 2025 14:11:15 +0530 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20docs:=20update=20in=20content?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/about/TeamSection.tsx | 87 +++++++++++++++++++++------- 1 file changed, 65 insertions(+), 22 deletions(-) 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 + + + + + )} + + ))} +
); }