From c2c23e5fcf0ef503474d8db6fb1b3a4b29b44098 Mon Sep 17 00:00:00 2001 From: Tony Kan Date: Fri, 29 Nov 2024 06:10:03 -0800 Subject: [PATCH] feat(contact): Implement Contact page - Added contact information with email addresses and social media links. - Included a map component to show the location. - Added sections for team email, development team, GitHub, X, Instagram, and Discord. --- pages/about.jsx | 2 +- pages/contact.jsx | 132 ++++++++++++++++++++++++++++++++++++++++++++++ pages/index.jsx | 2 +- 3 files changed, 134 insertions(+), 2 deletions(-) create mode 100644 pages/contact.jsx diff --git a/pages/about.jsx b/pages/about.jsx index e2c9208..2168739 100644 --- a/pages/about.jsx +++ b/pages/about.jsx @@ -6,7 +6,7 @@ import Link from 'next/link'; import Map from '../components/map'; -export default function About() { +export default function AboutPage() { return (
diff --git a/pages/contact.jsx b/pages/contact.jsx new file mode 100644 index 0000000..21b6709 --- /dev/null +++ b/pages/contact.jsx @@ -0,0 +1,132 @@ +/** + * @fileoverview Contact Page + * @description The contact page of the website. + */ + +import Map from '../components/map'; + +export default function ContactPage() { + return ( +
+ {/* Page Header */} +

Contact Us

+

+ We'd love to hear from you! Whether you have a question, want to + collaborate, or just want to say hi, feel free to reach out through any + of the channels below. +

+ + {/* Contact Information */} +
+ {/* Team Email */} +
+
+
+

Team Email

+ + team@clders.com + +
+
+ + {/* Development Team */} +
+
💻
+
+

Development Team

+ + dev@clders.com + +
+
+ + {/* GitHub */} +
+
🛠
+ +
+ + {/* X (formerly Twitter) */} +
+
👑
+
+

Follow Us on X

+ + x.com/clders + +
+
+ + {/* Instagram */} +
+
🎥
+
+

+ Follow Us on Instagram +

+ + instagram.com/cldcode + +
+
+ + {/* Discord */} +
+
💬
+
+

Join Us on Discord

+ + discord.com/invite/reNDecxJ9Q + +
+
+
+ + {/* Address Section */} +
+

Visit Us

+

+ Our location: 169 S St John Ave, Pasadena, CA 91105 +

+
+ {/* Embed Map Component */} + +
+
+
+ ); +} diff --git a/pages/index.jsx b/pages/index.jsx index cb45cf9..ad3d219 100644 --- a/pages/index.jsx +++ b/pages/index.jsx @@ -3,7 +3,7 @@ * @description The home page of the website. */ -export default function Home() { +export default function HomePage() { return ( <> {/* Hack Club Flag */}