From 790b12a7f30cfac8c3f4e7a7757b817231cf87c3 Mon Sep 17 00:00:00 2001 From: Tudor Date: Sun, 29 Mar 2026 20:14:42 +0100 Subject: [PATCH] changes to order of display and text --- nextjs-app/components/HomeView.tsx | 4 ++-- nextjs-app/components/SchoolDetailView.tsx | 14 +++++++------- 2 files changed, 9 insertions(+), 9 deletions(-) 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'} -
- )}
)}