diff --git a/public/tectonicPlates.png b/public/tectonicPlates.png
new file mode 100644
index 0000000..7f4f846
Binary files /dev/null and b/public/tectonicPlates.png differ
diff --git a/src/app/the-team/page.tsx b/src/app/the-team/page.tsx
index 679e197..2422329 100644
--- a/src/app/the-team/page.tsx
+++ b/src/app/the-team/page.tsx
@@ -33,7 +33,7 @@ export default function Page() {
return (
{/* Overlay */}
diff --git a/src/components/LoggingModal.tsx b/src/components/LoggingModal.tsx
new file mode 100644
index 0000000..26d0817
--- /dev/null
+++ b/src/components/LoggingModal.tsx
@@ -0,0 +1,87 @@
+import Link from "next/link";
+import React, { Dispatch, SetStateAction, useState } from "react";
+import { TbHexagon } from "react-icons/tb";
+
+import Event from "@appTypes/Event";
+import getMagnitudeColor from "@utils/getMagnitudeColour";
+
+function setButton1(button1Name) {
+ const [modalOpen, setModalOpen] = useState(false);
+ return (
+ modalOpen && (
+
+
+
+
Log New Earthquake
+
+
+ {/* Blank Table */}
+
+
+
+
+
+
+
+ )
+ );
+}