make some fun components for rich text and events 🎷

This commit is contained in:
elisejakob
2024-05-10 00:56:40 +02:00
parent e8e9842413
commit ee339e9cac
11 changed files with 297 additions and 5 deletions

View File

@ -1,5 +1,6 @@
import { gql } from "@apollo/client";
import { getClient } from "@/app/client";
import { EventList } from "@/components/events/EventList";
export default async function Page() {
const query = gql(`
@ -23,7 +24,7 @@ export default async function Page() {
return (
<main className="site-main" id="main">
<section className="page-header textOnly">
<section className="page-header">
<h1>Arrangementer</h1>
<p>woo</p>
</section>
@ -34,6 +35,7 @@ export default async function Page() {
))}
</section>
)}
<EventList />
</main>
);
}