diff --git a/apps/blade/public/prospectus.pdf b/apps/blade/public/prospectus.pdf deleted file mode 100644 index 77e6fd603..000000000 Binary files a/apps/blade/public/prospectus.pdf and /dev/null differ diff --git a/apps/blade/src/app/sponsor/page.tsx b/apps/blade/src/app/sponsor/page.tsx index 3201e9d3a..78d3b89eb 100644 --- a/apps/blade/src/app/sponsor/page.tsx +++ b/apps/blade/src/app/sponsor/page.tsx @@ -1,5 +1,5 @@ import type { Metadata } from "next"; -import Link from "next/link"; +import { Mail } from "lucide-react"; import { SPONSOR_VIDEO_LINK } from "@forge/consts/knight-hacks"; import { Button } from "@forge/ui/button"; @@ -7,66 +7,106 @@ import { Button } from "@forge/ui/button"; export const metadata: Metadata = { title: "Sponsor Knight Hacks!", description: "Help us make dreams!", -}; // doesn't follow the metadata convention to prevent confusion from sponsors +}; + +const SPONSOR_VIDEO_LINK_2 = + "https://www.youtube.com/embed/OzW_4QeCfM0?si=G8SUf8UbEo2W5MnL"; + +const STATS = [ + { value: "1,000+", label: "Students" }, + { value: "36", label: "Hours" }, + { value: "185+", label: "Projects" }, + { value: "1", label: "Weekend" }, +]; + +const VIDEOS = [SPONSOR_VIDEO_LINK, SPONSOR_VIDEO_LINK_2]; export default function Sponsor() { return ( -
-

- Want to sponsor{" "} - - Knight Hacks? - +
+ + + +
+
+ ); +} + +function Hero() { + return ( +
+

+ Partner with{" "} + Knight Hacks

-

- Every year,{" "} - Knight Hacks hosts - a 36-hour event at the University of Central Florida, where students - come together to create and learn, by developing a project over the - course of a weekend. We aim to create a - - {" "} - diverse, welcoming, and inclusive community - {" "} - for anyone interested in technology. -

-

- Companies who sponsor us are able to mentor, teach, and recruit{" "} - around 600+{" "} - brilliant students with a passion for building, and gain brand - recognition. See below to learn more about us! +

+ Join us in empowering the next generation of innovators. Every year, we + bring together{" "} + 1,000+ students + at UCF for a 36-hour hackathon where creativity meets technology.

-
-

- - View how{" "} - Knight Hacks{" "} - impacts those who attend: - -

- -
-
-

- - Want to make dreams? View how you can help make{" "} - Knight Hacks{" "} - possible: - -

-
- - - +
+ ); +} + +function Stats() { + return ( +
+ {STATS.map((stat) => ( +
+
+ {stat.value} +
+
{stat.label}
+ ))} +
+ ); +} + +function Videos() { + return ( +
+

+ See the Impact +

+
+ {VIDEOS.map((src) => ( +
+
+