Making adjustments to branding to reflect new domain
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 57s

This commit is contained in:
Tudor Sitaru
2026-01-06 15:39:06 +00:00
parent a26d91426c
commit 1e3fd5f8cc
4 changed files with 13 additions and 13 deletions

View File

@@ -1,6 +1,6 @@
"""
Primary School Performance Comparison API
Serves primary school (KS2) performance data for Wandsworth and Merton.
SchoolCompare.co.uk API
Serves primary school (KS2) performance data for comparing schools.
Uses real data from UK Government Compare School Performance downloads.
"""
@@ -23,8 +23,8 @@ LA_CODES = {
ALLOWED_LA_CODES = list(LA_CODES.keys())
app = FastAPI(
title="Primary School Performance API - Wandsworth & Merton",
description="API for comparing primary school (KS2) performance data in Wandsworth and Merton",
title="SchoolCompare API",
description="API for comparing primary school (KS2) performance data - schoolcompare.co.uk",
version="1.0.0"
)

View File

@@ -1,6 +1,6 @@
/**
* School Performance Compass - Frontend Application
* Interactive UK School Data Visualization
* SchoolCompare.co.uk - Frontend Application
* Interactive UK Primary School Performance Comparison
*/
const API_BASE = '';

View File

@@ -3,7 +3,7 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Primary School Compass | Wandsworth & Merton</title>
<title>SchoolCompare | Compare Primary School Performance</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700&family=Playfair+Display:wght@600;700&display=swap" rel="stylesheet">
@@ -24,8 +24,8 @@
</svg>
</div>
<div class="logo-text">
<span class="logo-title">Primary School Compass</span>
<span class="logo-subtitle">Wandsworth & Merton</span>
<span class="logo-title">SchoolCompare</span>
<span class="logo-subtitle">schoolcompare.co.uk</span>
</div>
</div>
<nav class="nav">
@@ -40,8 +40,8 @@
<!-- Dashboard View -->
<section id="dashboard-view" class="view active">
<div class="hero">
<h1 class="hero-title">Primary Schools in Wandsworth & Merton</h1>
<p class="hero-subtitle">Compare KS2 performance data from the last 5 years across local primary schools</p>
<h1 class="hero-title">Compare Primary School Performance</h1>
<p class="hero-subtitle">Explore and compare KS2 results across Wandsworth & Merton primary schools</p>
</div>
<div class="search-section">
@@ -170,7 +170,7 @@
<section id="rankings-view" class="view">
<div class="rankings-header">
<h2 class="section-title">Primary School Rankings</h2>
<p class="section-subtitle">Top performing schools in Wandsworth & Merton by KS2 metric</p>
<p class="section-subtitle">Top performing primary schools ranked by KS2 metric</p>
</div>
<div class="rankings-controls">

View File

@@ -1,5 +1,5 @@
/*
* School Performance Compass
* SchoolCompare.co.uk
* A warm, editorial design inspired by quality publications
*/