diff --git a/src/app/components/pages/IsaacCompetition/content.ts b/src/app/components/pages/IsaacCompetition/content.ts
index b2f1a62e02..fd4cfcff3b 100644
--- a/src/app/components/pages/IsaacCompetition/content.ts
+++ b/src/app/components/pages/IsaacCompetition/content.ts
@@ -2,7 +2,7 @@ export default {
section1: {
header: {
section1: [
- "Calling all computer science fans! We are hosting a national competition to challenge students to imagine, design, and pitch a groundbreaking new product for the Internet of Everything (IOE).",
+ "Calling all computer science fans! We are hosting a national competition to challenge students to imagine, design, and pitch a groundbreaking new product for the Internet of Everything.",
],
section2: [
"The competition is a fantastic opportunity for students to apply their knowledge to real-world ideas.",
@@ -14,6 +14,8 @@ export default {
facebookLink: "https://www.facebook.com/IsaacComputerScience",
instagramLink: "https://www.instagram.com/isaaccomputerscience",
},
+ imageCaption:
+ "The 2025/2026 competition winners: the 'Binary Sorter' project from Newstead Wood School (four students on the left) and 'Smart Port Locker' from Stroud High School (a student on the right)",
},
section3: {
diff --git a/src/scss/cs/competition.scss b/src/scss/cs/competition.scss
index 2b9b25d788..1f8715e04e 100644
--- a/src/scss/cs/competition.scss
+++ b/src/scss/cs/competition.scss
@@ -37,6 +37,12 @@
background-color: #ffffff;
}
+.competition-hero-caption {
+ font-size: 14px;
+ line-height: 1.4;
+ background-color: transparent;
+}
+
.manage-group-link {
color: #1d70b8;
text-decoration: underline;
diff --git a/src/test/pages/EventManager.test.tsx b/src/test/pages/EventManager.test.tsx
index 3fd1620b3a..43b2273f0b 100644
--- a/src/test/pages/EventManager.test.tsx
+++ b/src/test/pages/EventManager.test.tsx
@@ -33,17 +33,6 @@ describe("Event Manager", () => {
);
});
- it("shows event listing form and events toolkit buttons with correct links", () => {
- renderEventManager();
- const eventListingForm = screen.getByRole("link", { name: /event listing form/i });
- const eventsToolkit = screen.getByRole("link", { name: /events toolkit/i });
- expect(eventListingForm).toHaveAttribute("href", "https://forms.office.com/e/ZrijWx8gcw");
- expect(eventsToolkit).toHaveAttribute(
- "href",
- "https://myscience.atlassian.net/wiki/spaces/NN/pages/4119658517/Events+toolkit",
- );
- });
-
it("if logged in as an Event Leader, a message appears to warn that they can only view events they manage", () => {
renderEventManager({ role: "EVENT_LEADER" });
checkPageTitle("Event booking admin");