From ffcec5501619fa4195cd95c9c087cefe317479d9 Mon Sep 17 00:00:00 2001 From: Jordan Janakievski Date: Wed, 30 Apr 2025 23:56:48 -0400 Subject: [PATCH 1/5] feat: Add info to role cards for exec positions --- components/RoleCard/RoleCard.css | 2 +- components/RoleCard/RoleCard.tsx | 4 ++-- components/for-students-roles/Roles.tsx | 27 ++++++++++++++++++++++++- 3 files changed, 29 insertions(+), 4 deletions(-) diff --git a/components/RoleCard/RoleCard.css b/components/RoleCard/RoleCard.css index 3670274..7255fda 100644 --- a/components/RoleCard/RoleCard.css +++ b/components/RoleCard/RoleCard.css @@ -26,7 +26,7 @@ width: 20px; } -.moniter { +.monitor { width: 40px; height: 40px; } diff --git a/components/RoleCard/RoleCard.tsx b/components/RoleCard/RoleCard.tsx index 704af85..1346ea3 100644 --- a/components/RoleCard/RoleCard.tsx +++ b/components/RoleCard/RoleCard.tsx @@ -5,7 +5,7 @@ export default function RoleCard({ role, link }) { return (
- +
@@ -19,7 +19,7 @@ export default function RoleCard({ role, link }) { className="apply-button" variant="filled" color="#228BE6" - ref={link} + href={link} component="a" rightSection={} > diff --git a/components/for-students-roles/Roles.tsx b/components/for-students-roles/Roles.tsx index ab2d3b1..74594a9 100644 --- a/components/for-students-roles/Roles.tsx +++ b/components/for-students-roles/Roles.tsx @@ -17,7 +17,32 @@ import "./Roles.css"; // link: "", // } // ]; -const info = []; +const info = [ + { + role: "VP Software", + link: "https://bit.ly/bpexec2025", + }, + { + role: "VP Product", + link: "https://bit.ly/bpexec2025", + }, + { + role: "VP Design", + link: "https://bit.ly/bpexec2025", + }, + { + role: "VP External", + link: "https://bit.ly/bpexec2025", + }, + { + role: "VP Events", + link: "https://bit.ly/bpexec2025", + }, + { + role: "VP Finance", + link: "https://bit.ly/bpexec2025", + }, +]; export default function Roles() { const hasRoles = info.length > 0; From da2396364b63d1a67322340c5934f375d542f667 Mon Sep 17 00:00:00 2001 From: Daniel Dervishi Date: Thu, 1 May 2025 11:06:38 -0400 Subject: [PATCH 2/5] Removed monitor & updated the copyright year --- components/Footer/Footer.tsx | 2 +- components/RoleCard/RoleCard.css | 5 ----- components/RoleCard/RoleCard.tsx | 3 --- public/monitor.svg | 7 ------- 4 files changed, 1 insertion(+), 16 deletions(-) delete mode 100644 public/monitor.svg diff --git a/components/Footer/Footer.tsx b/components/Footer/Footer.tsx index 1ae7fa1..b6bfee7 100644 --- a/components/Footer/Footer.tsx +++ b/components/Footer/Footer.tsx @@ -39,7 +39,7 @@ const Footer = () => { {items} -
© Blueprint 2023
+
© Blueprint 2025
); }; diff --git a/components/RoleCard/RoleCard.css b/components/RoleCard/RoleCard.css index 7255fda..c15535e 100644 --- a/components/RoleCard/RoleCard.css +++ b/components/RoleCard/RoleCard.css @@ -26,11 +26,6 @@ width: 20px; } -.monitor { - width: 40px; - height: 40px; -} - @media (max-width: 1350px) { .roleTitle { font-size: 20px; diff --git a/components/RoleCard/RoleCard.tsx b/components/RoleCard/RoleCard.tsx index 1346ea3..82a5cb6 100644 --- a/components/RoleCard/RoleCard.tsx +++ b/components/RoleCard/RoleCard.tsx @@ -4,9 +4,6 @@ import "./RoleCard.css"; export default function RoleCard({ role, link }) { return ( -
- -
{role} diff --git a/public/monitor.svg b/public/monitor.svg deleted file mode 100644 index 2c62682..0000000 --- a/public/monitor.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - From c213a7fd310f5ab969cc0921a0b6ca2a17299176 Mon Sep 17 00:00:00 2001 From: Jordan Janakievski Date: Sun, 25 May 2025 01:05:15 -0400 Subject: [PATCH 3/5] feat: remove hiring exec cards; leave just software --- components/for-students-roles/Roles.tsx | 22 +--------------------- 1 file changed, 1 insertion(+), 21 deletions(-) diff --git a/components/for-students-roles/Roles.tsx b/components/for-students-roles/Roles.tsx index 74594a9..6aa44da 100644 --- a/components/for-students-roles/Roles.tsx +++ b/components/for-students-roles/Roles.tsx @@ -20,27 +20,7 @@ import "./Roles.css"; const info = [ { role: "VP Software", - link: "https://bit.ly/bpexec2025", - }, - { - role: "VP Product", - link: "https://bit.ly/bpexec2025", - }, - { - role: "VP Design", - link: "https://bit.ly/bpexec2025", - }, - { - role: "VP External", - link: "https://bit.ly/bpexec2025", - }, - { - role: "VP Events", - link: "https://bit.ly/bpexec2025", - }, - { - role: "VP Finance", - link: "https://bit.ly/bpexec2025", + link: "https://bit.ly/bpsoft2025", }, ]; From aae8012df662c08bddc9c938b9025355474aa1e3 Mon Sep 17 00:00:00 2001 From: Jordan Janakievski Date: Sun, 1 Jun 2025 01:26:16 -0400 Subject: [PATCH 4/5] feat: remove vp software role --- components/for-students-roles/Roles.tsx | 4 ---- 1 file changed, 4 deletions(-) diff --git a/components/for-students-roles/Roles.tsx b/components/for-students-roles/Roles.tsx index 6aa44da..75b7431 100644 --- a/components/for-students-roles/Roles.tsx +++ b/components/for-students-roles/Roles.tsx @@ -18,10 +18,6 @@ import "./Roles.css"; // } // ]; const info = [ - { - role: "VP Software", - link: "https://bit.ly/bpsoft2025", - }, ]; export default function Roles() { From 65f66317c10a5ad97a14854fd07fc51ea076b6d9 Mon Sep 17 00:00:00 2001 From: Jordan Janakievski Date: Sat, 21 Jun 2025 00:28:16 -0400 Subject: [PATCH 5/5] fix formatting --- components/for-students-roles/Roles.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/components/for-students-roles/Roles.tsx b/components/for-students-roles/Roles.tsx index 75b7431..ab2d3b1 100644 --- a/components/for-students-roles/Roles.tsx +++ b/components/for-students-roles/Roles.tsx @@ -17,8 +17,7 @@ import "./Roles.css"; // link: "", // } // ]; -const info = [ -]; +const info = []; export default function Roles() { const hasRoles = info.length > 0;