Skip to content

Commit b2e031d

Browse files
authored
Merge pull request #134 from GalsenDev221/dev
(FEAT) / Add `GDM 5` Event and Add `Call for Speakers` link ✅
2 parents 28d6021 + 713d175 commit b2e031d

File tree

4 files changed

+23
-0
lines changed

4 files changed

+23
-0
lines changed

locales/en/events.json

+5
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@
55
"upcoming": "Upcoming event",
66
"previous": "Previous event",
77
"events": {
8+
"galsendev-meetup-5": {
9+
"title": "GalsenDEV Meetup #5",
10+
"desc": "During this event, we will explore the importance of Soft Skills for success in the professional world.",
11+
"full": "An inspiring discussion with Cheikh Tidiane NDIAYE, Fullstack Developer at Socium. Technical skills alone are not enough: knowing how to communicate effectively, collaborate with your team, and manage client interactions is essential for thriving in the development world. Tidiane will share practical advice on avoiding conflicts, fostering a positive work atmosphere, and maximizing your impact within a team. A must-attend opportunity to sharpen your interpersonal skills and boost your career!"
12+
},
813
"icagi-student-dev-workshop": {
914
"title": "ICAGI Student Dev Workshop",
1015
"desc": "An enriching day of learning with the students of ICAGI !",

locales/fr/events.json

+5
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@
55
"upcoming": "Évènement à venir",
66
"previous": "Événement passé",
77
"events": {
8+
"galsendev-meetup-5": {
9+
"title": "GalsenDEV Meetup #5",
10+
"desc": "Durant cet événement, nous explorerons l’importance des Soft Skills pour réussir dans le monde professionnel.",
11+
"full": "Un échange inspirant avec Cheikh Tidiane NDIAYE, Développeur Fullstack chez Socium. ​La technique seule ne suffit pas : savoir communiquer efficacement, collaborer avec son équipe et gérer les interactions avec les clients est essentiel pour évoluer sereinement dans l’univers du développement. ​Tidiane partagera des conseils pratiques pour éviter les conflits, favoriser une atmosphère de travail positive et maximiser son impact au sein d’une équipe. Une opportunité à ne pas manquer pour affûter vos compétences interpersonnelles et booster votre carrière !"
12+
},
813
"icagi-student-dev-workshop": {
914
"title": "Atelier Dev Étudiant ICAGI",
1015
"desc": "Une journée enrichissante d'apprentissage avec les étudiants de l'ICAGI !",

src/components/Navbar.tsx

+5
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,11 @@ const Navbar = () => {
2525
target: '_blank',
2626
},
2727
{ name: t('navbar.about'), path: '/about' },
28+
{
29+
name: 'Call for Speakers 2025 ↗',
30+
path: 'https://lienfy.com/czwm48',
31+
target: '_blank',
32+
},
2833
];
2934

3035
return (

src/pages/api/events/data.ts

+8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
import { Event } from './type';
22

33
export const events: Event[] = [
4+
{
5+
name: 'GalsenDEV Meetup #5',
6+
description:
7+
'During this event, we will explore the importance of Soft Skills for success in the professional world.',
8+
date: '02/23/2025',
9+
type: 'upcoming',
10+
full: 'Full description here.',
11+
},
412
{
513
name: 'ICAGI Student Dev Workshop',
614
description: 'An enriching day of learning with the students of ICAGI !',

0 commit comments

Comments
 (0)