diff --git a/Application/app/contact/page.tsx b/Application/app/contact/page.tsx
new file mode 100644
index 0000000..f925c6d
--- /dev/null
+++ b/Application/app/contact/page.tsx
@@ -0,0 +1,83 @@
+"use client";
+
+import { useState } from 'react';
+
+import {
+ Box, Container, Button, Field, Fieldset, Input, Stack, Textarea
+} from '@chakra-ui/react';
+
+export default function Contact() {
+ const [isLoading, setIsLoading] = useState(false);
+
+ const handleSubmit = async () => {
+ setIsLoading(true);
+
+ // Replace this delay with your real submit logic (API call, form action, etc.).
+ await new Promise((resolve) => setTimeout(resolve, 1500));
+
+ setIsLoading(false);
+ };
+
+ return (
+
+
+
+
+
+
+
+
+
+
+
+
+ Contact details
+
+
+
+ Please provide your contact details below and we will reach out to you soon!
+
+
+
+
+
+
+ Name
+
+
+
+
+ Email address
+
+
+
+
+ Major and Concentration
+
+
+
+
+ What are some of your interests?
+
+
+
+
+ Any questions for the club?
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
\ No newline at end of file
diff --git a/Application/components/navbar.tsx b/Application/components/navbar.tsx
index 950e991..25f9965 100644
--- a/Application/components/navbar.tsx
+++ b/Application/components/navbar.tsx
@@ -14,6 +14,7 @@ export default function Navbar() {
About Us
FAQ
Recordings
+ Contact