Skip to content

Commit 0cad37d

Browse files
Slashgearclaude
andauthored
feat: add former organizers section to about page (#602)
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
1 parent cbf456e commit 0cad37d

8 files changed

Lines changed: 43 additions & 4 deletions

File tree

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,5 @@ yarn-error.log*
4040
/playwright/.cache/
4141

4242
# IDE
43-
.idea
43+
.idea
44+
next-env.d.ts

app/a-propos/content.mdx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { Socials } from '../../modules/about/Socials';
2-
import { Orgas } from '../../modules/about/Orgas';
2+
import { FormerOrgas, Orgas } from '../../modules/about/Orgas';
33

44
<main>
55

@@ -29,6 +29,10 @@ import { Orgas } from '../../modules/about/Orgas';
2929

3030
<Orgas />
3131

32+
## Les anciens orgas
33+
34+
<FormerOrgas />
35+
3236
## Qui peut rejoindre ?
3337

3438
LyonJS est ouvert **à toutes et tous**, que vous soyez débutant·e, en apprentissage, ou bien

data/orgas.ts

Lines changed: 33 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export type Orga = {
77
};
88
};
99

10-
export const orgas: Array<Orga> = [
10+
export const formerOrgas: Array<Orga> = [
1111
{
1212
name: 'Paul Mougel',
1313
avatarUrl: '/orgas/paul.jpeg',
@@ -16,6 +16,38 @@ export const orgas: Array<Orga> = [
1616
linkedin: 'paulmougel',
1717
},
1818
},
19+
{
20+
name: 'Maxence Dalmais',
21+
avatarUrl: '/orgas/maxence.jpeg',
22+
social: {
23+
linkedin: 'maxencedalmais',
24+
},
25+
},
26+
{
27+
name: 'Mickael Daniel',
28+
avatarUrl: '/orgas/mickaelD.jpeg',
29+
social: {
30+
linkedin: 'mickaeldaniel',
31+
},
32+
},
33+
{
34+
name: 'Matthieu Lux',
35+
avatarUrl: '/orgas/matthieu.jpeg',
36+
social: {
37+
linkedin: 'swiip',
38+
twitter: 'Swiip',
39+
},
40+
},
41+
{
42+
name: 'Nicolas Morel',
43+
avatarUrl: '/orgas/nicolas.jpeg',
44+
social: {
45+
linkedin: 'nicolas-m-5b384a173',
46+
},
47+
},
48+
];
49+
50+
export const orgas: Array<Orga> = [
1951
{
2052
name: 'Mathieu Mure',
2153
avatarUrl: '/orgas/mathieu.jpeg',

modules/about/Orgas.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
import React from 'react';
2-
import { orgas } from '../../data/orgas';
2+
import { formerOrgas, orgas } from '../../data/orgas';
33
import { ListOfPeople } from '../person/ListOfPeople';
44

55
export const Orgas: React.FC = () => <ListOfPeople people={orgas} />;
6+
7+
export const FormerOrgas: React.FC = () => <ListOfPeople people={formerOrgas} />;

public/orgas/matthieu.jpeg

22.4 KB
Loading

public/orgas/maxence.jpeg

45.5 KB
Loading

public/orgas/mickaelD.jpeg

28.7 KB
Loading

public/orgas/nicolas.jpeg

52 KB
Loading

0 commit comments

Comments
 (0)