Skip to content

Commit

Permalink
feat: update emails and add banner
Browse files Browse the repository at this point in the history
  • Loading branch information
3bobchen committed Feb 13, 2025
1 parent 5b85041 commit 294f24e
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 4 deletions.
2 changes: 1 addition & 1 deletion backend/src/company.ts
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ export default class CompanyFunctions {
`
Thank you for registering your company with the DevSoc Jobs Board. We really appreciate your time and are looking forward to working with you to share amazing opportunities with our students.
<br>
Please contact our executive committee at <a href="mailto:[email protected]">[email protected]</a> to verify your company account.
Please contact our executive committee at <a href="mailto:[email protected]">[email protected]</a> to verify your company account.
<br>
<p>Best regards,</p>
<p>Adam Tizzone</p>
Expand Down
2 changes: 1 addition & 1 deletion backend/src/mail.ts
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ export default class MailFunctions {
// send a copy of this email to the csesoc admin
const newMailRequestForCsesocAdmin: MailRequest = new MailRequest();
newMailRequestForCsesocAdmin.sender = env.MAIL_USERNAME;
newMailRequestForCsesocAdmin.recipient = '[email protected]';
newMailRequestForCsesocAdmin.recipient = '[email protected]';
newMailRequestForCsesocAdmin.subject = subject;
newMailRequestForCsesocAdmin.content = `The following was sent to "${recipient}" with subject "${subject}":
Expand Down
18 changes: 16 additions & 2 deletions frontend/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,25 @@ const HomePage = () => {
return (
<div className="text-center">
<RecruitmentModal open={openModal} onClose={() => setOpenModal(false)} />
<div style={{
position: 'absolute',
top: 0,
width: '100%',
display: 'flex',
justifyContent: 'center',
padding: '1rem 2rem',
background: '#F76B15',
zIndex: 101,
}}>
<span>
⚠ Jobsboard has been retired and is no longer being maintained. Advertisers can <a style={{fontWeight: '600', textDecoration: 'underline'}} href='https://devsoc.app/about-us'>contact DevSoc ⎋</a> for alternative ways to reach students.
</span>
</div>
<Header
style={{
background: 'transparent',
position: 'absolute',
top: 0,
top: '4rem',
zIndex: 100,
width: '100%'
}}
Expand Down Expand Up @@ -175,7 +189,7 @@ const HomePage = () => {
you. In the meantime, you can also check out&nbsp;
<a
className="text-jb-textlink font-bold transition-colors duration-200 ease-linear cursor-pointer hover:text-jb-textlink-hovered"
href="https://www.csesoc.unsw.edu.au/sponsors"
href="https://devsoc.app/supporters"
target="_blank"
rel="noreferrer"
>
Expand Down

0 comments on commit 294f24e

Please sign in to comment.