Skip to content

Commit

Permalink
Keynote ouverture
Browse files Browse the repository at this point in the history
  • Loading branch information
briangtn committed Jul 16, 2024
1 parent efc3202 commit d37709a
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 7 deletions.
9 changes: 9 additions & 0 deletions data/sessions/keynote.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
key: opening_keynote
title: Keynote d'ouverture
language: French
talkType: conference
speakers:
- anonymous
slot: day-1-keynote-open
room: Jules Verne
6 changes: 6 additions & 0 deletions data/speakers/anonymous.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
key: anonymous
name: Secret 🤫
feature: false
photoUrl: https://upload.wikimedia.org/wikipedia/commons/thumb/e/e0/Anonymous.svg/1200px-Anonymous.svg.png
socials: {}
2 changes: 1 addition & 1 deletion json_schemas/schema_schedule.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"Jules Verne",
"Titan",
"Belem",
"Tour de Bretagne",
"Tour Bretagne",
"Les Machines",
"Hangar",
"L'Atelier"
Expand Down
2 changes: 1 addition & 1 deletion json_schemas/schema_sessions.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
"Jules Verne",
"Titan",
"Belem",
"Tour de Bretagne",
"Tour Bretagne",
"Les Machines",
"Hangar",
"L'Atelier"
Expand Down
7 changes: 4 additions & 3 deletions src/components/schedule/common.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
import {
Brush,
Cloud,
Code, Computer, DeveloperBoard,
Code,
DeveloperBoard,
Language,
Lightbulb,
PhoneAndroid,
Security,
SmartToy,
SmartToy
} from "@mui/icons-material";
import { Avatar, Chip, Tooltip } from "@mui/material";
import { graphql, useStaticQuery } from "gatsby";
Expand All @@ -27,7 +28,7 @@ export const rooms: Rooms[] = [
"Jules Verne",
"Titan",
"Belem",
"Tour de Bretagne",
"Tour Bretagne",
"Les Machines",
"Hangar",
"L'Atelier",
Expand Down
4 changes: 2 additions & 2 deletions src/components/session/sessionPageTemplate.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,11 @@ const SessionPageTemplate: React.FC<{ pageContext: { session: Session } }> = ({
{slotLabel} {session.room}
</Typography>
</Stack>
<Stack spacing={1}>
{ session.speakers ? <Stack spacing={1}>
{session.speakers.map((speaker) => (
<SpeakerCard key={speaker} speakerKey={speaker} />
))}
</Stack>
</Stack> : <></>}

{(session.youtube || session.slides) && (
<Stack direction="row" spacing={3}>
Expand Down

0 comments on commit d37709a

Please sign in to comment.