diff --git a/app/Contact/page.js b/app/Contact/page.js index f3ae0e4..5d8f42f 100644 --- a/app/Contact/page.js +++ b/app/Contact/page.js @@ -1,31 +1,273 @@ +'use client' + import styles from './page.module.css' import Navbar from '@components/Navbar/Navbar' import Header from '@components/Header/Header' import SubheaderShape from '@components/SubheaderShape/SubheaderShape' +import Footer from '@components/Footer/Footer' + +import {useRef, useState} from 'react'; + +const contactInformation = [ + { + icon : "PHONE", + text : "(347) 858 5959" + }, + { + icon : "EMAIL", + text : "sentinels@team5599.com" + }, + { + icon : "PIN", + text : "123 ADDRESS LANE\nBAYSIDE, NEW YORK 11365" + } +] + +const ContactInput = ({inputRef, onChange, value, label}) => { + return ( +
+ + {label} + + { + onChange(value); + }} + value={value} + style={{ + border : 0, + borderStyle : null, + borderBottomWidth : 2, + borderBottomColor : '#ddd', + height : 32, + padding : 0, + margin : 0, + fontSize : 22 + }} + /> +
+ ) +} + +const ContactSubjectContainer = () => { + return ( +
+ + Subject + +
+
+ + + General Inquiry + +
+
+ + + Sponsorship + +
+
+ + + Technical Inquiry (?) + +
+
+
+ ) +} export default function Contact() { + + const inputFirstNameRef = useRef(null); + const inputLastNameRef = useRef(null); + const inputEmailRef = useRef(null); + const inputPhoneRef = useRef(null); + + + const [inputFirstName, setInputFirstName] = useState(""); + const [inputLastName, setInputLastName] = useState(""); + const [inputEmail, setInputEmail] = useState(""); + const [inputPhone, setInputPhone] = useState(""); + return (
-
+

- WE ARE THE SENTINELS + Contact Us

-

- FIRST (C) Robotics Competition Team 5599, from Benjamin N. Cardozo High School in Bayside, New York -

- -
-

- { /* eslint-disable-next-line react/no-unescaped-entities */ } - The Sentinels are Benjamin N. Cardozo High School's Robotics Team. We compete in various annual robotics competitions against high schools across the globe, raising awareness for Science, Technology, Engineering, and Mathematics (STEM), along with teaching students aspects behind business and marketing, logistics, and media. We also participate in various community and school events. -

+ +
+
+
+
+
+ Contact Information +
+
+
+ { + contactInformation.map((contactItem, index) => { + return
+ + ICON + + + {contactItem.text} + +
+ }) + } +
+
+ + Social Media Icons + +
+ +
+
+
+ + +
+
+ + +
+ +
- +
+
) }