feat: final refactor of sections
All checks were successful
test-build / guarddog (push) Successful in 35s
test-build / build (push) Successful in 1m1s
renovate / renovate (push) Successful in 2m15s

This commit is contained in:
2026-02-15 23:38:55 -06:00
parent 5271be52a2
commit a74cc775d0
17 changed files with 232 additions and 245 deletions

View File

@@ -3,8 +3,8 @@ import { readSingleton } from '@directus/sdk';
import directus from '@lib/directus';
import BaseLayout from '@layouts/BaseLayout.astro';
import GoBack from '@/components/buttons/GoBack.astro';
import GoHome from '@/components/buttons/GoHome.astro';
import GoBackButton from '@/components/buttons/GoBackButton.astro';
import GoHomeButton from '@/components/buttons/GoHomeButton.astro';
const global = await directus.request(readSingleton('site_global'));
---
@@ -61,8 +61,8 @@ const global = await directus.request(readSingleton('site_global'));
<div
class="smooth-reveal mt-10 flex flex-col items-center justify-center gap-4 sm:flex-row"
>
<GoBack/>
<GoHome url={global.site_url} />
<GoBackButton/>
<GoHomeButton url={global.site_url} />
</div>
</div>
</div>