Skip to content

Commit b845c6f

Browse files
committed
Close CFP
1 parent ea4f0cc commit b845c6f

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

src/pages/index.tsx

+1-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { Footer } from "~/components/footer";
55
import { Header } from "~/components/header";
66
import { genericInformation } from "~/data/generic";
77
import { About } from "~/sections/about";
8-
import { CFP } from "~/sections/cfp";
8+
import { CFP_Closed } from "~/sections/cfp_closed";
99
import { Coc } from "~/sections/coc";
1010
import { Hero } from "~/sections/hero";
1111
import { OrganizerSection } from "~/sections/organizers";
@@ -40,7 +40,6 @@ const Home = () => (
4040
<Schedule />
4141
<OrganizerSection />
4242
<Sponsors />
43-
<CFP />
4443
<Venue />
4544
<Coc />
4645
<Footer />

src/sections/schedule.tsx

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Container, Heading } from "theme-ui";
1+
import {Container, Heading, Paragraph} from "theme-ui";
22

33
import { ScheduleCard } from "~/components/schedule-card";
44
import { SCHEDULE } from "~/data/schedule";
@@ -7,6 +7,10 @@ export const Schedule = () => (
77
<Container id="schedule" variant="smallContainer">
88
<Heading>Schedule</Heading>
99

10+
<Paragraph>
11+
We would like to thank everyone who submitted their proposals! We are now compiling the final version of the event schedule.
12+
</Paragraph>
13+
1014
{SCHEDULE.map((schedule, index) => (
1115
<ScheduleCard
1216
variant={schedule.label ? "info" : "talk"}

0 commit comments

Comments
 (0)