From 9b7fdd85827350078ce81c353479af6c36333bbe Mon Sep 17 00:00:00 2001 From: Sofia Egan <108308587+EerierGosling@users.noreply.github.com> Date: Mon, 12 Jan 2026 20:11:41 -0500 Subject: [PATCH] adding flagship redirect --- frontend/src/App.tsx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index ebd8c81..5204712 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -56,6 +56,11 @@ function App() { const emailRef = useRef(null); useEffect(() => { + if (window.location.pathname === '/flagship') { + window.location.href = 'https://flagship.campfire.hackclub.com'; + return; + } + document.addEventListener("scroll", () => { setScrollY(window.scrollY); });