Skip to content

Commit 9e8829f

Browse files
feat(site): reopen CFP and update event date copy
1 parent d82c478 commit 9e8829f

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

src/components/header.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ export const Header = () => (
147147
as="nav"
148148
>
149149
<MenuLink href="#about">About 🍕</MenuLink>
150-
{/* <MenuLink href="#cfp">CFP 🙋🏻‍♀️</MenuLink> */}
150+
<MenuLink href="#cfp">CFP 🙋🏻‍♀️</MenuLink>
151151
<MenuLink href="#schedule">Program 📅</MenuLink>
152152
<MenuLink href="#organizers">Organizers 👩🏻</MenuLink>
153153
<MenuLink href="#venue">Venue 🏰</MenuLink>

src/data/generic.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
export const genericInformation = {
22
pageTitle: "Warsaw Python Pizza",
3-
socialDescription: "Warsaw Python Pizza, join us in Warsaw on 9th May 2026",
3+
socialDescription: "Warsaw Python Pizza, join us in Warsaw on May 9, 2026",
44
siteHeading: "Warsaw Python Pizza",
55
subHeading: "PJAIT building A, Koszykowa 86, Warsaw, Poland",
66
whenDatetime: "2026/05/09 10:00 AM UTC+2",

src/pages/index.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import { Header } from "~/components/header";
66
import { genericInformation } from "~/data/generic";
77
import { About } from "~/sections/about";
88
import { CFP_Closed } from "~/sections/cfp_closed";
9+
import { CFP } from "~/sections/cfp";
910
import { Coc } from "~/sections/coc";
1011
import { Hero } from "~/sections/hero";
1112
import { OrganizerSection } from "~/sections/organizers";
@@ -29,7 +30,7 @@ const Home = () => (
2930
<meta name="twitter:image" content="https://warsaw.python.pizza/social-image.jpg" />
3031
<meta
3132
name="twitter:description"
32-
content="Join the fun 🥳🎉🍕 on 9th May 2026"
33+
content="Join the fun 🥳🎉🍕 on May 9, 2026"
3334
/>
3435
<meta name="photo-attribution" content="Photo by --todo (--url todo)" />
3536
<script
@@ -73,6 +74,7 @@ const Home = () => (
7374
<Schedule />
7475
<OrganizerSection />
7576
<Sponsors />
77+
<CFP />
7678
{/* <CFP_Closed /> */}
7779
<Venue />
7880
<Coc />

src/sections/cfp.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ import { ContentButton } from "~/components/header";
44

55
export const CFP = () => (
66
<Container id="cfp" variant="smallContainer">
7-
<Heading>Call For Proposals is open until <s>31st December</s> 7th January</Heading>
7+
<Heading>Call For Proposals is open until April 12 2026, 23:59 CET</Heading>
88
<Paragraph>
99
<a
10-
href="https://forms.gle/ktaNSjRsrt6YcQEK9"
10+
href="https://forms.gle/76iATyPAkA3fw2DDA"
1111
target="_blank"
1212
rel="noopener noreferrer"
1313
>
@@ -31,7 +31,7 @@ export const CFP = () => (
3131
inspire a new generation of 🐍 loving people!
3232
</Paragraph>
3333
<Box sx={{ m: "5rem" }}>
34-
<ContentButton href="https://forms.gle/ktaNSjRsrt6YcQEK9">
34+
<ContentButton href="https://forms.gle/76iATyPAkA3fw2DDA">
3535
Click here to send your Proposal
3636
</ContentButton>
3737
</Box>{" "}

0 commit comments

Comments
 (0)