Skip to content

Commit 15803d7

Browse files
committed
feat: add cfp link on 2025 home
1 parent ec81df0 commit 15803d7

File tree

4 files changed

+32
-42
lines changed

4 files changed

+32
-42
lines changed

pwa/app/(con)/[locale]/con/2025/components/HomePage.tsx

Lines changed: 24 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -89,46 +89,6 @@ const HomePage = ({ speakers, partners, images }: HomePageProps) => {
8989
</PictureGallery>
9090
</div>
9191
</Section>
92-
<div className="pb-12">
93-
<AfterMovie />
94-
</div>
95-
<Section
96-
section="missing"
97-
className="relative z-10 text-center overflow-y-clip bg-white"
98-
>
99-
<div className="container text-center">
100-
<SectionTitle>
101-
<Translate
102-
translationKey="missing_conferences.title"
103-
translationParams={{ edition: "2024" }}
104-
/>
105-
</SectionTitle>
106-
<SectionSubTitle>
107-
<Translate
108-
translationKey="2025.missing_conferences.subtitle"
109-
translationParams={{
110-
link: (
111-
<a
112-
className="link"
113-
href="https://www.youtube.com/@coopTilleuls"
114-
target="_blank"
115-
rel="noopener noreferrer"
116-
>
117-
{t("2025.missing_conferences.link")}
118-
</a>
119-
),
120-
}}
121-
/>
122-
</SectionSubTitle>
123-
<Button
124-
className="mx-auto mb-10"
125-
external
126-
to="https://www.youtube.com/@coopTilleuls"
127-
>
128-
{t("2025.missing_conferences.subscribe")}
129-
</Button>
130-
</div>
131-
</Section>
13292
<Section
13393
section="speakers"
13494
className="z-10 relative py-4 overflow-x-hidden text-white"
@@ -170,6 +130,30 @@ const HomePage = ({ speakers, partners, images }: HomePageProps) => {
170130
</Button>
171131
</div>
172132
</Section>
133+
<Section
134+
section="missing"
135+
className="relative z-10 text-center overflow-y-clip bg-white"
136+
>
137+
<div className="container text-center">
138+
<SectionTitle>
139+
<Translate
140+
translationKey="missing_conferences.title"
141+
translationParams={{ edition: "2024" }}
142+
/>
143+
</SectionTitle>
144+
<SectionSubTitle>{t("missing_conferences.subtitle")}</SectionSubTitle>
145+
<Button
146+
className="mx-auto mb-10"
147+
external
148+
to="https://www.youtube.com/playlist?list=PL3hoUDjLa7eSppJSvwSIeBexYZQWkN0bm"
149+
>
150+
{t("missing_conferences.watch_the_conferences")}
151+
</Button>
152+
</div>
153+
</Section>
154+
<div className="pb-12">
155+
<AfterMovie />
156+
</div>
173157
<Venue subtitle={t("2025.venue.subtitle")} />
174158
<Section section="sponsorship" className="py-8">
175159
<div className="container text-center">

pwa/data/con/2025/nav.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ const nav = {
66
text: "nav.links.home",
77
mobileOnly: true,
88
},
9+
{
10+
to: "/{{locale}}/con/2025/call-for-papers",
11+
text: "nav.links.call_for_papers",
12+
},
913
{
1014
to: "/{{locale}}/con/editions",
1115
text: "nav.links.previous_editions",

pwa/i18n/dictionaries/en.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,8 @@
296296
"speakers": "Speakers",
297297
"sponsorship": "Sponsorship",
298298
"venue": "Venue",
299-
"faq": "FAQ"
299+
"faq": "FAQ",
300+
"call_for_papers": "Call for papers"
300301
}
301302
},
302303
"or_follow_us": "or follow us on social media",

pwa/i18n/dictionaries/fr.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,8 @@
292292
"speakers": "Speakers",
293293
"sponsorship": "Partenariat",
294294
"venue": "Le lieu",
295-
"faq": "FAQ"
295+
"faq": "FAQ",
296+
"call_for_papers": "Call for papers"
296297
}
297298
},
298299
"or_follow_us": "ou suivez-nous sur nos réseaux",

0 commit comments

Comments
 (0)