Skip to content

Commit 8299636

Browse files
committed
replaced image with tabs
1 parent 2b10823 commit 8299636

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

frontend/src/pages/about/our-history.tsx

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ import Layout from "@/components/Layout";
22
import PageBody from "@/components/PageBody";
33
import PageTitle from "@/components/PageTitle";
44
import { useState } from "react";
5+
import PortfolioDisplay from "@/components/About/PortfolioDisplay";
6+
import ExecDisplay from "@/components/About/ExecDisplay";
57

68
const MIN_YEAR = 2007;
79
const MAX_YEAR = 2020;
@@ -69,9 +71,15 @@ const OurHistoryPage = () => {
6971
<p className="mt-5">Use the slider to see the teams from past years!</p>
7072
)}
7173

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 />
7476
</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+
7583
</div>
7684
</PageBody>
7785
</Layout>

0 commit comments

Comments
 (0)