Skip to content

Commit 02dfbc6

Browse files
authored
up (#46)
2 parents 9f20278 + e864dfa commit 02dfbc6

File tree

4 files changed

+12
-37
lines changed

4 files changed

+12
-37
lines changed

package-lock.json

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
"version": "0.1.0",
44
"private": true,
55
"scripts": {
6-
"dev": "NEXT_TELEMETRY_DISABLED=1 next dev --turbopack",
7-
"build": "NEXT_TELEMETRY_DISABLED=1 next build --turbopack",
6+
"dev": "next dev --turbopack",
7+
"build": "next build --turbopack",
88
"start": "next start",
99
"lint": "eslint . --ext .ts,.tsx,.js,.jsx --fix",
1010
"type-check": "tsc --noEmit",

src/app/page.tsx

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import { Logo } from "@/components/ui/logo"
77
import { ArrowRightIcon, GitHubLogoIcon } from "@radix-ui/react-icons"
88
import ProjectsSection from "@/components/home/projects-section"
99
import TeamMembersSection from "@/components/home/team-members-section"
10-
import TeamsSection from "@/components/home/teams-section"
1110

1211
export default function Home() {
1312
return (
@@ -97,9 +96,6 @@ export default function Home() {
9796

9897
{/* Team Members Section */}
9998
<TeamMembersSection className="bg-muted/20" />
100-
101-
{/* Teams Section */}
102-
<TeamsSection className="bg-background" />
10399
</>
104100
)
105101
}

src/components/home/teams-section.tsx

Lines changed: 0 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -132,37 +132,6 @@ const teams: Team[] = [
132132
],
133133
joinUrl: "/teams/dx/join",
134134
learnMoreUrl: "/teams/dx"
135-
},
136-
{
137-
id: "4",
138-
name: "Community Growth",
139-
focusArea: "Outreach & Engagement",
140-
mission: "Growing our global community through events, partnerships, mentorship programs, and inclusive engagement initiatives.",
141-
members: [
142-
{
143-
id: "12",
144-
name: "Maya Thompson",
145-
avatar: "https://images.unsplash.com/photo-1502823403499-6ccfcf4fb453?w=150&h=150&fit=crop&crop=face",
146-
role: "Community Manager",
147-
github: "mayat-community"
148-
},
149-
{
150-
id: "13",
151-
name: "Luis Garcia",
152-
avatar: "https://images.unsplash.com/photo-1500648767791-00dcc994a43e?w=150&h=150&fit=crop&crop=face",
153-
role: "Event Coordinator",
154-
github: "luisgarcia-events"
155-
},
156-
{
157-
id: "14",
158-
name: "Aisha Okonkwo",
159-
avatar: "https://images.unsplash.com/photo-1531123897727-8f129e1688ce?w=150&h=150&fit=crop&crop=face",
160-
role: "Diversity & Inclusion Lead",
161-
github: "aishaoko-inclusion"
162-
}
163-
],
164-
joinUrl: "/teams/community/join",
165-
learnMoreUrl: "/teams/community"
166135
}
167136
]
168137

0 commit comments

Comments
 (0)