@@ -2,6 +2,7 @@ import PortfolioDisplay from "@/components/About/PortfolioDisplay";
22import Layout from "@/components/Layout" ;
33import PageBody from "@/components/PageBody" ;
44import PageTitle from "@/components/PageTitle" ;
5+ import { EXECS } from "@/../public/data/execs" ;
56
67const ExecsDirectorsSubcommitteesPage = ( ) => {
78 return (
@@ -22,29 +23,27 @@ const ExecsDirectorsSubcommitteesPage = () => {
2223 </ div >
2324 </ div >
2425
25- < div className = "my-5 text-center" >
26- < h2 className = "text-xl font-bold mb-2" > Execs</ h2 >
27- < div className = "flex justify-center" >
28- < ul className = "mx-4" >
29- < li > Elizabeth Zhu Chan - Co-President</ li >
30- < li > Lesley Lu - Co-President</ li >
31- < li > Ivan Chan - Secretary</ li >
32- < li > Justin Son - Treasurer</ li >
33- < li > Sophie Khov - Arc Delegate</ li >
34- < li > Catherine Kim - Grievance, Equity, Diversity and Inclusion Officer</ li >
35- < li > Amy Liu - Vice President (Internals)</ li >
36- < li > Nicole Jiang - Vice President (Externals)</ li >
37- < li > Matthew Lim - Vice President (Technicals)</ li >
38- </ ul >
39- </ div >
26+ { /* EXECS */ }
27+ < div className = "my-5" >
28+ < h2 className = "text-xl font-bold mb-2" > Execs</ h2 >
29+ < div className = "grid grid-cols-2 md:grid-cols-4 gap-4" >
30+ { EXECS . map ( exec => (
31+ < div >
32+ < div >
33+ < p > { exec . name } </ p >
34+ < p className = "text-gray-500" > { exec . role } </ p >
35+ </ div >
36+ </ div >
37+ ) ) }
38+ </ div >
4039 </ div >
4140
42- < div className = "border-t border-gray-300 my-5 " > </ div >
41+ < div className = "border-t border-gray-300 my-10 " > </ div >
4342
4443 { /* PORTFOLIOS */ }
4544 < div className = "space-y-6" >
4645 < div >
47- < h2 className = "text-xl font-semibold mb-2" > Subcommitees</ h2 >
46+ < h2 className = "text-xl font-semibold mb-2" > Directors & Subcommitees </ h2 >
4847 < p className = "text-lg" >
4948 Subcommittees are the teams led by Directors that run CSESoc and its events to the benefit of all UNSW Computing students. Click to see the members of each!
5049 </ p >
0 commit comments