Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refine team section layout #228

Merged
merged 1 commit into from
Dec 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/data/teams.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
{
"image": "https://i.ibb.co/vqV1SS3/vivek.jpg",
"name": "Vivek Pal",
"position": "Full Stack Developer, Member @SuperteamDAO, Wormhole Fellow",
"position": "Full Stack Dev, Wormhole Fellow, Member @SuperteamDAO",
"link":{
"url": "https://vivekpal.in/",
"target": "_blank",
Expand Down
3 changes: 1 addition & 2 deletions src/pages/Team.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import Teams from "../components/TeamsComponent";
import teamsData from "../data/teams.json";

const Team = () => {
// Separate Steering Council and Volunteer data
const steeringCouncilData = teamsData.find((item) => "Steering Council" in item) || {};
const volunteerData = teamsData.find((item) => "Volunteer" in item) || {};

Expand All @@ -19,7 +18,7 @@ const Team = () => {
Steering Council
</h1>
</div>
<div className="max-w-[1240px] mx-auto grid md:grid-cols-3 gap-8">
<div className="max-w-[1240px] mx-auto grid md:grid-cols-4 gap-8">
{steeringCouncilData["Steering Council"] && steeringCouncilData["Steering Council"].map((member, index) => (
<Teams
key={index}
Expand Down
Loading