feat: move improved components out of ui folder

This commit is contained in:
2026-02-14 23:10:43 -06:00
parent a09a4ee240
commit 47a637353c
34 changed files with 30 additions and 30 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/ui/buttons/GoBack.astro';
import GoHome from '@/components/ui/buttons/GoHome.astro';
import GoBack from '@/components/buttons/GoBack.astro';
import GoHome from '@/components/buttons/GoHome.astro';
const global = await directus.request(readSingleton('site_global'));
---