--- import { Icon } from "astro-icon/components"; import { getI18n } from "src/i18n/i18n"; interface Props { title: string; description?: string; } const { getLocalizedUrl } = await getI18n(Astro.locals.currentLocale); const { title, description } = Astro.props; --- {/* ------------------------------------------- HTML ------------------------------------------- */}

{title}

{ description ? (

{description}

) : (

Please contact{" "} website technical administrator .

) }
{/* ------------------------------------------- CSS -------------------------------------------- */}