Skip to content
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
4 changes: 4 additions & 0 deletions frontend/gdg-website/src/pages/About/AboutPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,8 @@ export const AboutPage: React.FC = () => {
"We believe the best way to learn is by doing. We organize technical workshops ranging from Web and Mobile Development to AI and Cloud Computing. You bring your laptop, and we write code together, debug in real-time, and leave with a working project.",
color: "bg-[#4285F4]",
tag: "Learn By Doing",
image:
"https://raw.githubusercontent.com/GDG-Yasar-Software-Team/mail-assets/main/gdg-events/events-picture/IMG_8489.jpg",
icon: (
<svg
className="w-10 h-10 text-[#4285F4]"
Expand All @@ -147,6 +149,8 @@ export const AboutPage: React.FC = () => {
"We host industry professionals, Google Developer Experts, and experienced alumni to share their knowledge, career journeys, and insights about the latest trends in the tech ecosystem. Getting direct experience from the experts is invaluable.",
color: "bg-[#EA4335]",
tag: "Listen to Experts",
image:
"https://raw.githubusercontent.com/GDG-Yasar-Software-Team/mail-assets/main/gdg-events/events-picture/IMG_7674.jpg",
icon: (
<svg
className="w-10 h-10 text-[#EA4335]"
Expand Down
16 changes: 8 additions & 8 deletions frontend/gdg-website/src/pages/Team/TeamPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -137,13 +137,13 @@ export const TeamPage: React.FC = () => {
/>
))}
</div>
<div className="grid grid-cols-2 sm:grid-cols-3 md:grid-cols-4 lg:grid-cols-5 gap-3 sm:gap-5 max-w-7xl mx-auto w-full">
<div className="flex justify-center flex-wrap gap-3 sm:gap-5 max-w-7xl mx-auto w-full px-2">
{organizationTeam
.filter((m) => m.role === "member")
.map((member, idx) => (
<div
key={member.id}
className="w-full max-w-[170px] justify-self-center"
className="w-[45%] sm:w-[30%] md:w-[22%] lg:w-[18%] max-w-[170px] flex justify-center"
>
<TeamMemberCard member={member} index={idx + 1} />
</div>
Expand Down Expand Up @@ -197,13 +197,13 @@ export const TeamPage: React.FC = () => {
/>
))}
</div>
<div className="grid grid-cols-2 sm:grid-cols-3 md:grid-cols-4 lg:grid-cols-5 gap-3 sm:gap-5 max-w-7xl mx-auto w-full">
<div className="flex justify-center flex-wrap gap-3 sm:gap-5 max-w-7xl mx-auto w-full px-2">
{marketingTeam
.filter((m) => m.role === "member")
.map((member, idx) => (
<div
key={member.id}
className="w-full max-w-[170px] justify-self-center"
className="w-[45%] sm:w-[30%] md:w-[22%] lg:w-[18%] max-w-[170px] flex justify-center"
>
<TeamMemberCard member={member} index={idx + 1} />
</div>
Expand Down Expand Up @@ -257,13 +257,13 @@ export const TeamPage: React.FC = () => {
/>
))}
</div>
<div className="grid grid-cols-2 sm:grid-cols-3 md:grid-cols-4 lg:grid-cols-5 gap-3 sm:gap-5 max-w-7xl mx-auto w-full">
<div className="flex justify-center flex-wrap gap-3 sm:gap-5 max-w-7xl mx-auto w-full px-2">
{sponsorshipTeam
.filter((m) => m.role === "member")
.map((member, idx) => (
<div
key={member.id}
className="w-full max-w-[170px] justify-self-center"
className="w-[45%] sm:w-[30%] md:w-[22%] lg:w-[18%] max-w-[170px] flex justify-center"
>
<TeamMemberCard member={member} index={idx + 1} />
</div>
Expand Down Expand Up @@ -317,13 +317,13 @@ export const TeamPage: React.FC = () => {
/>
))}
</div>
<div className="grid grid-cols-2 sm:grid-cols-3 md:grid-cols-4 lg:grid-cols-5 gap-3 sm:gap-5 max-w-7xl mx-auto w-full">
<div className="flex justify-center flex-wrap gap-3 sm:gap-5 max-w-7xl mx-auto w-full px-2">
{softwareTeam
.filter((m) => m.role === "member")
.map((member, idx) => (
<div
key={member.id}
className="w-full max-w-[170px] justify-self-center"
className="w-[45%] sm:w-[30%] md:w-[22%] lg:w-[18%] max-w-[170px] flex justify-center"
>
<TeamMemberCard member={member} index={idx + 1} />
</div>
Expand Down