Skip to content
Merged

up #46

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
10 changes: 10 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "NEXT_TELEMETRY_DISABLED=1 next dev --turbopack",
"build": "NEXT_TELEMETRY_DISABLED=1 next build --turbopack",
"dev": "next dev --turbopack",
"build": "next build --turbopack",
"start": "next start",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx --fix",
"type-check": "tsc --noEmit",
Expand Down
4 changes: 0 additions & 4 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import { Logo } from "@/components/ui/logo"
import { ArrowRightIcon, GitHubLogoIcon } from "@radix-ui/react-icons"
import ProjectsSection from "@/components/home/projects-section"
import TeamMembersSection from "@/components/home/team-members-section"
import TeamsSection from "@/components/home/teams-section"

export default function Home() {
return (
Expand Down Expand Up @@ -97,9 +96,6 @@ export default function Home() {

{/* Team Members Section */}
<TeamMembersSection className="bg-muted/20" />

{/* Teams Section */}
<TeamsSection className="bg-background" />
</>
)
}
31 changes: 0 additions & 31 deletions src/components/home/teams-section.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -132,37 +132,6 @@ const teams: Team[] = [
],
joinUrl: "/teams/dx/join",
learnMoreUrl: "/teams/dx"
},
{
id: "4",
name: "Community Growth",
focusArea: "Outreach & Engagement",
mission: "Growing our global community through events, partnerships, mentorship programs, and inclusive engagement initiatives.",
members: [
{
id: "12",
name: "Maya Thompson",
avatar: "https://images.unsplash.com/photo-1502823403499-6ccfcf4fb453?w=150&h=150&fit=crop&crop=face",
role: "Community Manager",
github: "mayat-community"
},
{
id: "13",
name: "Luis Garcia",
avatar: "https://images.unsplash.com/photo-1500648767791-00dcc994a43e?w=150&h=150&fit=crop&crop=face",
role: "Event Coordinator",
github: "luisgarcia-events"
},
{
id: "14",
name: "Aisha Okonkwo",
avatar: "https://images.unsplash.com/photo-1531123897727-8f129e1688ce?w=150&h=150&fit=crop&crop=face",
role: "Diversity & Inclusion Lead",
github: "aishaoko-inclusion"
}
],
joinUrl: "/teams/community/join",
learnMoreUrl: "/teams/community"
}
]

Expand Down
Loading