diff --git a/src/components/sections/About.section.tsx b/src/components/sections/About.section.tsx deleted file mode 100644 index 4ae45b3a..00000000 --- a/src/components/sections/About.section.tsx +++ /dev/null @@ -1,71 +0,0 @@ -import React, { useEffect, useState } from 'react'; -import { AboutAirBalloon, AboutSectionDesktop, AboutSectionMobile } from '@assets'; - -const AboutSection: React.FC = () => { - const [translateY, setTranslateY] = useState(0); - - const handleScroll = () => { - // Control the speed at which the Balloon travels - const newTranslateY = window.scrollY * 0.45; - setTranslateY(newTranslateY); - }; - - useEffect(() => { - window.addEventListener('scroll', handleScroll); - - return () => window.removeEventListener('scroll', handleScroll); - }, []); - return ( -
-
- {/* MAIN SVG (Background) */} -
- about-statistics - about-statistics -
- {/* About HawkHacks Content */} -
-

- About Hawkhacks -

-
-

- HawkHacks came out of a desire to give everyone an equal - opportunity to get into tech, whether that be - programming, networking, researching, learning, or - teaching. -

-

- Join hundreds of students across Canada (and across the - world) in a 36 hour period of exploration, creativity, - and learning! -

-

- Remember, you don’t have to be a pro to participate - - show up with ten years or ten minutes of experience (oh - yeah, and a great attitute too!) -

-
-
- {/* Hawk Air Balloon */} - -
-
- ); -}; - -export { AboutSection }; -