Skip to content

Commit a3601ce

Browse files
committed
Update csesoc team picture and append platforms portfolio
1 parent 0a7c743 commit a3601ce

File tree

5 files changed

+15
-5
lines changed

5 files changed

+15
-5
lines changed

frontend/public/data/portfolios.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,4 +122,11 @@ export const PORTFOLIOS: PortfolioData[] = [
122122
{ name: "Aaron Tian", role: PortfolioRole.DIRECTOR, imageUrl: "/images/members/blank-pfp.png" },
123123
],
124124
},
125+
{
126+
name: "Platforms",
127+
description: "Maintains the infrastructure underlying the CSESoc IT Portfolio Projects.",
128+
members: [
129+
{ name: "Dominic Cheung", role: PortfolioRole.DIRECTOR, imageUrl: "/images/members/blank-pfp.png" },
130+
]
131+
}
125132
];
661 KB
Loading

frontend/src/components/About/PortfolioDisplay.tsx

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,13 @@ const PortfolioDisplay = () => {
99

1010
return (
1111
<div>
12-
<div className="flex justify-between max-w-full h-10 my-6 snap-x snap-mandatory overflow-auto hide-scrollbar">
12+
<div className="flex justify-between max-w-full h-12 my-6 snap-x snap-mandatory overflow-y-hidden pb-1 [&::-webkit-scrollbar]:w-2 [&::-webkit-scrollbar]:h-2
13+
[&::-webkit-scrollbar-track]:bg-transparent
14+
[&::-webkit-scrollbar-thumb]:rounded-full
15+
[&::-webkit-scrollbar-thumb]:bg-gray-300">
1316
{names.map((name) => (
1417
<button
15-
className={`grow text-center border border-white ${name === selectedPortfolio ? "bg-[#3977F9]" : ""} p-2`}
18+
className={`grow text-center border border-white ${name === selectedPortfolio ? "bg-[#3977F9]" : ""} pb-2 p-1`}
1619
key={`btn-${name}`}
1720
onClick={() => setSelectedPortfolio(name)}
1821
>

frontend/src/pages/about/execs-directors-subcoms.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const ExecsDirectorsSubcommitteesPage = () => {
1919
The CSESoc Executive and Director team for 2025:
2020
</p>
2121
<div className="flex justify-center items-center">
22-
<img src="https://scontent.fsyd3-2.fna.fbcdn.net/v/t39.30808-6/490746858_1191636532745956_5085482777865160130_n.jpg?_nc_cat=109&ccb=1-7&_nc_sid=127cfc&_nc_ohc=Icu4uVEf5csQ7kNvwHQlx94&_nc_oc=Adl9id_hToVec6lOQU7MiV48MEn3IRWN0yZ81zPenDI8ND09eCjhHmgq18hpZybMbRQ&_nc_zt=23&_nc_ht=scontent.fsyd3-2.fna&_nc_gid=wLdWQpSME-IqY5gQfmktbQ&oh=00_AfLFy8b5Sieopu8C3WP4_RsQFVSfXQoYVmVqEGPlrkyOFA&oe=682FAA6E" alt="CSESoc Team 2024" width={700} height={700} />
22+
<img src="/images/members/csesoc-2025.jpg" alt="CSESoc Team 2025" width={700} height={700} />
2323
</div>
2424
</div>
2525

@@ -51,9 +51,9 @@ const ExecsDirectorsSubcommitteesPage = () => {
5151

5252
<PortfolioDisplay />
5353

54-
<p className="text-xl bold my-5">
54+
{/* <p className="text-xl bold my-5">
5555
Get to know them better <a href="https://media.csesoc.org.au/fyg24-meet-csesoc/" className="text-blue-500 hover:underline">here</a>!
56-
</p>
56+
</p> */}
5757
</div>
5858
</PageBody>
5959
</Layout>

0 commit comments

Comments
 (0)