Skip to content

Commit e1bd462

Browse files
feat: Add info to role cards for exec positions (#90)
* feat: Add info to role cards for exec positions * Removed monitor & updated the copyright year --------- Co-authored-by: Daniel Dervishi <d.dervishi@mail.utoronto.ca>
1 parent 3978d38 commit e1bd462

5 files changed

Lines changed: 28 additions & 18 deletions

File tree

components/Footer/Footer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ const Footer = () => {
3939
</a>
4040
<Group className="footer-text">{items}</Group>
4141
</Container>
42-
<h5 className="copyright-text"> &copy; Blueprint 2023</h5>
42+
<h5 className="copyright-text"> &copy; Blueprint 2025</h5>
4343
</footer>
4444
);
4545
};

components/RoleCard/RoleCard.css

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,6 @@
2626
width: 20px;
2727
}
2828

29-
.moniter {
30-
width: 40px;
31-
height: 40px;
32-
}
33-
3429
@media (max-width: 1350px) {
3530
.roleTitle {
3631
font-size: 20px;

components/RoleCard/RoleCard.tsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,6 @@ import "./RoleCard.css";
44
export default function RoleCard({ role, link }) {
55
return (
66
<Card className="roleCard" shadow="lg" radius="xl" p="xl">
7-
<Center>
8-
<Image className="moniter" src="/monitor.svg" />
9-
</Center>
107
<Center my="xs">
118
<Text c="#0078E8" fw={500} className="roleTitle">
129
{role}
@@ -19,7 +16,7 @@ export default function RoleCard({ role, link }) {
1916
className="apply-button"
2017
variant="filled"
2118
color="#228BE6"
22-
ref={link}
19+
href={link}
2320
component="a"
2421
rightSection={<Image className="chevron" src="/chevron-right.svg" />}
2522
>

components/for-students-roles/Roles.tsx

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,32 @@ import "./Roles.css";
1717
// link: "<Link to application>",
1818
// }
1919
// ];
20-
const info = [];
20+
const info = [
21+
{
22+
role: "VP Software",
23+
link: "https://bit.ly/bpexec2025",
24+
},
25+
{
26+
role: "VP Product",
27+
link: "https://bit.ly/bpexec2025",
28+
},
29+
{
30+
role: "VP Design",
31+
link: "https://bit.ly/bpexec2025",
32+
},
33+
{
34+
role: "VP External",
35+
link: "https://bit.ly/bpexec2025",
36+
},
37+
{
38+
role: "VP Events",
39+
link: "https://bit.ly/bpexec2025",
40+
},
41+
{
42+
role: "VP Finance",
43+
link: "https://bit.ly/bpexec2025",
44+
},
45+
];
2146

2247
export default function Roles() {
2348
const hasRoles = info.length > 0;

public/monitor.svg

Lines changed: 0 additions & 7 deletions
This file was deleted.

0 commit comments

Comments
 (0)