Skip to content

Commit e800f20

Browse files
committed
updated team v26 styling
1 parent 7789a5d commit e800f20

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/pages/components/TeamSection.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { useState } from "react";
33
import React from "react";
44

55
// use this variable to display the most recent iteration team for Reactime
6-
const team25: string[][] = [
6+
const team26: string[][] = [
77
["Garrett Chow", "garrettlchow"],
88
["Ellie Simens", "elliesimens"],
99
["Ragad Mohammed", "ragad-mohammed"],
@@ -131,15 +131,15 @@ export default function People(): JSX.Element {
131131
<div className="space-y-8 sm:space-y-12">
132132
<div className="space-y-5 sm:mx-auto sm:max-w-xl sm:space-y-4 lg:max-w-5xl">
133133
<h2 className="text-3xl font-bold tracking-tight sm:text-4xl">
134-
Version 25.0 Team
134+
Version 26.0 Team
135135
</h2>
136136
</div>
137137
<ul
138138
role="list"
139-
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"
140140
>
141141
<>
142-
{team25.map((person) => (
142+
{team26.map((person) => (
143143
<Profile key={person[1]} profile={person[1]} name={person[0]} />
144144
))}
145145
</>

0 commit comments

Comments
 (0)