--- import GoLinkPrimaryButton from '@components/buttons/GoLinkPrimaryButton.astro'; import Logo from '@components/images/Logo.astro'; import { getDirectusImageURL } from '@/support/url'; interface Props { title: string; subTitle: string; logoExists?: boolean; logoLight?: string; logoDark?: string; btnExists?: boolean; btnTitle?: string; btnURL?: string; } const { title, subTitle, logoExists, logoLight, logoDark, btnExists, btnTitle, btnURL } = Astro.props; ---
{logoExists ? (
) : null}

{title}

{subTitle}

{btnExists ? (
) : null}