diff --git a/app/page.tsx b/app/page.tsx index 05af1c5..a1521dc 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -1,3 +1,4 @@ + import HeroSection from "@/components/HeroSection"; export default function Home() { return (
@@ -5,6 +6,8 @@ export default function Home() {
{/* Home code goes here */}

Home

+ + {/* HeroSection code goes here */}
{/* START OF THE ABOUT SECTION */} diff --git a/components/HeroSection.tsx b/components/HeroSection.tsx new file mode 100644 index 0000000..e9e7a10 --- /dev/null +++ b/components/HeroSection.tsx @@ -0,0 +1,58 @@ +import { FaInstagram, FaLinkedin, FaDiscord } from "react-icons/fa"; + +export default function HeroSection() { + return ( +
+ + {/* Left Column: Heading, Subheading, Button, and Icons */} +
+

+ Graphics Programming Knights +

+

+ University of Central Florida's Computer Graphics RSO +

+ + {/* Button and Icons Row */} +
+ + Join Us + + + + {/* Icons Row */} +
+ + + + + + +
+
+
+ + {/* Right Column: Placeholder for ASCII render */} +
+ {/* ASCII render goes here -- see T6 */} + [ASCII Render Placeholder] +
+ +
+ ); +} \ No newline at end of file