staging #94

Merged
esteban merged 43 commits from staging into database 2026-08-15 17:08:00 +00:00
2 changed files with 3 additions and 2 deletions
Showing only changes of commit 75449c9b4f - Show all commits

View File

@ -8,6 +8,7 @@ import { createTranslator, t } from "../../i18n";
const tl = createTranslator(Astro.currentLocale);
const isHebrew = Astro.currentLocale === "he";
const { hideContact } = Astro.props;
---
<div id="contact" class="bg-[#22523F]">
@ -52,7 +53,7 @@ const isHebrew = Astro.currentLocale === "he";
>
</p>
<FormContact client:load locale={Astro.currentLocale} />
{!hideContact && <FormContact client:load locale={Astro.currentLocale} />}
</div>
<div

View File

@ -127,7 +127,7 @@ if (routeKey === "formulario") {
</div>
)}
<FooterSection />
<FooterSection hideContact={routeKey === "formulario"} />
</MainLayout>