-
-
-
-
-
+import { createRoot } from "react-dom/client";
+const container = document.getElementById("root");
+const root = createRoot(container);
+root.render(
+
+
+
-
-
- ,
-
- document.getElementById('root'),
+
+
);
diff --git a/src/routes/Agm.jsx b/src/routes/Agm.jsx
new file mode 100644
index 0000000..aed4026
--- /dev/null
+++ b/src/routes/Agm.jsx
@@ -0,0 +1,106 @@
+import { Close, CopyAll, LinkOutlined, OpenInNew } from "@mui/icons-material";
+import { Box, Button, Dialog, IconButton, Stack } from "@mui/material";
+import React from "react";
+import "../App.css";
+import "../assets/agm.css";
+
+function Agm() {
+ const [isDialogOpen, setIsDialogOpen] = React.useState(false);
+ return (
+
+
+
+
Annual General Meeting (AGM) 2024
+
+ Have your say on our 2025 executive team and nominate yourself or others to be in the 2025 Code Network Executive team.
+
+
+ The 2024 Annual General Meeting will be held on Monday, September 9th at 5pm in GP D-108.
+
+
+ I know... it sounds boring, but the AGM is arguably the most important event of the year for Code Network. This is where our
+ club reflects on the year that has been and we look forward to the new year ahead.
+
+
You are invited to join us at our 2024 Annual General Meeting. This is your opportunity to:
+
+ - 📣 Hear about our club's achievements from this year
+ - ❔ Ask questions about our club and our achievements
+ - 📝 And most importantly, to join the 2025 Executive Team and shape the future of our club!
+
+
This page may be updated with additional information in the lead up to our AGM. To learn more see:
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
+
+export default Agm;
diff --git a/src/routes/Showcase.jsx b/src/routes/Showcase.jsx
new file mode 100644
index 0000000..f0ddc39
--- /dev/null
+++ b/src/routes/Showcase.jsx
@@ -0,0 +1,15 @@
+import { Box, Typography } from "@mui/material";
+
+export default function Showcase() {
+ return (
+
+
+
+ 2024 Winter Hackathon
+ This event has now ended!
+ Check back here later to see a showcase of projects created at our 2024 Winter Hackathon
+
+
+
+ );
+}