Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: update emails and add banner #485

Merged
merged 2 commits into from
Feb 13, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
27 changes: 25 additions & 2 deletions frontend/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,34 @@ 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 +198,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
Loading