diff --git a/astro/src/components/pages/App.tsx b/astro/src/components/pages/App.tsx index 460af8d..69e616e 100644 --- a/astro/src/components/pages/App.tsx +++ b/astro/src/components/pages/App.tsx @@ -12,19 +12,64 @@ import clsx from 'clsx'; const FORM_URL_ORGANIZER_APPLICATION = "https://forms.hackclub.com/t/8L51MzWyrHus"; const FORM_URL_RSVP = "https://forms.hackclub.com/t/a3QSt8MuvHus"; +function FlagshipCTA({ className, compact, maxWidth }: { className?: string; compact?: boolean; maxWidth?: boolean }) { + return ( +
+ ); +} + function App() { const [email, setEmail] = useState(""); const [scrollY, setScrollY] = useState(document.body.scrollTop); const [isLargeScreen, setIsLargeScreen] = useState(window.innerWidth >= 1280); + const [windowHeight, setWindowHeight] = useState(window.innerHeight); + const [windowWidth, setWindowWidth] = useState(window.innerWidth); const emailRef = useRef