diff --git a/app/alumni/page.tsx b/app/alumni/page.tsx new file mode 100644 index 0000000..e68f6f7 --- /dev/null +++ b/app/alumni/page.tsx @@ -0,0 +1,167 @@ +"use client"; + +import Image, { StaticImageData } from "next/image"; + +import AlumniCard from "@/components/alumni-card"; +import searchIcon from "@/app/assets/search.png"; +import filterIcon from "@/app/assets/filter.png"; +import karanImage from "@/app/assets/karanSir.png"; +import arnavImage from "@/app/assets/arnavSir.png"; +import arushiImage from "@/app/assets/ArushiMam.png"; +import joyjeetImage from "@/app/assets/joyjeetSir.png"; +import deepakImage from "@/app/assets/deepakSir.png"; +import himanshuImage from "@/app/assets/himanshuSir.png"; + +type Alumni = { + id: string; + name: string; + role: string; + imageUrl: string | StaticImageData; + color: string; +}; + +const ALUMNI: Alumni[] = [ + { + id: "karandeep", + name: "Karandeep Singh", + role: "The ex-lead of gdg chapter 24-25", + imageUrl: karanImage, + color: "bg-[#FDD568]", + }, + { + id: "arnav", + name: "Arnav Anand", + role: "the pookiest ui/ux lead ever", + imageUrl: arnavImage, + color: "bg-[#69A6FC]", + }, + { + id: "arushi", + name: "Arushi Gupta", + role: "the begining of wit community", + imageUrl: arushiImage, + color: "bg-[#28D781]", + }, + { + id: "joyjeet", + name: "Joyjeet Banerjee", + role: "Talk to him about futures first", + imageUrl: joyjeetImage, + color: "bg-[#FF6A66]", + }, + { + id: "deepak", + name: "Deepak Kumar", + role: "devsecops or optum, hes the guy", + imageUrl: deepakImage, + color: "bg-[#FDD568]", + }, + { + id: "himanshu", + name: "Himanshu Dania", + role: "take ms interview tips", + imageUrl: himanshuImage, + color: "bg-[#69A6FC]", + }, +]; + +export default function AlumniPage() { + return ( +
+ We came here as strangers, we left as a family — and that family never really leaves. Our alumni carry the jokes that still make us laugh, the lessons that still guide us, and the dreams that still push us forward. This isn't just history, it's living proof that what we built together lasts far beyond the campus walls. This is the place where you can meet our alumni and see the journeys they continue to shape. +
+