diff --git a/app/page.tsx b/app/page.tsx index 3428c6c..c1e934a 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -1,3 +1,5 @@ +import AboutSection from "@/components/AboutSection"; + export default function Home() { return (
@@ -9,8 +11,10 @@ export default function Home() { {/* START OF THE ABOUT SECTION */}
- {/* About code goes here */} -

About

+

+ About Us +

+
{/* START OF THE CHALLENGES SECTION */} diff --git a/components/AboutSection.tsx b/components/AboutSection.tsx new file mode 100644 index 0000000..b3ebcbd --- /dev/null +++ b/components/AboutSection.tsx @@ -0,0 +1,56 @@ +export default function AboutSection() { + return ( +
+ + +
+ ) +} + +function AboutContent() { + return ( +
+
+

+ Graphics Programming Knights (GPK) is a{" "} + + UCF Registered Student Organization + {" "} + dedicated to bringing together students passionate about graphics programming, shaders, game development, and real-time rendering. +

+

+ We host hands-on workshops, exciting monthly coding challenges, inspiring speaker events from industry professionals, and fun socials that bring our community together. +

+
+ + {/* Buttons Section */} +
+ + + + +
+
+ ); +} + +function AboutCarousel() { + return ( +
+ Carousel goes here +
+ ); +}