Skip to content
Merged
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
9 changes: 9 additions & 0 deletions pwa/app/(con)/[locale]/con/[edition]/speakers/[slug]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import { getConferencesBySpeaker } from "api/con/conferences";
import SpeakerPage from "./SpeakerPage";
import { Locale, i18n } from "i18n/i18n-config";
import { Metadata } from "next";
import { getRootUrl } from "utils";

async function getSpeaker(slug: string, edition: string, locale: string) {
const speaker = await getSpeakerData(slug, edition, locale);
Expand Down Expand Up @@ -43,6 +44,14 @@ export async function generateMetadata({ params }: Props): Promise<Metadata> {
openGraph: {
title: `${speaker.name} - API Platform Conference`,
description: DESCRIPTION,
images: [
{
url: `${getRootUrl()}/images/con/og-${edition}.png`,
width: 1200,
height: 630,
alt: `API Platform Conference ${edition}`,
},
],
},
twitter: {
title: `${speaker.name} - API Platform Conference`,
Expand Down
3 changes: 2 additions & 1 deletion pwa/data/con/2025/speakers/en/mathieu-santostefano.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ type: speaker
id: mathieu-santostefano-2025
number: 100
name: Mathieu Santostefano
job: Symfony Core Team
job: Tech Expert
company: Sensiolabs
bluesky: https://bsky.app/profile/welcomattic.com
mastodon: https://phpc.social/@welcomattic
github: https://github.com/welcomattic
Expand Down
3 changes: 2 additions & 1 deletion pwa/data/con/2025/speakers/fr/mathieu-santostefano.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ type: speaker
id: mathieu-santostefano-2025
number: 80
name: Mathieu Santostefano
job: Symfony Core Team
job: Tech Expert
company: Sensiolabs
bluesky: https://bsky.app/profile/welcomattic.com
mastodon: https://phpc.social/@welcomattic
github: https://github.com/welcomattic
Expand Down
Loading