f6b9d650f8
Build and Push Docker Images / Build Backend (FastAPI) (push) Successful in 14s
Build and Push Docker Images / Build Frontend (Next.js) (push) Successful in 51s
Build and Push Docker Images / Build Pipeline (Meltano + dbt + Airflow) (push) Successful in 13s
Build and Push Docker Images / Trigger Portainer Update (push) Successful in 1s
- New /admissions route with AdmissionsView client component - Live countdowns (days until) to Primary/Secondary deadlines and Offer Days - Step-by-step timelines for both tracks with highlighted milestone rows - Tips section covering equal preference rule, late applications, waiting lists - Homepage countdown strip (4 cards) between discovery chips and how-it-works - Admissions nav link and footer link added Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
15 lines
455 B
TypeScript
15 lines
455 B
TypeScript
import type { Metadata } from 'next';
|
|
import { AdmissionsView } from '@/components/AdmissionsView';
|
|
|
|
export const dynamic = 'force-static';
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'School Admissions Guide',
|
|
description:
|
|
'Understand the Primary and Secondary school admissions process in England, with live countdowns to every key deadline and National Offer Day.',
|
|
};
|
|
|
|
export default function AdmissionsPage() {
|
|
return <AdmissionsView />;
|
|
}
|