Initial commit

Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
2026-05-11 15:55:14 -04:00
commit 290ff0bc1e
41 changed files with 7998 additions and 0 deletions
+38
View File
@@ -0,0 +1,38 @@
export const site = {
name: 'Swansea Airport',
tagline: 'The gateway to Gower and Swansea',
address: 'Swansea Airport, Fairwood Common, Swansea, SA2 7JU',
phone: '01792 687 042',
openingHours: '7 days 0900-1600',
licensedHours: 'Friday to Sunday 0900-1700',
runwayFacts: [
'Runway 04/22 concrete 1351m x 30m licensed',
'Runway 10/28 asphalt 857m x 18m unlicensed',
'Category 1 RFFS',
'Air Ground Service 119.705',
],
navigation: [
{ label: 'Home', href: '/' },
{ label: 'Visiting Pilots', href: '/visiting-pilots/' },
{ label: 'Procedures', href: '/procedures-safety-noise-abatement/' },
{ label: 'Events', href: '/events/' },
{ label: 'News', href: '/news/' },
{ label: 'Documents', href: '/documents/' },
{ label: 'Contact', href: '/contact/' },
],
};
export const homepageHighlights = [
{
title: 'Operational clarity first',
body: 'Notices, fuel, events, and the latest news are kept at the top of the page for fast scanning on mobile.',
},
{
title: 'Layout controlled in code',
body: 'Astro owns the structure, spacing, and information hierarchy so the CMS only supplies content.',
},
{
title: 'Static output by default',
body: 'The public site remains available from built files even if Directus is offline after publication.',
},
];