Skip to content
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
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,8 @@ const HomepageHighlight = () => {
const getBannerContent = () => {
if (isBeforeCompetitionOpenDate(currentDate)) {
return {
title: "National Computer Science Competition 2025/26",
subtitle: "Opening November 2025",
button: {
to: "https://forms.office.com/e/23bsQuZfjm",
label: "Be the first one to know",
},
subtitle:
"Some users are experiencing issues when attempting questions on mobile devices, including iPads. Please use a computer for now if possible while we fix this. Thank you for your patience.",
};
} else if (isAfterCompetitionOpenDateAndBeforeCompetitionEndDate(currentDate)) {
return {
Expand Down Expand Up @@ -64,7 +60,7 @@ const HomepageHighlight = () => {

return (
<>
<h1 className="homepage-highlight-title px-1 pt-4">{bannerContent.title}</h1>
<h1 className="homepage-highlight-title px-1">{bannerContent.title}</h1>
<h1 className="homepage-highlight-sub-title p-2">{bannerContent.subtitle}</h1>
</>
);
Expand Down
2 changes: 1 addition & 1 deletion src/app/components/pages/IsaacCompetition/dateUtils.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//Expression of interest banner will be shown till midnight on 2 Nov 2025. Entries open banner will be displayed after this till COMPETITION_END_DATE
//The competition entry form will be displayed on the Events -> National Competition page after this date.
export const COMPETITION_OPEN_DATE = new Date("2025-11-02T23:59:59Z"); // UTC timezone
export const COMPETITION_OPEN_DATE = new Date("2026-05-20T23:59:59Z"); // UTC timezone

//The Entries open banner will be displayed till midnight on 28 Feb 2026. Entries closed banner will be displayed after this till ENTRIES_CLOSED_BANNER_END_DATE
export const COMPETITION_END_DATE = new Date("2026-02-28T23:59:59Z"); // UTC timezone
Expand Down
2 changes: 1 addition & 1 deletion src/scss/cs/homepage.scss
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@

&-sub-title {
color: #120540;
font-size: 32px;
font-size: 24px;

@include respond-below(md) {
font-size: 24px;
Expand Down
Loading