---
import BaseLayout from '@/layouts/BaseLayout.astro';
import HeroHeader from '@/components/HeroHeader.astro';

export type Props = Parameters<typeof BaseLayout>[0];

const props = Astro.props;
---

<BaseLayout {...props}>
    <Fragment slot="header">
        <HeroHeader />
    </Fragment>
    <slot />
    <script src="@shared/scripts/hero.ts"></script>
</BaseLayout>
