--- import { homepageHighlights, site } from '../lib/site'; import '../styles/global.css'; type Props = { title?: string; description?: string; }; const { title, description = 'A fast, static, operational website for Swansea Airport.' } = Astro.props as Props; const pageTitle = title ? `${title} ยท ${site.name}` : site.name; --- {pageTitle}
Swansea Airport
{site.navigation.map((item) => ( item.children ? (
{item.label}
Overview {item.children.map((child) => ( {child.label} ))}
) : ( {item.label} ) ))}