Restructure shared Astro sources and import aliases (#2737)

This commit is contained in:
Paweł Kuna
2026-07-30 23:58:48 +02:00
committed by GitHub
parent 0f8dcb0a3c
commit ad2ed849dd
492 changed files with 1469 additions and 1714 deletions
+3 -3
View File
@@ -3,10 +3,10 @@
// have no `code` property, so the reference renders value="" and never `selected`.
// We mirror that output exactly.
import FormFooter from '@shared/components/ui/FormFooter.astro';
import FormFooter from '@ui/FormFooter.astro';
import SingleLayout from '@shared/layouts/SingleLayout.astro';
import Button from '@shared/components/ui/Button.astro';
import FormGroup from '@shared/components/ui/FormGroup.astro';
import Button from '@ui/Button.astro';
import FormGroup from '@ui/FormGroup.astro';
import flags from '@data/flags.json';
---