Skip to content
Open
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
6 changes: 3 additions & 3 deletions pwa/app/(common)/events/components/EventsPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,13 @@ export default function EventsPage({ events }: EventsPageProps) {
city: "Lille",
},
startDate: {
date: "2025-09-18",
date: "2026-09-17",
},
endDate: {
date: "2025-09-19",
date: "2026-09-18",
},
picture: `/images/con/og-2021.png`,
title: "API Platform Conference 2025",
title: "API Platform Conference 2026",
slug: "api-con",
};

Expand Down
29 changes: 29 additions & 0 deletions pwa/app/(con)/[locale]/con/2025/components/AfterMovie.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
"use client";
import SectionTitle from "components/con/common/typography/SectionTitle";
import Section from "components/con/home/Section";
import { useContext } from "react";
import { LanguageContext } from "contexts/con/LanguageContext";
import SectionSubTitle from "components/con/common/typography/SectionSubtitle";

export default function AfterMovie() {
const { t, Translate } = useContext(LanguageContext);
return (
<Section section="aftermovie">
<div className="container text-center flex flex-col items-center">
<SectionTitle dark>
<Translate translationKey="2024.aftermovie.title" />
</SectionTitle>
<SectionSubTitle dark>{t("2024.aftermovie.subtitle")}</SectionSubTitle>
<iframe
className="aspect-video w-full max-w-2xl border-white border-8 shadow-2xl"
src="https://www.youtube.com/embed/uDjcDr9NjI8?controls=0"
title="YouTube video player"
frameBorder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
referrerPolicy="strict-origin-when-cross-origin"
allowFullScreen
></iframe>
</div>
</Section>
);
}
3 changes: 3 additions & 0 deletions pwa/app/(con)/[locale]/con/2025/components/HomePage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@ const HomePage = ({ speakers, partners, images }: HomePageProps) => {
{t("2025.baseline")}
</p>
<div className="flex gap-2">
<Button className="pink" to={`/${locale}/con`}>
{t("back_to_current_edition")}
</Button>
{currentEdition === "2025" && (
<BuyButton className="mr-2" id="cover">
{t("buy_tickets")}
Expand Down
2 changes: 1 addition & 1 deletion pwa/app/(con)/[locale]/con/2025/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export async function generateMetadata({ params }: Props): Promise<Metadata> {
alternates: {
languages: {
en: locale === "en" ? undefined : "/con/2025",
fr: locale === "fr" ? undefined : "/fr/con/2024",
fr: locale === "fr" ? undefined : "/fr/con/2025",
},
},
};
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
"use client";
import ReviewCoverBase from "components/con/review/ReviewCover";
import { useContext } from "react";
import { LanguageContext } from "contexts/con/LanguageContext";

export default function ReviewCover() {
const { t, Translate, locale } = useContext(LanguageContext);
return (
<ReviewCoverBase
edition="2025"
title={t("2025.review.title")}
baseline={
<>
<p>{t("2025.review.subtitle_1")}</p>
<Translate
className="text-sm mt-4"
translationKey="2025.review.subtitle_2"
translationParams={{
link: (
<a
className="font-bold underline"
href="https://conference-hall.io/api-platform-conference-2025-lille-and-online"
target="_blank"
rel="noreferrer noopener"
>
{t("2025.review.link")}
</a>
),
link2: (
<a
className="font-bold underline"
href={`/${locale}/con/2025/tickets`}
>
{t("2025.review.link2")}
</a>
),
}}
/>
</>
}
/>
);
}
Loading