File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,8 @@ import Layout from "@/components/Layout";
2
2
import PageBody from "@/components/PageBody" ;
3
3
import PageTitle from "@/components/PageTitle" ;
4
4
import { useState } from "react" ;
5
+ import PortfolioDisplay from "@/components/About/PortfolioDisplay" ;
6
+ import ExecDisplay from "@/components/About/ExecDisplay" ;
5
7
6
8
const MIN_YEAR = 2007 ;
7
9
const MAX_YEAR = 2020 ;
@@ -69,9 +71,15 @@ const OurHistoryPage = () => {
69
71
< p className = "mt-5" > Use the slider to see the teams from past years!</ p >
70
72
) }
71
73
72
- < div key = { year } className = "h-[600px] w-[600px] mt-10 " >
73
- < img src = { `/images/csesoc-team- ${ year } .png` } alt = { `CSESoc Team ${ year } ` } />
74
+ < div className = "pt-6 " >
75
+ < ExecDisplay />
74
76
</ div >
77
+ < div className = "space-y-6 w-full" >
78
+ < div className = "border-t border-gray-300 my-10" > </ div >
79
+ < h2 className = "text-xl font-semibold mb-2" > Directors</ h2 >
80
+ < PortfolioDisplay />
81
+ </ div >
82
+
75
83
</ div >
76
84
</ PageBody >
77
85
</ Layout >
You can’t perform that action at this time.
0 commit comments