Making adjustments to branding to reflect new domain
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 57s
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 57s
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
"""
|
"""
|
||||||
Primary School Performance Comparison API
|
SchoolCompare.co.uk API
|
||||||
Serves primary school (KS2) performance data for Wandsworth and Merton.
|
Serves primary school (KS2) performance data for comparing schools.
|
||||||
Uses real data from UK Government Compare School Performance downloads.
|
Uses real data from UK Government Compare School Performance downloads.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
@@ -23,8 +23,8 @@ LA_CODES = {
|
|||||||
ALLOWED_LA_CODES = list(LA_CODES.keys())
|
ALLOWED_LA_CODES = list(LA_CODES.keys())
|
||||||
|
|
||||||
app = FastAPI(
|
app = FastAPI(
|
||||||
title="Primary School Performance API - Wandsworth & Merton",
|
title="SchoolCompare API",
|
||||||
description="API for comparing primary school (KS2) performance data in Wandsworth and Merton",
|
description="API for comparing primary school (KS2) performance data - schoolcompare.co.uk",
|
||||||
version="1.0.0"
|
version="1.0.0"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/**
|
/**
|
||||||
* School Performance Compass - Frontend Application
|
* SchoolCompare.co.uk - Frontend Application
|
||||||
* Interactive UK School Data Visualization
|
* Interactive UK Primary School Performance Comparison
|
||||||
*/
|
*/
|
||||||
|
|
||||||
const API_BASE = '';
|
const API_BASE = '';
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<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.googleapis.com">
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
<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">
|
<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>
|
</svg>
|
||||||
</div>
|
</div>
|
||||||
<div class="logo-text">
|
<div class="logo-text">
|
||||||
<span class="logo-title">Primary School Compass</span>
|
<span class="logo-title">SchoolCompare</span>
|
||||||
<span class="logo-subtitle">Wandsworth & Merton</span>
|
<span class="logo-subtitle">schoolcompare.co.uk</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<nav class="nav">
|
<nav class="nav">
|
||||||
@@ -40,8 +40,8 @@
|
|||||||
<!-- Dashboard View -->
|
<!-- Dashboard View -->
|
||||||
<section id="dashboard-view" class="view active">
|
<section id="dashboard-view" class="view active">
|
||||||
<div class="hero">
|
<div class="hero">
|
||||||
<h1 class="hero-title">Primary Schools in Wandsworth & Merton</h1>
|
<h1 class="hero-title">Compare Primary School Performance</h1>
|
||||||
<p class="hero-subtitle">Compare KS2 performance data from the last 5 years across local primary schools</p>
|
<p class="hero-subtitle">Explore and compare KS2 results across Wandsworth & Merton primary schools</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="search-section">
|
<div class="search-section">
|
||||||
@@ -170,7 +170,7 @@
|
|||||||
<section id="rankings-view" class="view">
|
<section id="rankings-view" class="view">
|
||||||
<div class="rankings-header">
|
<div class="rankings-header">
|
||||||
<h2 class="section-title">Primary School Rankings</h2>
|
<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>
|
||||||
|
|
||||||
<div class="rankings-controls">
|
<div class="rankings-controls">
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* School Performance Compass
|
* SchoolCompare.co.uk
|
||||||
* A warm, editorial design inspired by quality publications
|
* A warm, editorial design inspired by quality publications
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user