diff --git a/public/cayden.webp b/public/cayden.webp index 7cd93e8..43d9782 100644 Binary files a/public/cayden.webp and b/public/cayden.webp differ diff --git a/public/luca.webp b/public/luca.webp new file mode 100644 index 0000000..36658d4 Binary files /dev/null and b/public/luca.webp differ diff --git a/public/nick.webp b/public/nick.webp index 02749f5..ab361ba 100644 Binary files a/public/nick.webp and b/public/nick.webp differ diff --git a/public/nottimwakefield.webp b/public/nottimwakefield.webp index 1e44c40..d75be27 100644 Binary files a/public/nottimwakefield.webp and b/public/nottimwakefield.webp differ diff --git a/public/oliver.webp b/public/oliver.webp new file mode 100644 index 0000000..c2be697 Binary files /dev/null and b/public/oliver.webp differ diff --git a/public/vince.webp b/public/vince.webp index 6621f63..883a9f8 100644 Binary files a/public/vince.webp and b/public/vince.webp differ diff --git a/src/components/team.jsx b/src/components/team.jsx index 40ab378..f1df996 100644 --- a/src/components/team.jsx +++ b/src/components/team.jsx @@ -7,19 +7,25 @@ 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: 'Saso', ext: '1003', image: '/ramsaso.webp', discord: '@ramsaso', 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' }, + { name: 'Vince', ext: '4001', image: '/vince.webp', discord: '@maybvince', role: 'Admin' }, + { name: 'NotTimWakefield', ext: '1008', image: '/nottimwakefield.webp', discord: '@nottimwakefield', role: 'Admin' }, + { name: 'Ryan', ext: '1135', image: '/ryan.webp', discord: '@ryann_207', role: 'Admin' }, + { name: 'Chris Chrome', ext: '1000', image: '/chris.webp', discord: '@chrischrome', role: 'IT Officer' } ] 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' }, + { name: 'Oliver', ext: '1259', image: '/oliver.webp', discord: '@oolivero45', role: 'Moderator' }, +] + +const operatorTeam = [ + { name: 'Nick', ext: '1036', image: '/nick.webp', discord: '@gamewell', role: 'Operator' }, + { name: 'Luca', ext: '1043', image: '/luca.webp', discord: '@theonetruedimwit', role: 'Operator' } ] function TeamMember({ name, ext, image, discord, role }) { @@ -102,53 +108,80 @@ export default function Team() {
- {/* Administration Team */} -
-
-
-

- Administration Team -

+ {adminTeam.length > 0 && ( +
+
+
+

+ Administration Team +

+
+
+
+ {adminTeam.map((member, index) => ( +
+ +
+ ))}
-
- {adminTeam.map((member, index) => ( -
- -
- ))} -
-
+ )} - {/* Moderation Team */} -
-
-
-

- Moderation Team -

+ {modTeam.length > 0 && ( +
+
+
+

+ Moderation Team +

+
+
+
+ {modTeam.map((member, index) => ( +
+ +
+ ))}
-
- {modTeam.map((member, index) => ( -
- + )} + + {operatorTeam.length > 0 && ( +
+
+
+

+ Operators +

- ))} +
+
+ {operatorTeam.map((member, index) => ( +
+ +
+ ))} +
-
+ )}