--- import { Icon } from 'astro-icon/components'; import Logo from '@components/images/Logo.astro'; import { getDirectusImageURL } from '@/support/url'; interface Props { title: string; subTitle: string; url: string; logoLight: string; logoDark?: string; } const { title, subTitle, url, logoLight, logoDark} = Astro.props; ---