Skip to content
Open
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
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,5 @@ yarn-error.log*
/playwright/.cache/

# IDE
.idea
.idea
next-env.d.ts
6 changes: 5 additions & 1 deletion app/a-propos/content.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Socials } from '../../modules/about/Socials';
import { Orgas } from '../../modules/about/Orgas';
import { FormerOrgas, Orgas } from '../../modules/about/Orgas';

<main>

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

<Orgas />

## Les anciens orgas

<FormerOrgas />

## Qui peut rejoindre ?

LyonJS est ouvert **à toutes et tous**, que vous soyez débutant·e, en apprentissage, ou bien
Expand Down
46 changes: 45 additions & 1 deletion data/orgas.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export type Orga = {
};
};

export const orgas: Array<Orga> = [
export const formerOrgas: Array<Orga> = [
{
name: 'Paul Mougel',
avatarUrl: '/orgas/paul.jpeg',
Expand All @@ -16,6 +16,50 @@ export const orgas: Array<Orga> = [
linkedin: 'paulmougel',
},
},
{
name: 'Romain',
avatarUrl: '/orgas/romain.jpeg',
social: {},
},
{
name: 'Maxence Dalmais',
avatarUrl: '/orgas/maxence.jpeg',
social: {
linkedin: 'maxencedalmais',
},
},
{
name: 'Mickael Daniel',
avatarUrl: '/orgas/mickaelD.jpeg',
social: {
linkedin: 'mickaeldaniel',
},
},
{
name: 'Matthieu Lux',
avatarUrl: '/orgas/matthieu.jpeg',
social: {
linkedin: 'swiip',
twitter: 'Swiip',
},
},
{
name: 'Nicolas Morel',
avatarUrl: '/orgas/nicolas.jpeg',
social: {
linkedin: 'nicolas-m-5b384a173',
},
},
{
name: 'Florian Traverse',
avatarUrl: '/orgas/florian.jpeg',
social: {
linkedin: 'floriantraverse',
},
},
];

export const orgas: Array<Orga> = [
{
name: 'Mathieu Mure',
avatarUrl: '/orgas/mathieu.jpeg',
Expand Down
4 changes: 3 additions & 1 deletion modules/about/Orgas.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import React from 'react';
import { orgas } from '../../data/orgas';
import { formerOrgas, orgas } from '../../data/orgas';
import { ListOfPeople } from '../person/ListOfPeople';

export const Orgas: React.FC = () => <ListOfPeople people={orgas} />;

export const FormerOrgas: React.FC = () => <ListOfPeople people={formerOrgas} />;
6 changes: 0 additions & 6 deletions next-env.d.ts

This file was deleted.

Binary file added public/orgas/florian.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/orgas/matthieu.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/orgas/maxence.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/orgas/mickaelD.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/orgas/nicolas.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/orgas/romain.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.