--- import { twitter, facebook } from "@matthiesenxyz/astro-ghostcms/api"; import type { Settings } from "@matthiesenxyz/astro-ghostcms/api"; export type Props = { settings: Settings; }; const { settings } = Astro.props as Props; --- {settings.logo && } {!settings.logo && settings.title} {settings.navigation.map(({ label, url }) => ( {label} ))} {settings.facebook && ( )} {settings.twitter && ( )}