Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions components/AsciiHero.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import Image from "next/image";
import gpkTriangleLogo from "@/public/gpk_logo_new.webp";

export default function AsciiHero() {
return (
<div className="flex items-center justify-start w-225 max-w-full h-full -translate-y-15">
<Image
src={gpkTriangleLogo}
alt="Graphics Programming Knights logo"

className="w-full h-full object-fill"
priority
/>
</div>
);
}
6 changes: 3 additions & 3 deletions components/HeroSection.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { FaInstagram, FaLinkedin, FaDiscord } from "react-icons/fa";
import AsciiHero from "./AsciiHero";

export default function HeroSection() {
return (
Expand Down Expand Up @@ -47,9 +48,8 @@ export default function HeroSection() {
</div>

{/* Right Column: Placeholder for ASCII render */}
<div className="flex justify-center items-center w-full h-full">
{/* ASCII render goes here -- see T6 */}
<span className="text-text-secondary italic text-2xl translate-x-8 md:translate-x-16">[ASCII Render Placeholder]</span>
<div className="flex justify-center items-center w-205 h-205">
<AsciiHero />
</div>
</section>
);
Expand Down
4 changes: 2 additions & 2 deletions components/TeamSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const teamMembers: TeamMember[] = [
{
name: "Andres Ortiz",
title: "Secretary",
memberSince: "Fall 2025",
memberSince: "Summer 2026",
pfpSrc: "/teampics/andres.webp",
linkedinUrl: "https://www.linkedin.com/in/andresortizmachado/",
isOfficer: true,
Expand Down Expand Up @@ -61,7 +61,7 @@ const teamMembers: TeamMember[] = [
isOfficer: true,
},
{
name: "Alex De Vera Cruz",
name: "Alex Da Vera Cruz",
title: "Workshops Director",
memberSince: "Summer 2025",
pfpSrc: "/teampics/alex.webp",
Expand Down
Loading
Loading