Skip to content

Commit 2165c1c

Browse files
committed
feat(members): added david to members
1 parent 96bdfad commit 2165c1c

File tree

4 files changed

+8
-2
lines changed

4 files changed

+8
-2
lines changed

dictionaries/en.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import { Dictionary } from '@/locales/dictionaries';
2-
import { text } from 'stream/consumers';
32

43
export const enDictionary: Dictionary = {
54
navigation: {
@@ -244,6 +243,7 @@ export const enDictionary: Dictionary = {
244243
info: 'IT department',
245244
com: 'Communication department',
246245
comcom: 'Communication and Business development department',
246+
infocom: 'Communication and IT department',
247247
},
248248
members: {
249249
prez: 'Chief executive officer',
@@ -272,6 +272,7 @@ export const enDictionary: Dictionary = {
272272
coco: 'In charge of commercial communication',
273273
//
274274
info: 'IT member',
275+
comweb: 'In charge of web communication',
275276
},
276277
},
277278
partners: {

dictionaries/fr.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,6 +229,7 @@ export const frDictionary = {
229229
info: 'Pôle informatique',
230230
com: 'Pôle communication',
231231
comcom: 'Pôle communication et développement commercial',
232+
infocom: 'Pôle communication et informatique',
232233
},
233234
members: {
234235
prez: 'Président',
@@ -256,7 +257,8 @@ export const frDictionary = {
256257
cominterne: 'Chargé Communication Interne',
257258
coco: 'Chargé Communication Commerciale',
258259
//
259-
info: 'Membre pôle informatique',
260+
info: 'Membre Pôle Informatique',
261+
comweb: 'Chargé Communication Web',
260262
},
261263
},
262264
faq: {

public/images/members/david.webp

195 KB
Loading

src/app/[locale]/(static)/(client)/team/members.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import Allan from '@/../public/images/members/allan.webp';
55
import Augustin from '@/../public/images/members/augustin.webp';
66
import BaptisteD from '@/../public/images/members/baptiste_d.webp';
77
import BaptisteL from '@/../public/images/members/baptiste_l.webp';
8+
import David from '@/../public/images/members/david.webp';
89
import Elisa from '@/../public/images/members/elisa.webp';
910
import Eya from '@/../public/images/members/eya.webp';
1011
import Florian from '@/../public/images/members/florian.webp';
@@ -160,6 +161,8 @@ export const DEPARTMENTS: DepartmentProps[] = [
160161
},
161162
],
162163
},
164+
{ id: 'infocom', members: [{ id: 'comweb', name: 'David Muy', image: David }] },
165+
163166
{
164167
id: 'info',
165168
members: [

0 commit comments

Comments
 (0)