"use client" import { Avatar, AvatarFallback, AvatarImage } from '@/components/ui/avatar' import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card' import { Badge } from '@/components/ui/badge' const adminTeam = [ { name: 'Chris Chrome', ext: '1000', image: '/chris.webp', discord: '@chrischrome', role: 'Head Admin' }, { name: 'ashton', ext: '1007', image: '/ashton.webp', discord: '@ashtoncarlson', role: 'Head Admin' }, { name: 'Cayden', ext: '1001', image: '/cayden.webp', discord: '@freepbx', role: 'Admin' }, { name: 'Faux Lemons', ext: '1011', image: '/faux_lemons.webp', discord: '@faux_lemons', role: 'Admin' }, { name: 'rocord', ext: '1010', image: '/rocord.webp', discord: '@rocord', role: 'Admin' }, { name: 'Maddix', ext: '1005', image: '/maddix.webp', discord: '@maddix6859', role: 'Admin' }, { name: 'Theliftoperator', ext: '1134', image: '/theliftoperator.webp', discord: '@theliftoperator', role: 'Admin' }, ] const modTeam = [ { name: 'Vince', ext: '4001', image: '/vince.webp', discord: '@maybvince', role: 'Moderator' }, { name: 'Nik', ext: '1008', image: '/nottimwakefield.webp', discord: '@nottimwakefield', role: 'Moderator' }, { name: 'Ryan', ext: '1135', image: '/ryan.webp', discord: '@ryann_207', role: 'Moderator' }, ] function TeamMember({ name, ext, image, discord, role }) { return ( {/* Animated background */} {name[0]} {name} {role} {discord} x{ext} Extension {/* Hover glow effect */} ) } export default function Team() { return ( Meet the Team The dedicated people who keep LiteNet running smoothly and help our community grow. {/* Administration Team */} Administration Team {adminTeam.map((member, index) => ( ))} {/* Moderation Team */} Moderation Team {modTeam.map((member, index) => ( ))} ) }
The dedicated people who keep LiteNet running smoothly and help our community grow.