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

Remove specific person page and move Elliot #5

Merged
merged 2 commits into from
Nov 8, 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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ next.config.js
.next
postcss.config.js
tailwind.config.js
.idea/
29 changes: 0 additions & 29 deletions app/[member]/page.tsx

This file was deleted.

5 changes: 2 additions & 3 deletions app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@ export default function App() {
<div>Team ✨</div>
<div className="mt-4 grid grid-cols-1 gap-4 lg:grid-cols-2">
{teamSparkles.map((member, index) => (
<a
href={`/${member.slug}`}
<span
key={index}
className="group flex w-full"
>
Expand Down Expand Up @@ -43,7 +42,7 @@ export default function App() {
{member.title ?? 'Contributor'}
</div>
</div>
</a>
</span>
))}
</div>
</div>
Expand Down
10 changes: 5 additions & 5 deletions list.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,6 @@ export const teamSparkles: Person[] = [
avatar: '/team/jakob.webp',
slug: 'jakob',
},
{
name: 'Elliot Lindberg',
title: 'Boeing-777 Pilot',
slug: 'elliot',
},
{
name: 'Harry Bairstow',
title: 'Distributed Systems Engineer',
Expand Down Expand Up @@ -62,6 +57,11 @@ export const team2: Person[] = [
avatar: '/team/ana.webp',
slug: 'ana',
},
{
name: 'Elliot Lindberg',
title: 'Boeing-777 Pilot',
slug: 'elliot',
},
];

export const general_contributors: Person[] = [
Expand Down