--- import footerData from '../data/blog-footers.json'; interface FooterLink { title: string; href: string; } interface RelatedPost extends FooterLink { image: string; alt: string; } interface FooterData { previous?: FooterLink; next?: FooterLink; related: RelatedPost[]; } const { entryId } = Astro.props as { entryId: string }; const footer = (footerData as Record)[entryId]; --- {footer && ( )}