Skip to content

Commit

Permalink
feat: add early bird info to all submission pages
Browse files Browse the repository at this point in the history
  • Loading branch information
dada878 committed Nov 27, 2024
1 parent 51e6db5 commit 2896af1
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions app/cfp/(submission)/poster/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import CodeOfConduct from "../../_components/code-of-conduct";
import TableOfContent from "../_components/table-of-content";
import FAQ from "../../_components/faq";
import { InformationField } from "../normal/page";
import EarlyBird from "../_components/early-bird";

export default function Page() {
const sections = [
Expand Down Expand Up @@ -69,6 +70,10 @@ export default function Page() {
<Timeline isPoster />
</section>

<section className="my-4 -mt-[60px] space-y-4 pt-[80px] md:mb-16">
<EarlyBird />
</section>

<section
id="session-types"
className="my-4 -mt-[60px] space-y-4 pt-[80px] md:mb-16"
Expand Down
5 changes: 5 additions & 0 deletions app/cfp/(submission)/undefined/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import TableOfContent from "../_components/table-of-content";
import FAQ from "../../_components/faq";
import Link from "next/link";
import { InformationField } from "../normal/page";
import EarlyBird from "../_components/early-bird";

export default function Page() {
const sections = [
Expand Down Expand Up @@ -70,6 +71,10 @@ export default function Page() {
<Timeline isPoster={false} />
</section>

<section className="my-4 -mt-[60px] space-y-4 pt-[80px] md:mb-16">
<EarlyBird />
</section>

<section
id="session-types"
className="my-4 -mt-[60px] space-y-4 pt-[80px] md:mb-16"
Expand Down

0 comments on commit 2896af1

Please sign in to comment.