feat: convert site to astro via codex

This commit is contained in:
2026-06-08 11:17:39 -07:00
parent f3d3562cec
commit 33e78ff8a5
355 changed files with 19954 additions and 6 deletions
+3
View File
@@ -0,0 +1,3 @@
export function preventUnwiredFormSubmission(form: HTMLFormElement) {
form.addEventListener('submit', (event) => event.preventDefault());
}
+1
View File
@@ -0,0 +1 @@
export const AIA_API_BASE = import.meta.env.PUBLIC_AIA_API_BASE || 'https://api.azinstitute4autism.com';
+3
View File
@@ -0,0 +1,3 @@
export function closeMobileNavigation(details: HTMLDetailsElement) {
details.open = false;
}