diff --git a/nextjs-app/components/HomeView.tsx b/nextjs-app/components/HomeView.tsx
index 7dc39b3..e3d1618 100644
--- a/nextjs-app/components/HomeView.tsx
+++ b/nextjs-app/components/HomeView.tsx
@@ -101,8 +101,8 @@ export function HomeView({ initialSchools, filters, totalSchools }: HomeViewProp
{/* Combined Hero + Search and Filters */}
{!isSearchActive && (
-
Compare School Performance
-
Search and compare SATs and GCSE results for thousands of schools across England
+
Find Local Schools
+
Compare school results (SATs and GCSE), for thousands of schools across England
)}
diff --git a/nextjs-app/components/SchoolDetailView.tsx b/nextjs-app/components/SchoolDetailView.tsx
index 2e507e3..d1d06a3 100644
--- a/nextjs-app/components/SchoolDetailView.tsx
+++ b/nextjs-app/components/SchoolDetailView.tsx
@@ -657,6 +657,13 @@ export function SchoolDetailView({
{admissions && (
How Hard to Get Into This School ({formatAcademicYear(admissions.year)})
+ {admissions.oversubscribed != null && (
+
+ {admissions.oversubscribed
+ ? '⚠ Oversubscribed'
+ : '✓ Not Oversubscribed'}
+
+ )}
{admissions.published_admission_number != null && (
@@ -677,13 +684,6 @@ export function SchoolDetailView({
)}
- {admissions.oversubscribed != null && (
-
- {admissions.oversubscribed
- ? '⚠ More applications than places last year'
- : '✓ Places were available last year'}
-
- )}
)}