);
}
diff --git a/content/playground/after-hours.event.mdx b/content/playground/after-hours.event.mdx
new file mode 100644
index 00000000..45fdb7d3
--- /dev/null
+++ b/content/playground/after-hours.event.mdx
@@ -0,0 +1,19 @@
+export const metadata = {
+ name: "Afterhours: Personal Relationships",
+ short: "Learn how React works and make your own version!",
+ date: new Date("2021-03-02 2:00 PM"),
+ location: "Online - Twitch",
+};
+
+The past year has been tough for all of us, having to deal with the pandemic
+while studying or working remotely. If you've felt that meeting new people and
+sustaining relationships with others has never been more challenging, we feel
+that too, and we want to talk about it.
+
+CSC brings you the third chapter of Afterhours, and this time we're discussing
+Personal Relationships. Join us for a chat about how our relationships
+(platonic and romantic) have been affected, whether that be due to co-op,
+sequence changes, or COVID. We'll be sharing our own personal stories and we'd
+love for you all to join in on the discussion.
+
+Registration is required for attendance, so don't miss out!
diff --git a/next-env.d.ts b/next-env.d.ts
index 7b7aa2c7..0c47f061 100644
--- a/next-env.d.ts
+++ b/next-env.d.ts
@@ -1,2 +1,16 @@
///
///
+
+interface EventMetadata {
+ name: string;
+ short: string;
+ date: Date;
+ location: string;
+}
+
+declare module "*.event.mdx" {
+ const ReactComponent: ComponentType;
+
+ export const metadata: EventMetadata;
+ export default ReactComponent;
+}
diff --git a/pages/_app.css b/pages/_app.css
index 068d8cec..dd661abc 100644
--- a/pages/_app.css
+++ b/pages/_app.css
@@ -2,6 +2,10 @@
font-family: "Poppins", "sans-serif";
}
+code, pre {
+ font-family: monospace;
+}
+
/* Default is light theme */
body {
--off-white: #fdf8f5;
diff --git a/pages/index.mdx b/pages/index.mdx
index 19453bcd..2ad8a3f5 100644
--- a/pages/index.mdx
+++ b/pages/index.mdx
@@ -1,14 +1 @@
-# Home page
-
-Let's write some markdown.
-
-- foo
-- bar
-- baz
-
-## Subtopic
-
-More stuff
-
-1. hello
-1. world
\ No newline at end of file
+Visit the [playground](/playground)
\ No newline at end of file
diff --git a/pages/playground.mdx b/pages/playground.mdx
index b453326d..87d8a405 100644
--- a/pages/playground.mdx
+++ b/pages/playground.mdx
@@ -1,11 +1,10 @@
-import {Playground} from '../components/playground'
+import {MiniEventCardDemo} from '../components/playground'
# Playground
-- _Some_
-- **Markdown**
-- [Content](https://csclub.uwaterloo.ca)
+## ``
----
+The `` component has a collapsible description, and it used on
+the events page. It uses the `` tag and works without JS!
-
\ No newline at end of file
+
\ No newline at end of file