From ffbb759013cf86a46fa4859c349a60946590a1c3 Mon Sep 17 00:00:00 2001 From: ali <159713281+cunkin375@users.noreply.github.com> Date: Sat, 13 Jun 2026 12:55:16 -0400 Subject: [PATCH 1/2] feat: add about section chore: edit about us heading to fit figma styling minor chore: structure AboutSection.tsx --- app/page.tsx | 8 ++++++-- components/AboutSection.tsx | 39 +++++++++++++++++++++++++++++++++++++ 2 files changed, 45 insertions(+), 2 deletions(-) create mode 100644 components/AboutSection.tsx 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..486658d --- /dev/null +++ b/components/AboutSection.tsx @@ -0,0 +1,39 @@ +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 rendereing. +

+

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

+
+ + {/* Buttons Section */} +
+ + + + +
+
+ ); +} + +function AboutCarousel() { + return ( +
+ Carousel goes here +
+ ); +} From a1829b46d677f0a878ed05bb7b70680de09a95a9 Mon Sep 17 00:00:00 2001 From: ali <159713281+cunkin375@users.noreply.github.com> Date: Sat, 13 Jun 2026 15:31:31 -0400 Subject: [PATCH 2/2] style: add global styling and href linking to AboutSection component --- components/AboutSection.tsx | 29 +++++++++++++++++++++++------ 1 file changed, 23 insertions(+), 6 deletions(-) diff --git a/components/AboutSection.tsx b/components/AboutSection.tsx index 486658d..b3ebcbd 100644 --- a/components/AboutSection.tsx +++ b/components/AboutSection.tsx @@ -12,19 +12,36 @@ function AboutContent() {

- 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 rendereing. + 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 commnunity together. + 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 */}
- - - - + + + +
);