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 22 - 1200x45m LDA (Concrete) Code 2 (Right Hand)', 'Runway 04 - 1200x45m LDA (Concrete) Code 2 (Left Hand)', 'Runway 10 - 824x18m LDA (Asphalt) Code 1 (Right Hand)', 'Runway 28 - 794x18m LDA (Asphalt) Code 1 (Left Hand)', 'Category 1 RFFS (When Licensed)', 'Air Ground Service 119.705', ], navigation: [ { label: 'Home', href: '/' }, { label: 'Pilot Info', href: '/pilot-info/' }, { label: 'Weather', href: '/weather/' }, { label: 'About', href: '/about/', children: [ { label: 'Cafe', href: '/about/cafe/' }, { label: 'History', href: '/about/history/' }, { label: 'Drones', href: '/about/drones/' }, { label: 'Fees and Charges', href: '/about/fees-and-charges/' }, { label: 'Noise', href: '/about/noise/' }, { label: 'Volunteering', href: '/about/volunteering/' }, ], }, { label: 'Events', href: '/events/' }, { label: 'News', href: '/news/' }, // Keep the documents page available, but hidden from the menu until needed. // { 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.', }, ];