misc design progress, more variables, news and event lists, remove old date list, etc

This commit is contained in:
2024-06-24 01:13:03 +02:00
parent 33be02ee69
commit c3484b35aa
22 changed files with 135 additions and 247 deletions
@@ -1,7 +1,6 @@
import { getClient } from "@/app/client";
import { Blocks } from "@/components/blocks/Blocks";
import { DateList } from "@/components/events/DateList";
import { DateListOld } from "@/components/events/DateListOld";
import { EventHeader } from "@/components/events/EventHeader";
import { BgPig } from "@/components/general/BgPig";
import { graphql } from "@/gql";
@@ -57,7 +56,6 @@ export default async function Page({ params }: { params: { slug: string } }) {
<EventHeader event={event} />
<section className="pageContent">
<DateList event={event} />
<DateListOld />
<Blocks blocks={event.body} />
</section>
</main>