--- // Destructure the properties from Astro.props const { url, name } = Astro.props; // Define TypeScript interface for the properties interface Props { url: string; name: string; } --- {name}