---
import Html from "./components/Html.astro";
import Topbar from "./components/Topbar/Topbar.astro";
import Footer from "./components/Footer.astro";
import type { ParentPage } from "src/shared/payload/payload-sdk";
import AppLayoutBackgroundImg from "./components/AppLayoutBackgroundImg.astro";
interface Props {
parentPages?: ParentPage[];
metaTitle?: string;
hideFooterLinks?: boolean;
backgroundIllustration?: string | undefined;
}
const { metaTitle, hideFooterLinks = false, parentPages, backgroundIllustration } = Astro.props;
---
{/* ------------------------------------------- HTML ------------------------------------------- */}
{backgroundIllustration && }
{/* ------------------------------------------- CSS -------------------------------------------- */}