Skip to content

Commit

Permalink
Add pictures to the meetups 👥.
Browse files Browse the repository at this point in the history
  • Loading branch information
gmarty committed Apr 3, 2024
1 parent d5e45e0 commit 8700877
Show file tree
Hide file tree
Showing 10 changed files with 25 additions and 13 deletions.
Binary file added src/assets/meetups/an-evening-of-tiny-talks.jpg
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 src/assets/meetups/firefox-os-meetups.jpg
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 src/assets/meetups/firefox-os-workshop.jpg
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 src/assets/meetups/week-of-wellbeing.jpg
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 src/assets/talks/firefox-os-workshop-dakar.jpg
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 src/assets/talks/js-open-day.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed src/assets/talks/js-open-day.png
Binary file not shown.
2 changes: 1 addition & 1 deletion src/i18n/ui.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export const ui = {
"I am a publlic speaker at conferences, mostly technical ones. Here's a list of the most significant talks I gave.",
'pages.meetups.title': 'Meetups',
'pages.meetups.description': 'Meetups',
'pages.meetups.allApps': 'Meetups and social events',
'pages.meetups.allApps': 'Meetups and events',
'pages.meetups.showcase':
'Here is a list of some meetups and social events I organised.',
'pages.blog.title': 'All blog posts',
Expand Down
26 changes: 15 additions & 11 deletions src/pages/meetups.astro
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@
import Card from '@/components/Card.astro'
import { useTranslations } from '@/i18n'
import RootLayout from '@/layouts/RootLayout.astro'
import anEveningOfTinyTalksImg from '@/assets/meetups/an-evening-of-tiny-talks.jpg'
import weekOfWellbeingImg from '@/assets/meetups/week-of-wellbeing.jpg'
import mozillaIotMeetup from '@/assets/covers/mozilla-iot-meetup-london-october-2016.jpg'
import firefoxOsWorkshopImg from '@/assets/meetups/firefox-os-workshop.jpg'
import firefoxOsMeetupsImg from '@/assets/meetups/firefox-os-meetups.jpg'
import organiseMeetupImg from '@/assets/covers/how-to-organise-a-meetup.jpg'
const t = useTranslations()
Expand All @@ -12,31 +16,31 @@ const data = [
title: 'An evening of Tiny Talks',
date: '2019-11-19',
description: `Meetup made of tiny talks related to web technologies, centred around underrepresented groups in the tech industry. Co-organised with Matt Barnett-Jones.`,
imgSrc: undefined,
imgSrc: anEveningOfTinyTalksImg,
},
{
title: 'Week of wellbeing',
date: '2018-06',
description: `Internal Hackweek event held at Twitter to sponsor wellbeing with sessions from external speakers on sleep, nutrition, mental health, coaching and yoga. Co-organised with Chelsea Hipwood.`,
imgSrc: undefined,
imgSrc: weekOfWellbeingImg,
},
{
title: 'Mozilla IOT Meetup',
date: 2016,
description: `A series of meetups to explore the IOT space with an emphasis on inspiring and diverse speakers rather than technical presentations.`,
imgSrc: undefined,
title: 'Mozilla IOT meetups',
date: 2017,
description: `A series of meetups to explore the IOT space with an emphasis on inspiring and diverse speakers rather than technical presentations. Co-organised with Sarah Allen.`,
imgSrc: mozillaIotMeetup,
},
{
title: 'Firefox OS workshop',
date: '2015-09',
date: '2015-09', // 2015-09-25
description: `A workshop to introduce tech people to Firefox OS. Given at JS Conf EU.`,
imgSrc: undefined,
imgSrc: firefoxOsWorkshopImg,
},
{
title: 'Firefox OS meetup',
title: 'Firefox OS meetups',
date: 2015,
description: `Meetups to socialise and discover the web technologies through the lens of Firefox OS.`,
imgSrc: undefined,
imgSrc: firefoxOsMeetupsImg,
},
{
title: 'Want to organise your own meetup?',
Expand Down
10 changes: 9 additions & 1 deletion src/pages/talks.astro
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ import { useTranslations } from '@/i18n'
import RootLayout from '@/layouts/RootLayout.astro'
import jsRoundaboutImg from '@/assets/talks/js-roundabout.jpg'
import mlocJsImg from '@/assets/talks/mloc-js.png'
import jsOpenDayImg from '@/assets/talks/js-open-day.png'
import firefoxOsWorkshopDakarImg from '@/assets/talks/firefox-os-workshop-dakar.jpg'
import jsOpenDayImg from '@/assets/talks/js-open-day.jpg'
import jsConfUsImg from '@/assets/talks/js-conf-us.jpg'
import rejectJsImg from '@/assets/talks/reject-js.jpg'
Expand All @@ -28,6 +29,13 @@ const data = [
imgSrc: mlocJsImg,
href: 'https://gmarty.github.io/2015-06-MLOC.js/',
},
{
title: 'Firefox OS workshop',
date: '2015-05',
location: 'Dakar, Senegal',
description: `A 3-day workshop during which junior developers built mobile apps. I introduced Firefox OS and how to build apps for it. Organised by Orange Senegal.`,
imgSrc: firefoxOsWorkshopDakarImg,
},
{
title:
'Je viens du futur et voici comment on code en JavaScript (JavaScript Open Day)',
Expand Down

0 comments on commit 8700877

Please sign in to comment.