Skip to content

Commit 2597294

Browse files
committed
Styling changes
1 parent b70ff86 commit 2597294

File tree

4 files changed

+42
-5
lines changed

4 files changed

+42
-5
lines changed

components/AlumniSection.jsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import { Tabs, TabsHeader, TabsBody, Tab, TabPanel } from '@material-tailwind/re
55
import Heading from './Heading';
66
import { UnderlineTypes } from '../utils/underlineType';
77
import CoPresident from "./CoPresident";
8+
const GREEN_SIDE_LINES_DIR = '/svgs/green_side_lines.svg';
89

910
// Dummy values to be replaced with contentful
1011
const people = [{
@@ -168,7 +169,8 @@ const TechnicalTeam = () => {
168169

169170
return (
170171
<section className="bg-[#7055FD] p-12 md:min-h-screen h-full">
171-
<div className="mb-9">
172+
<div className="mb-9 flex flex-row justify-center">
173+
<img src={GREEN_SIDE_LINES_DIR} alt="" className='pb-16'/>
172174
<Heading underlineType={UnderlineTypes.GREEN_SHORT_UNDERLINE} classes={"text-white"}>Alumni</Heading>
173175
</div>
174176
<div>

components/CoPresident.jsx

Lines changed: 33 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,39 @@ const President = [[{
4242
},
4343
classes: "text-[#7055FD]",
4444
}
45+
],
46+
[{
47+
name: "Jane Doe",
48+
position: "Co-Pres",
49+
year: "2025",
50+
previousRole: "Events team",
51+
testimonial: "Wow I love this club",
52+
linkedin: "random link",
53+
pfp: {
54+
fields: {
55+
file: {
56+
url: "//t3.ftcdn.net/jpg/05/16/27/58/360_F_516275801_f3Fsp17x6HQK0xQgDQEELoTuERO4SsWV.jpg"
57+
}
58+
}
59+
},
60+
classes: "text-[#7055FD]",
61+
},
62+
{
63+
name: "John Doe",
64+
position: "Co-Pres",
65+
year: "2025",
66+
previousRole: "Events team",
67+
testimonial: "Vitae eget venenatis rhoncus aliquet curabitur mauris, sed turpis nulla. Neque molestie mi placerat ultrices sit in sit.",
68+
linkedin: "random link",
69+
pfp: {
70+
fields: {
71+
file: {
72+
url: "//t3.ftcdn.net/jpg/05/16/27/58/360_F_516275801_f3Fsp17x6HQK0xQgDQEELoTuERO4SsWV.jpg"
73+
}
74+
}
75+
},
76+
classes: "text-[#7055FD]",
77+
}
4578
]];
4679

4780
const PresidentTile = ({ name, linkedin, pfp, classes, testimonial, position }) => {
@@ -75,4 +108,3 @@ const CoPresident = () => {
75108
);
76109
};
77110
export default CoPresident;
78-

pages/our-team/index.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,8 @@ const OurTeam = () => {
77
<div>
88
{/* <MeetOurTeam />
99
<InternalTeam />
10-
<TechnicalTeam /> */}
11-
<AlumniSection />
12-
<TechnicalTeam />
10+
<TechnicalTeam />
11+
<AlumniSection /> */}
1312
<UnderConstruction />
1413
</div>
1514
);

public/svgs/green_side_lines.svg

Lines changed: 4 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)