Builds footer, and updates new homepage

This commit is contained in:
Alicia Sykes
2024-06-08 15:23:25 +01:00
parent 8013a0a445
commit 6207157da7
2 changed files with 57 additions and 0 deletions

View File

@@ -2,6 +2,8 @@
import BaseLayout from '@layouts/Base.astro';
import HeroForm from '@components/homepage/HeroForm.astro';
import HomeBackground from '@/components/homepage/HomeBackground';
import AboutSection from '@/components/homepage/AboutSection.astro';
import Footer from '@components/scafold/Footer.astro';
const isBossServer = import.meta.env.BOSS_SERVER === true;
@@ -20,7 +22,9 @@ if (!isBossServer) {
</Fragment>
<main>
<HeroForm />
<AboutSection />
</main>
<Footer />
<HomeBackground client:only="react" />
</BaseLayout>