diff --git a/src/components/sections/Contact.section.tsx b/src/components/sections/Contact.section.tsx index 00e3b89b..ba5c4039 100644 --- a/src/components/sections/Contact.section.tsx +++ b/src/components/sections/Contact.section.tsx @@ -3,68 +3,68 @@ import { TopBorder, BottomBorder, MiddleBody, Hawk, BirdParts } from '@assets'; import { Button, SocialIcons } from '@components'; const ContactSection: React.FC = () => { - const openInNewTab = (url: string) => { - const newWindow = window.open(url, '_blank', 'noopener,noreferrer'); - if (newWindow) newWindow.opener = null; - }; + const openInNewTab = (url: string) => { + const newWindow = window.open(url, '_blank', 'noopener,noreferrer'); + if (newWindow) newWindow.opener = null; + }; - const handleSubmit = (e: React.MouseEvent) => { - e.preventDefault(); // Prevent default form submission behavior - openInNewTab('http://eepurl.com/hDHf8b'); - }; + const handleSubmit = (e: React.MouseEvent) => { + e.preventDefault(); // Prevent default form submission behavior + openInNewTab('http://eepurl.com/hDHf8b'); + }; - return ( -
- - - -
-
-

- CONTACT US -

-

- Reach out at hello@hawkhacks.ca for any help or - support, and please be sure to join the{' '} - HawkHacks Discord community! -

-
-
-
-
- + return ( +
+ + + +
+
+

+ CONTACT US +

+

+ Reach out at hello@hawkhacks.ca for any help or + support, and please be sure to join the{' '} + HawkHacks Discord community! +

+
+
+
+
+ +
+
+ +
+
+
-
- -
-
-
-
- - -
- ); + + + + ); }; -export { ContactSection }; \ No newline at end of file +export { ContactSection };