--- import type { PageData } from '../../../interfaces/PageData.ts' import type { SocialData } from '../../../interfaces/SocialData.ts' interface Props { title: string background: string pageList: PageData social: SocialData } const { title, background, pageList, social } = Astro.props const pages = pageList.pages ---