Skip to content

Commit

Permalink
Remove specific person page and move Elliot (#5)
Browse files Browse the repository at this point in the history
* Remove on click page and move Elliot

* Remove .idea
  • Loading branch information
Antony1060 authored Nov 8, 2023
1 parent 398174a commit a323d2b
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 37 deletions.
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

0 comments on commit a323d2b

Please sign in to comment.