@@ -3,14 +3,19 @@ import { useState } from "react";
33import React from "react" ;
44
55// use this variable to display the most recent iteration team for Reactime
6- const team25 : string [ ] [ ] = [
7- [ "Haider Ali" , "hali03" ] ,
8- [ "Jose Luis Sanchez" , "JoseSanchez1996" ] ,
9- [ "Logan Nelsen" , "ljn16" ] ,
10- [ "Mel Koppens" , "MelKoppens" ]
6+ const team26 : string [ ] [ ] = [
7+ [ "Garrett Chow" , "garrettlchow" ] ,
8+ [ "Ellie Simens" , "elliesimens" ] ,
9+ [ "Ragad Mohammed" , "ragad-mohammed" ] ,
10+ [ "Daniel Ryczek" , "dryczek14" ] ,
11+ [ "Patrice Pinardo" , "pinardo88" ]
1112] ;
1213
1314const people : string [ ] [ ] = [
15+ [ "Haider Ali" , "hali03" ] ,
16+ [ "Jose Luis Sanchez" , "JoseSanchez1996" ] ,
17+ [ "Logan Nelsen" , "ljn16" ] ,
18+ [ "Mel Koppens" , "MelKoppens" ] ,
1419 [ "Alex Gomez" , "alexgomez9" ] ,
1520 [ "Alexander Landeros" , "AlexanderLanderos" ] ,
1621 [ "Ali Rahman" , "CourageWolf" ] ,
@@ -126,15 +131,15 @@ export default function People(): JSX.Element {
126131 < div className = "space-y-8 sm:space-y-12" >
127132 < div className = "space-y-5 sm:mx-auto sm:max-w-xl sm:space-y-4 lg:max-w-5xl" >
128133 < h2 className = "text-3xl font-bold tracking-tight sm:text-4xl" >
129- Version 25 .0 Team
134+ Version 26 .0 Team
130135 </ h2 >
131136 </ div >
132137 < ul
133138 role = "list"
134- className = "mx-auto grid grid-cols-3 gap-x-8 gap-y-8 sm:grid-cols-4 md:gap-x-6 lg:max-w-5xl lg:gap-x-8 lg:gap-y-12 xl:grid-cols-4 "
139+ className = "mx-auto grid grid-cols-3 gap-x-8 gap-y-8 sm:grid-cols-5 md:gap-x-6 lg:max-w-5xl lg:gap-x-8 lg:gap-y-12 xl:grid-cols-5 "
135140 >
136141 < >
137- { team25 . map ( ( person ) => (
142+ { team26 . map ( ( person ) => (
138143 < Profile key = { person [ 1 ] } profile = { person [ 1 ] } name = { person [ 0 ] } />
139144 ) ) }
140145 </ >
0 commit comments