diff --git a/.gitignore b/.gitignore index 27409c3..4f67c95 100644 --- a/.gitignore +++ b/.gitignore @@ -47,6 +47,11 @@ temp/ .cursor/ .continue/ .windsurf/ +/.playwright-mcp/ + +# Local visual-comparison captures +/live-*.png +/live-*-snapshot.md # Operating-system metadata .DS_Store diff --git a/AUTONOMOUS-CODEX.md b/AUTONOMOUS-CODEX.md index 75e4e53..b92de48 100644 --- a/AUTONOMOUS-CODEX.md +++ b/AUTONOMOUS-CODEX.md @@ -47,17 +47,23 @@ The launcher also applies these session overrides: ```txt approval_policy="never" -mcp_servers.playwright.default_tools_approval_mode="auto" +mcp_servers.playwright.default_tools_approval_mode="approve" mcp_servers.playwright.tool_timeout_sec=300 -mcp_servers.openaiDeveloperDocs.default_tools_approval_mode="auto" +mcp_servers.openaiDeveloperDocs.default_tools_approval_mode="approve" mcp_servers.openaiDeveloperDocs.tool_timeout_sec=300 ``` -These settings allow MCP tools to run without approval prompts and give +The server-level `approve` settings pre-approve MCP tools without writing +incompatible per-tool approval tables into the profile. These settings allow +MCP tools to run without approval prompts and give long-running browser operations up to five minutes. An MCP server may still fail or time out. MCP elicitations that inherently require user input are rejected rather than shown as unattended prompts. +Do not persist an individual MCP tool approval when prompted by an older or +misconfigured session. Codex CLI 0.133.0 may write a per-tool table that the +profile-v2 parser rejects on the next launch. + ## Verification The nested setup smoke test confirmed that the project is readable and diff --git a/codex-auto b/codex-auto index ab972b5..0db5841 100755 --- a/codex-auto +++ b/codex-auto @@ -12,9 +12,9 @@ exec codex \ --profile-v2 azi4a2-autonomous \ --strict-config \ --config 'approval_policy="never"' \ - --config 'mcp_servers.playwright.default_tools_approval_mode="auto"' \ + --config 'mcp_servers.playwright.default_tools_approval_mode="approve"' \ --config 'mcp_servers.playwright.tool_timeout_sec=300' \ - --config 'mcp_servers.openaiDeveloperDocs.default_tools_approval_mode="auto"' \ + --config 'mcp_servers.openaiDeveloperDocs.default_tools_approval_mode="approve"' \ --config 'mcp_servers.openaiDeveloperDocs.tool_timeout_sec=300' \ --cd "$repo_root" \ "$@" diff --git a/flake.nix b/flake.nix index 1154860..fd01103 100644 --- a/flake.nix +++ b/flake.nix @@ -12,7 +12,7 @@ in { overlays.default = final: prev: rec { - nodejs = prev.nodejs; + nodejs = prev.nodejs_22; yarn = (prev.yarn.override { inherit nodejs; }); }; diff --git a/www/.env.example b/www/.env.example new file mode 100644 index 0000000..fb28bfe --- /dev/null +++ b/www/.env.example @@ -0,0 +1 @@ +PUBLIC_AIA_API_BASE=https://api.azinstitute4autism.com diff --git a/www/.gitignore b/www/.gitignore new file mode 100644 index 0000000..0172131 --- /dev/null +++ b/www/.gitignore @@ -0,0 +1,8 @@ +node_modules/ +dist/ +.astro/ +.env +.env.* +!.env.example +reports/live-crawl.json +reports/*.png diff --git a/www/README.md b/www/README.md new file mode 100644 index 0000000..0d98a3d --- /dev/null +++ b/www/README.md @@ -0,0 +1,344 @@ +# Arizona Institute for Autism Astro Site + +Static Astro + TypeScript migration of the public Arizona Institute for Autism +website. The read-only source mirror is located at +`../www.azinstitute4autism.com`. + +## Quick Start + +Run commands from this directory: + +```sh +cd www +npm install +npm run dev +``` + +Astro prints the local development URL, normally: + +```txt +http://localhost:4321 +``` + +The development server watches source files and refreshes the browser after +edits. Stop it with `Ctrl+C`. + +Do **not** run `npm run extract` during normal editing. Extraction regenerates +migrated Markdown from the raw mirror and can overwrite editorial changes. + +## Environment Setup + +Requirements: + +- Node.js 20.19 or newer; the Nix shell currently supplies Node.js 22 +- npm + +This repository also has a Nix development shell at the repository root: + +```sh +cd .. +nix --extra-experimental-features "nix-command flakes" develop +cd www +npm install +``` + +Copy the example environment file when testing the like/view counter: + +```sh +cp .env.example .env +``` + +The default value is: + +```txt +PUBLIC_AIA_API_BASE=https://api.azinstitute4autism.com +``` + +The site still renders when that API is unavailable. + +## View And Build + +### Development Server + +Use this while editing: + +```sh +npm run dev +``` + +Useful development URLs include: + +```txt +/ +/aba-therapy +/autism-evaluations +/learner-social-club +/client-consultation +/library +/es +/es/library +/ar +/ar/library +``` + +### Production Build + +Generate the static production site: + +```sh +npm run build +``` + +The autonomous Codex sandbox denies `/etc/hosts`, so its Node runtime cannot +resolve `localhost`. Use this equivalent validation command only inside that +sandbox: + +```sh +npm run build:sandbox +``` + +Build output is written to: + +```txt +dist/ +``` + +### Preview Production Output + +After a successful build: + +```sh +npm run preview +``` + +Astro prints the preview URL, normally `http://localhost:4321`. + +### Validate Before Committing + +```sh +npm run build +npm run audit:links +``` + +The link audit reads `dist/` after a successful build. If rendered output is +unavailable, it audits generated source routes, relative and root-relative +Markdown links, and public assets instead. It writes: + +```txt +reports/broken-links.md +``` + +## Editing Content + +Normal content editing happens in Markdown: + +```txt +src/content/pages/en +src/content/pages/es +src/content/pages/ar +src/content/blog/en +src/content/blog/es +src/content/blog/ar +src/content/authors/en +src/content/authors/es +src/content/authors/ar +``` + +Page and post frontmatter is validated by `src/content.config.ts`. + +Example: + +```md +--- +title: "Example Article" +description: "Short search and social description." +slug: "example-article" +canonical: "https://www.azinstitute4autism.com/library/example-article" +lang: "en" +translationKey: "example-article" +featuredImage: "/assets/images/example.webp" +alt: "Descriptive image alt text" +date: "2026-06-07" +author: "rula-diab" +category: "Library" +tags: + - ABA Therapy +draft: false +--- + +Article content goes here. +``` + +Set `draft: true` while preparing unpublished content. + +### Front Matter CMS + +The project includes `frontmatter.json` for the Front Matter CMS VS Code +extension. Open the `www` folder as the editor workspace so its content folders +and media paths resolve correctly. + +### Images And Downloads + +Store content-referenced assets in: + +```txt +public/assets/images +public/assets/downloads +public/assets/media +``` + +Reference public assets from Markdown using root-relative paths: + +```md +![Descriptive alt text](/assets/images/example.webp) +``` + +Use `src/assets/images` for images imported directly by Astro components and +processed by Astro. + +### Components And Styling + +Reusable page sections are in: + +```txt +src/components +src/layouts +``` + +Global styles and design tokens are in: + +```txt +src/styles/variables.css +src/styles/global.css +src/styles/rtl.css +``` + +Navigation, services, redirects, and site details are in: + +```txt +src/data +``` + +## Adding Content + +### Add An English Blog Post + +1. Create `src/content/blog/en/post-slug.md`. +2. Add valid frontmatter and article Markdown. +3. Place referenced images in `public/assets/images`. +4. Run `npm run dev` and view `/library/post-slug`. +5. Run the production validation commands before committing. + +### Add A Translation + +Use the same `translationKey` across translated entries: + +```txt +src/content/blog/en/post-slug.md +src/content/blog/es/post-slug.md +src/content/blog/ar/post-slug.md +``` + +The URLs become: + +```txt +/library/post-slug +/es/library/post-slug +/ar/library/post-slug +``` + +Arabic routes automatically render with `lang="ar"` and `dir="rtl"`. + +Do not publish unreviewed machine translations. Clearly mark placeholders. + +## Mirror Extraction Workflow + +The mirror is read-only source material. Never modify: + +```txt +../www.azinstitute4autism.com +``` + +Only rerun extraction when intentionally refreshing migrated content from the +mirror. Commit or back up editorial changes first. + +Dependency-free extraction: + +```sh +npm run extract +``` + +Full Cheerio/Turndown extraction: + +```sh +npm run extract:full +``` + +After extraction: + +```sh +npm run generate:sitemap +npm run generate:redirects +npm run build +npm run audit:links +``` + +Extraction regenerates content files, copied assets, and inventories. Review +the complete Git diff before accepting it. + +## Reports And Utilities + +Migration reports are stored in `reports/`. + +Useful commands: + +```sh +npm run crawl:live +npm run generate:sitemap +npm run generate:redirects +npm run audit:links +``` + +The live crawl is optional and may fail in restricted network environments. + +## Forms + +Forms are intentionally static and do not submit anywhere. Before production: + +1. Select a form backend. +2. Connect the forms. +3. Add spam protection. +4. Test validation, confirmation, and failure states. + +## Troubleshooting + +### `astro: command not found` + +Dependencies are not installed: + +```sh +npm install +``` + +### npm TLS or certificate errors + +Do not disable npm certificate verification. Run `npm install` from a normal +host terminal or trusted development environment with working CA certificates. + +### Link audit says build output is unavailable + +Build first: + +```sh +npm run build +npm run audit:links +``` + +### A content page is missing + +Check: + +- its Markdown file is in the correct language/content folder +- `draft` is `false` +- `slug` is unique within that language and content type +- frontmatter satisfies `src/content.config.ts` diff --git a/www/astro.config.mjs b/www/astro.config.mjs new file mode 100644 index 0000000..d960190 --- /dev/null +++ b/www/astro.config.mjs @@ -0,0 +1,9 @@ +import { defineConfig } from 'astro/config'; + +export default defineConfig({ + site: 'https://www.azinstitute4autism.com', + trailingSlash: 'never', + markdown: { + shikiConfig: { theme: 'github-light' } + } +}); diff --git a/www/frontmatter.json b/www/frontmatter.json new file mode 100644 index 0000000..733fde0 --- /dev/null +++ b/www/frontmatter.json @@ -0,0 +1,58 @@ +{ + "$schema": "https://frontmatter.codes/frontmatter.schema.json", + "frontMatter.framework.id": "astro", + "frontMatter.content.publicFolder": "public", + "frontMatter.content.pageFolders": [ + { "title": "Pages", "path": "[[workspace]]/src/content/pages" }, + { "title": "Blog", "path": "[[workspace]]/src/content/blog" }, + { "title": "Authors", "path": "[[workspace]]/src/content/authors" } + ], + "frontMatter.taxonomy.contentTypes": [ + { + "name": "page", + "pageBundle": false, + "fields": [ + { "title": "Title", "name": "title", "type": "string", "required": true }, + { "title": "Description", "name": "description", "type": "string" }, + { "title": "Slug", "name": "slug", "type": "string", "required": true }, + { "title": "Language", "name": "lang", "type": "choice", "choices": ["en", "ar", "es"] }, + { "title": "Canonical", "name": "canonical", "type": "string" }, + { "title": "Featured image", "name": "featuredImage", "type": "image" }, + { "title": "Alt text", "name": "alt", "type": "string" }, + { "title": "Translation key", "name": "translationKey", "type": "string" }, + { "title": "Draft", "name": "draft", "type": "boolean", "default": false } + ] + }, + { + "name": "blog", + "pageBundle": false, + "fields": [ + { "title": "Title", "name": "title", "type": "string", "required": true }, + { "title": "Description", "name": "description", "type": "string" }, + { "title": "Slug", "name": "slug", "type": "string", "required": true }, + { "title": "Date", "name": "date", "type": "datetime", "required": true }, + { "title": "Author", "name": "author", "type": "string", "default": "rula-diab" }, + { "title": "Category", "name": "category", "type": "string" }, + { "title": "Tags", "name": "tags", "type": "tags" }, + { "title": "Language", "name": "lang", "type": "choice", "choices": ["en", "ar", "es"] }, + { "title": "Featured image", "name": "featuredImage", "type": "image" }, + { "title": "Alt text", "name": "alt", "type": "string" }, + { "title": "Canonical", "name": "canonical", "type": "string" }, + { "title": "Translation key", "name": "translationKey", "type": "string" }, + { "title": "Draft", "name": "draft", "type": "boolean", "default": false } + ] + }, + { + "name": "author", + "pageBundle": false, + "fields": [ + { "title": "Name", "name": "name", "type": "string", "required": true }, + { "title": "Slug", "name": "slug", "type": "string", "required": true }, + { "title": "Description", "name": "description", "type": "string" }, + { "title": "Avatar", "name": "avatar", "type": "image" }, + { "title": "Language", "name": "lang", "type": "choice", "choices": ["en", "ar", "es"] }, + { "title": "Translation key", "name": "translationKey", "type": "string" } + ] + } + ] +} diff --git a/www/original/README.md b/www/original/README.md new file mode 100644 index 0000000..00dacf2 --- /dev/null +++ b/www/original/README.md @@ -0,0 +1,10 @@ +# Raw Source Mirror + +The read-only wget mirror used for this migration lives outside this Astro +project at: + +```txt +../www.azinstitute4autism.com +``` + +Run `npm run extract` to regenerate content and inventories from that source. diff --git a/www/package-lock.json b/www/package-lock.json new file mode 100644 index 0000000..459e49b --- /dev/null +++ b/www/package-lock.json @@ -0,0 +1,5983 @@ +{ + "name": "arizona-institute-for-autism", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "arizona-institute-for-autism", + "dependencies": { + "astro": "^5.10.0", + "cheerio": "^1.1.0", + "fast-glob": "^3.3.3", + "gray-matter": "^4.0.3", + "turndown": "^7.2.0", + "zod": "^3.25.0" + }, + "engines": { + "node": ">=20.19.0" + } + }, + "node_modules/@astrojs/compiler": { + "version": "2.13.1", + "resolved": "https://registry.npmjs.org/@astrojs/compiler/-/compiler-2.13.1.tgz", + "integrity": "sha512-f3FN83d2G/v32ipNClRKgYv30onQlMZX1vCeZMjPsMMPl1mDpmbl0+N5BYo4S/ofzqJyS5hvwacEo0CCVDn/Qg==", + "license": "MIT" + }, + "node_modules/@astrojs/internal-helpers": { + "version": "0.7.6", + "resolved": "https://registry.npmjs.org/@astrojs/internal-helpers/-/internal-helpers-0.7.6.tgz", + "integrity": "sha512-GOle7smBWKfMSP8osUIGOlB5kaHdQLV3foCsf+5Q9Wsuu+C6Fs3Ez/ttXmhjZ1HkSgsogcM1RXSjjOVieHq16Q==", + "license": "MIT" + }, + "node_modules/@astrojs/markdown-remark": { + "version": "6.3.11", + "resolved": "https://registry.npmjs.org/@astrojs/markdown-remark/-/markdown-remark-6.3.11.tgz", + "integrity": "sha512-hcaxX/5aC6lQgHeGh1i+aauvSwIT6cfyFjKWvExYSxUhZZBBdvCliOtu06gbQyhbe0pGJNoNmqNlQZ5zYUuIyQ==", + "license": "MIT", + "dependencies": { + "@astrojs/internal-helpers": "0.7.6", + "@astrojs/prism": "3.3.0", + "github-slugger": "^2.0.0", + "hast-util-from-html": "^2.0.3", + "hast-util-to-text": "^4.0.2", + "import-meta-resolve": "^4.2.0", + "js-yaml": "^4.1.1", + "mdast-util-definitions": "^6.0.0", + "rehype-raw": "^7.0.0", + "rehype-stringify": "^10.0.1", + "remark-gfm": "^4.0.1", + "remark-parse": "^11.0.0", + "remark-rehype": "^11.1.2", + "remark-smartypants": "^3.0.2", + "shiki": "^3.21.0", + "smol-toml": "^1.6.0", + "unified": "^11.0.5", + "unist-util-remove-position": "^5.0.0", + "unist-util-visit": "^5.0.0", + "unist-util-visit-parents": "^6.0.2", + "vfile": "^6.0.3" + } + }, + "node_modules/@astrojs/prism": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/@astrojs/prism/-/prism-3.3.0.tgz", + "integrity": "sha512-q8VwfU/fDZNoDOf+r7jUnMC2//H2l0TuQ6FkGJL8vD8nw/q5KiL3DS1KKBI3QhI9UQhpJ5dc7AtqfbXWuOgLCQ==", + "license": "MIT", + "dependencies": { + "prismjs": "^1.30.0" + }, + "engines": { + "node": "18.20.8 || ^20.3.0 || >=22.0.0" + } + }, + "node_modules/@astrojs/telemetry": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/@astrojs/telemetry/-/telemetry-3.3.0.tgz", + "integrity": "sha512-UFBgfeldP06qu6khs/yY+q1cDAaArM2/7AEIqQ9Cuvf7B1hNLq0xDrZkct+QoIGyjq56y8IaE2I3CTvG99mlhQ==", + "license": "MIT", + "dependencies": { + "ci-info": "^4.2.0", + "debug": "^4.4.0", + "dlv": "^1.1.3", + "dset": "^3.1.4", + "is-docker": "^3.0.0", + "is-wsl": "^3.1.0", + "which-pm-runs": "^1.1.0" + }, + "engines": { + "node": "18.20.8 || ^20.3.0 || >=22.0.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.29.7.tgz", + "integrity": "sha512-Pb5ijPrZ89GDH8223L4UP8i6QApWxs04RbPQJTeWDV0/keR2E36MeKnyr6LYmUUvqRRI+Iv87SuF1W6ErINzYw==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.29.7.tgz", + "integrity": "sha512-qehxGkRj55h/ff8EMaJ+cYhyaKlHIxqYDn682wQD7RNp9UujOQsHog2uS0r2vzr4pW+sXf90NeeayjcNaX3fFg==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.7.tgz", + "integrity": "sha512-hnORnjP/1P/zFEndoeX+n+t1RwWRJiJpM/jO7FW32Kn9r5+sJB2JWOdYo4L6k78j15eCwY3Gm/7364B1EMwtNg==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.29.7" + }, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/types": { + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.29.7.tgz", + "integrity": "sha512-4zBIxpPzowiZpusoFkyGVwakdRJUyuH5PxQ/PrqghfdFWWasvnCdPfQXHrenDai+gyLARulZjZowCOj6fjT4pA==", + "license": "MIT", + "dependencies": { + "@babel/helper-string-parser": "^7.29.7", + "@babel/helper-validator-identifier": "^7.29.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@capsizecss/unpack": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@capsizecss/unpack/-/unpack-4.0.0.tgz", + "integrity": "sha512-VERIM64vtTP1C4mxQ5thVT9fK0apjPFobqybMtA1UdUujWka24ERHbRHFGmpbbhp73MhV+KSsHQH9C6uOTdEQA==", + "license": "MIT", + "dependencies": { + "fontkitten": "^1.0.0" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@emnapi/runtime": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.10.0.tgz", + "integrity": "sha512-ewvYlk86xUoGI0zQRNq/mC+16R1QeDlKQy21Ki3oSYXNgLb45GV1P6A0M+/s6nyCuNDqe5VpaY84BzXGwVbwFA==", + "license": "MIT", + "optional": true, + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@esbuild/aix-ppc64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.27.7.tgz", + "integrity": "sha512-EKX3Qwmhz1eMdEJokhALr0YiD0lhQNwDqkPYyPhiSwKrh7/4KRjQc04sZ8db+5DVVnZ1LmbNDI1uAMPEUBnQPg==", + "cpu": [ + "ppc64" + ], + "license": "MIT", + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.27.7.tgz", + "integrity": "sha512-jbPXvB4Yj2yBV7HUfE2KHe4GJX51QplCN1pGbYjvsyCZbQmies29EoJbkEc+vYuU5o45AfQn37vZlyXy4YJ8RQ==", + "cpu": [ + "arm" + ], + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.27.7.tgz", + "integrity": "sha512-62dPZHpIXzvChfvfLJow3q5dDtiNMkwiRzPylSCfriLvZeq0a1bWChrGx/BbUbPwOrsWKMn8idSllklzBy+dgQ==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.27.7.tgz", + "integrity": "sha512-x5VpMODneVDb70PYV2VQOmIUUiBtY3D3mPBG8NxVk5CogneYhkR7MmM3yR/uMdITLrC1ml/NV1rj4bMJuy9MCg==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.27.7.tgz", + "integrity": "sha512-5lckdqeuBPlKUwvoCXIgI2D9/ABmPq3Rdp7IfL70393YgaASt7tbju3Ac+ePVi3KDH6N2RqePfHnXkaDtY9fkw==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.27.7.tgz", + "integrity": "sha512-rYnXrKcXuT7Z+WL5K980jVFdvVKhCHhUwid+dDYQpH+qu+TefcomiMAJpIiC2EM3Rjtq0sO3StMV/+3w3MyyqQ==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.27.7.tgz", + "integrity": "sha512-B48PqeCsEgOtzME2GbNM2roU29AMTuOIN91dsMO30t+Ydis3z/3Ngoj5hhnsOSSwNzS+6JppqWsuhTp6E82l2w==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.27.7.tgz", + "integrity": "sha512-jOBDK5XEjA4m5IJK3bpAQF9/Lelu/Z9ZcdhTRLf4cajlB+8VEhFFRjWgfy3M1O4rO2GQ/b2dLwCUGpiF/eATNQ==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.27.7.tgz", + "integrity": "sha512-RkT/YXYBTSULo3+af8Ib0ykH8u2MBh57o7q/DAs3lTJlyVQkgQvlrPTnjIzzRPQyavxtPtfg0EopvDyIt0j1rA==", + "cpu": [ + "arm" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.27.7.tgz", + "integrity": "sha512-RZPHBoxXuNnPQO9rvjh5jdkRmVizktkT7TCDkDmQ0W2SwHInKCAV95GRuvdSvA7w4VMwfCjUiPwDi0ZO6Nfe9A==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.27.7.tgz", + "integrity": "sha512-GA48aKNkyQDbd3KtkplYWT102C5sn/EZTY4XROkxONgruHPU72l+gW+FfF8tf2cFjeHaRbWpOYa/uRBz/Xq1Pg==", + "cpu": [ + "ia32" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.27.7.tgz", + "integrity": "sha512-a4POruNM2oWsD4WKvBSEKGIiWQF8fZOAsycHOt6JBpZ+JN2n2JH9WAv56SOyu9X5IqAjqSIPTaJkqN8F7XOQ5Q==", + "cpu": [ + "loong64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.27.7.tgz", + "integrity": "sha512-KabT5I6StirGfIz0FMgl1I+R1H73Gp0ofL9A3nG3i/cYFJzKHhouBV5VWK1CSgKvVaG4q1RNpCTR2LuTVB3fIw==", + "cpu": [ + "mips64el" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.27.7.tgz", + "integrity": "sha512-gRsL4x6wsGHGRqhtI+ifpN/vpOFTQtnbsupUF5R5YTAg+y/lKelYR1hXbnBdzDjGbMYjVJLJTd2OFmMewAgwlQ==", + "cpu": [ + "ppc64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.27.7.tgz", + "integrity": "sha512-hL25LbxO1QOngGzu2U5xeXtxXcW+/GvMN3ejANqXkxZ/opySAZMrc+9LY/WyjAan41unrR3YrmtTsUpwT66InQ==", + "cpu": [ + "riscv64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.27.7.tgz", + "integrity": "sha512-2k8go8Ycu1Kb46vEelhu1vqEP+UeRVj2zY1pSuPdgvbd5ykAw82Lrro28vXUrRmzEsUV0NzCf54yARIK8r0fdw==", + "cpu": [ + "s390x" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.27.7.tgz", + "integrity": "sha512-hzznmADPt+OmsYzw1EE33ccA+HPdIqiCRq7cQeL1Jlq2gb1+OyWBkMCrYGBJ+sxVzve2ZJEVeePbLM2iEIZSxA==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-arm64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.27.7.tgz", + "integrity": "sha512-b6pqtrQdigZBwZxAn1UpazEisvwaIDvdbMbmrly7cDTMFnw/+3lVxxCTGOrkPVnsYIosJJXAsILG9XcQS+Yu6w==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.27.7.tgz", + "integrity": "sha512-OfatkLojr6U+WN5EDYuoQhtM+1xco+/6FSzJJnuWiUw5eVcicbyK3dq5EeV/QHT1uy6GoDhGbFpprUiHUYggrw==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-arm64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.27.7.tgz", + "integrity": "sha512-AFuojMQTxAz75Fo8idVcqoQWEHIXFRbOc1TrVcFSgCZtQfSdc1RXgB3tjOn/krRHENUB4j00bfGjyl2mJrU37A==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.27.7.tgz", + "integrity": "sha512-+A1NJmfM8WNDv5CLVQYJ5PshuRm/4cI6WMZRg1by1GwPIQPCTs1GLEUHwiiQGT5zDdyLiRM/l1G0Pv54gvtKIg==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openharmony-arm64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.27.7.tgz", + "integrity": "sha512-+KrvYb/C8zA9CU/g0sR6w2RBw7IGc5J2BPnc3dYc5VJxHCSF1yNMxTV5LQ7GuKteQXZtspjFbiuW5/dOj7H4Yw==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.27.7.tgz", + "integrity": "sha512-ikktIhFBzQNt/QDyOL580ti9+5mL/YZeUPKU2ivGtGjdTYoqz6jObj6nOMfhASpS4GU4Q/Clh1QtxWAvcYKamA==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.27.7.tgz", + "integrity": "sha512-7yRhbHvPqSpRUV7Q20VuDwbjW5kIMwTHpptuUzV+AA46kiPze5Z7qgt6CLCK3pWFrHeNfDd1VKgyP4O+ng17CA==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.27.7.tgz", + "integrity": "sha512-SmwKXe6VHIyZYbBLJrhOoCJRB/Z1tckzmgTLfFYOfpMAx63BJEaL9ExI8x7v0oAO3Zh6D/Oi1gVxEYr5oUCFhw==", + "cpu": [ + "ia32" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.27.7.tgz", + "integrity": "sha512-56hiAJPhwQ1R4i+21FVF7V8kSD5zZTdHcVuRFMW0hn753vVfQN8xlx4uOPT4xoGH0Z/oVATuR82AiqSTDIpaHg==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@img/colour": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@img/colour/-/colour-1.1.0.tgz", + "integrity": "sha512-Td76q7j57o/tLVdgS746cYARfSyxk8iEfRxewL9h4OMzYhbW4TAcppl0mT4eyqXddh6L/jwoM75mo7ixa/pCeQ==", + "license": "MIT", + "optional": true, + "engines": { + "node": ">=18" + } + }, + "node_modules/@img/sharp-darwin-arm64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.34.5.tgz", + "integrity": "sha512-imtQ3WMJXbMY4fxb/Ndp6HBTNVtWCUI0WdobyheGf5+ad6xX8VIDO8u2xE4qc/fr08CKG/7dDseFtn6M6g/r3w==", + "cpu": [ + "arm64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-darwin-arm64": "1.2.4" + } + }, + "node_modules/@img/sharp-darwin-x64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.34.5.tgz", + "integrity": "sha512-YNEFAF/4KQ/PeW0N+r+aVVsoIY0/qxxikF2SWdp+NRkmMB7y9LBZAVqQ4yhGCm/H3H270OSykqmQMKLBhBJDEw==", + "cpu": [ + "x64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-darwin-x64": "1.2.4" + } + }, + "node_modules/@img/sharp-libvips-darwin-arm64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.2.4.tgz", + "integrity": "sha512-zqjjo7RatFfFoP0MkQ51jfuFZBnVE2pRiaydKJ1G/rHZvnsrHAOcQALIi9sA5co5xenQdTugCvtb1cuf78Vf4g==", + "cpu": [ + "arm64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "darwin" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-darwin-x64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.2.4.tgz", + "integrity": "sha512-1IOd5xfVhlGwX+zXv2N93k0yMONvUlANylbJw1eTah8K/Jtpi15KC+WSiaX/nBmbm2HxRM1gZ0nSdjSsrZbGKg==", + "cpu": [ + "x64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "darwin" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-arm": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.2.4.tgz", + "integrity": "sha512-bFI7xcKFELdiNCVov8e44Ia4u2byA+l3XtsAj+Q8tfCwO6BQ8iDojYdvoPMqsKDkuoOo+X6HZA0s0q11ANMQ8A==", + "cpu": [ + "arm" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-arm64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.2.4.tgz", + "integrity": "sha512-excjX8DfsIcJ10x1Kzr4RcWe1edC9PquDRRPx3YVCvQv+U5p7Yin2s32ftzikXojb1PIFc/9Mt28/y+iRklkrw==", + "cpu": [ + "arm64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-ppc64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-ppc64/-/sharp-libvips-linux-ppc64-1.2.4.tgz", + "integrity": "sha512-FMuvGijLDYG6lW+b/UvyilUWu5Ayu+3r2d1S8notiGCIyYU/76eig1UfMmkZ7vwgOrzKzlQbFSuQfgm7GYUPpA==", + "cpu": [ + "ppc64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-riscv64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-riscv64/-/sharp-libvips-linux-riscv64-1.2.4.tgz", + "integrity": "sha512-oVDbcR4zUC0ce82teubSm+x6ETixtKZBh/qbREIOcI3cULzDyb18Sr/Wcyx7NRQeQzOiHTNbZFF1UwPS2scyGA==", + "cpu": [ + "riscv64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-s390x": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.2.4.tgz", + "integrity": "sha512-qmp9VrzgPgMoGZyPvrQHqk02uyjA0/QrTO26Tqk6l4ZV0MPWIW6LTkqOIov+J1yEu7MbFQaDpwdwJKhbJvuRxQ==", + "cpu": [ + "s390x" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-x64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.2.4.tgz", + "integrity": "sha512-tJxiiLsmHc9Ax1bz3oaOYBURTXGIRDODBqhveVHonrHJ9/+k89qbLl0bcJns+e4t4rvaNBxaEZsFtSfAdquPrw==", + "cpu": [ + "x64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linuxmusl-arm64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.2.4.tgz", + "integrity": "sha512-FVQHuwx1IIuNow9QAbYUzJ+En8KcVm9Lk5+uGUQJHaZmMECZmOlix9HnH7n1TRkXMS0pGxIJokIVB9SuqZGGXw==", + "cpu": [ + "arm64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linuxmusl-x64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.2.4.tgz", + "integrity": "sha512-+LpyBk7L44ZIXwz/VYfglaX/okxezESc6UxDSoyo2Ks6Jxc4Y7sGjpgU9s4PMgqgjj1gZCylTieNamqA1MF7Dg==", + "cpu": [ + "x64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-linux-arm": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm/-/sharp-linux-arm-0.34.5.tgz", + "integrity": "sha512-9dLqsvwtg1uuXBGZKsxem9595+ujv0sJ6Vi8wcTANSFpwV/GONat5eCkzQo/1O6zRIkh0m/8+5BjrRr7jDUSZw==", + "cpu": [ + "arm" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-arm": "1.2.4" + } + }, + "node_modules/@img/sharp-linux-arm64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.34.5.tgz", + "integrity": "sha512-bKQzaJRY/bkPOXyKx5EVup7qkaojECG6NLYswgktOZjaXecSAeCWiZwwiFf3/Y+O1HrauiE3FVsGxFg8c24rZg==", + "cpu": [ + "arm64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-arm64": "1.2.4" + } + }, + "node_modules/@img/sharp-linux-ppc64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-ppc64/-/sharp-linux-ppc64-0.34.5.tgz", + "integrity": "sha512-7zznwNaqW6YtsfrGGDA6BRkISKAAE1Jo0QdpNYXNMHu2+0dTrPflTLNkpc8l7MUP5M16ZJcUvysVWWrMefZquA==", + "cpu": [ + "ppc64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-ppc64": "1.2.4" + } + }, + "node_modules/@img/sharp-linux-riscv64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-riscv64/-/sharp-linux-riscv64-0.34.5.tgz", + "integrity": "sha512-51gJuLPTKa7piYPaVs8GmByo7/U7/7TZOq+cnXJIHZKavIRHAP77e3N2HEl3dgiqdD/w0yUfiJnII77PuDDFdw==", + "cpu": [ + "riscv64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-riscv64": "1.2.4" + } + }, + "node_modules/@img/sharp-linux-s390x": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.34.5.tgz", + "integrity": "sha512-nQtCk0PdKfho3eC5MrbQoigJ2gd1CgddUMkabUj+rBevs8tZ2cULOx46E7oyX+04WGfABgIwmMC0VqieTiR4jg==", + "cpu": [ + "s390x" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-s390x": "1.2.4" + } + }, + "node_modules/@img/sharp-linux-x64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.34.5.tgz", + "integrity": "sha512-MEzd8HPKxVxVenwAa+JRPwEC7QFjoPWuS5NZnBt6B3pu7EG2Ge0id1oLHZpPJdn3OQK+BQDiw9zStiHBTJQQQQ==", + "cpu": [ + "x64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-x64": "1.2.4" + } + }, + "node_modules/@img/sharp-linuxmusl-arm64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.34.5.tgz", + "integrity": "sha512-fprJR6GtRsMt6Kyfq44IsChVZeGN97gTD331weR1ex1c1rypDEABN6Tm2xa1wE6lYb5DdEnk03NZPqA7Id21yg==", + "cpu": [ + "arm64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linuxmusl-arm64": "1.2.4" + } + }, + "node_modules/@img/sharp-linuxmusl-x64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.34.5.tgz", + "integrity": "sha512-Jg8wNT1MUzIvhBFxViqrEhWDGzqymo3sV7z7ZsaWbZNDLXRJZoRGrjulp60YYtV4wfY8VIKcWidjojlLcWrd8Q==", + "cpu": [ + "x64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linuxmusl-x64": "1.2.4" + } + }, + "node_modules/@img/sharp-wasm32": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-wasm32/-/sharp-wasm32-0.34.5.tgz", + "integrity": "sha512-OdWTEiVkY2PHwqkbBI8frFxQQFekHaSSkUIJkwzclWZe64O1X4UlUjqqqLaPbUpMOQk6FBu/HtlGXNblIs0huw==", + "cpu": [ + "wasm32" + ], + "license": "Apache-2.0 AND LGPL-3.0-or-later AND MIT", + "optional": true, + "dependencies": { + "@emnapi/runtime": "^1.7.0" + }, + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-win32-arm64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-win32-arm64/-/sharp-win32-arm64-0.34.5.tgz", + "integrity": "sha512-WQ3AgWCWYSb2yt+IG8mnC6Jdk9Whs7O0gxphblsLvdhSpSTtmu69ZG1Gkb6NuvxsNACwiPV6cNSZNzt0KPsw7g==", + "cpu": [ + "arm64" + ], + "license": "Apache-2.0 AND LGPL-3.0-or-later", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-win32-ia32": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.34.5.tgz", + "integrity": "sha512-FV9m/7NmeCmSHDD5j4+4pNI8Cp3aW+JvLoXcTUo0IqyjSfAZJ8dIUmijx1qaJsIiU+Hosw6xM5KijAWRJCSgNg==", + "cpu": [ + "ia32" + ], + "license": "Apache-2.0 AND LGPL-3.0-or-later", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-win32-x64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-win32-x64/-/sharp-win32-x64-0.34.5.tgz", + "integrity": "sha512-+29YMsqY2/9eFEiW93eqWnuLcWcufowXewwSNIT6UwZdUUCrM3oFjMWH/Z6/TMmb4hlFenmfAVbpWeup2jryCw==", + "cpu": [ + "x64" + ], + "license": "Apache-2.0 AND LGPL-3.0-or-later", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz", + "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==", + "license": "MIT" + }, + "node_modules/@mixmark-io/domino": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@mixmark-io/domino/-/domino-2.2.0.tgz", + "integrity": "sha512-Y28PR25bHXUg88kCV7nivXrP2Nj2RueZ3/l/jdx6J9f8J4nsEGcgX0Qe6lt7Pa+J79+kPiJU3LguR6O/6zrLOw==", + "license": "BSD-2-Clause" + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "license": "MIT", + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@oslojs/encoding": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@oslojs/encoding/-/encoding-1.1.0.tgz", + "integrity": "sha512-70wQhgYmndg4GCPxPPxPGevRKqTIJ2Nh4OkiMWmDAVYsTQ+Ta7Sq+rPevXyXGdzr30/qZBnyOalCszoMxlyldQ==", + "license": "MIT" + }, + "node_modules/@rollup/pluginutils": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.4.0.tgz", + "integrity": "sha512-MfPp06CjRLfXQ3wY0R8vJDYBy/MvVcc9OulEfR0B8Iv9ko+GCNaRZ+EpJYFl27LhKsZK0o420sYCRHCjfCgeUg==", + "license": "MIT", + "dependencies": { + "@types/estree": "^1.0.0", + "estree-walker": "^2.0.2", + "picomatch": "^4.0.2" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" + }, + "peerDependenciesMeta": { + "rollup": { + "optional": true + } + } + }, + "node_modules/@rollup/pluginutils/node_modules/estree-walker": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", + "license": "MIT" + }, + "node_modules/@rollup/rollup-android-arm-eabi": { + "version": "4.61.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.61.1.tgz", + "integrity": "sha512-JnBB8MdXj45cajvTuO5FmPlvFVJRQgvrz1uSEl3NwqFnReAPGwb8EanbGi4z2nRaqLzjJSv5/JmycoTKlRZxHA==", + "cpu": [ + "arm" + ], + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-android-arm64": { + "version": "4.61.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.61.1.tgz", + "integrity": "sha512-Jx2g7iSjw4AOT0HDPHM9RV3GNjRXwybWtSFZiZAYUTjUwjVrYIwq3kBf+LnhqJlzXFAqTAh2F7IGI+O568exPw==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.61.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.61.1.tgz", + "integrity": "sha512-0F1L/Z3Eqv8mT2n3dCpeO8GcTvHvVqkP5/t6DMsn0KzhYVcg+s7Ncl5DS8qjKYEeio6Az0Gt6nyBORay5qIlCA==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-darwin-x64": { + "version": "4.61.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.61.1.tgz", + "integrity": "sha512-qLttcH871ujY4YcVfUSShhOw+CsoTatYz8gRbHO7Bb92QH059/P0y5do1KMs41fY0BpD2x4AJH/gID0zFiqVKQ==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-freebsd-arm64": { + "version": "4.61.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.61.1.tgz", + "integrity": "sha512-fUI4RapGE0Oh3mb8mgfvC1O2nU1RpDZUKnDQm3xB1Ipg7C2wTs5Kstz7G2uWK99a8S2yTMq8/P4uycwNa0nJyw==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-freebsd-x64": { + "version": "4.61.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.61.1.tgz", + "integrity": "sha512-H5YrdvJaDtI/U9/emrD4b++xkvp3y/JvOe4rizHbxvkyMfRS/CiRYdji+Pl8D0brEaNFWUh1drQxgAGIl6Xudw==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { + "version": "4.61.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.61.1.tgz", + "integrity": "sha512-Q8CBCCQtDFrYtXoeUXSrnFXKOnyUhx6bz+SkL6A0E7V8kAiCJ5pamq1WtbfpVGhR5TSpXY6ak3avmDc5fHTyJA==", + "cpu": [ + "arm" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm-musleabihf": { + "version": "4.61.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.61.1.tgz", + "integrity": "sha512-nwnhk1581l0FBVellGcVCAT0Oi06onEA3WB53sf01VO3I0UPBkMH9sXONYME2K0ovXcNayJfNtHfm6mpJElatQ==", + "cpu": [ + "arm" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-gnu": { + "version": "4.61.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.61.1.tgz", + "integrity": "sha512-x5Xr49hwt3hdW75UOZm3395YwwzPyauktslv29KpWL/T+vVAzoT3azLcTWv0eMciBNrx+DYjH4paehHoLpPvpg==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-musl": { + "version": "4.61.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.61.1.tgz", + "integrity": "sha512-unMS3H73DpaoPyyEVPjGKleM/s0mkmsauTENpw4INQY8y4+IuLNjkueQ5QCtC0D3N38Y38yhAU8OoZ20S2Tm6w==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-loong64-gnu": { + "version": "4.61.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.61.1.tgz", + "integrity": "sha512-zNZzGRnAhwjFEYmvphJRV5XaQGjs62cCmeYYHUT//NbvEnHauw+I85nGG+SiVg5ld4GX8D1IbKIX+ozITQnhMQ==", + "cpu": [ + "loong64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-loong64-musl": { + "version": "4.61.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.61.1.tgz", + "integrity": "sha512-LdpWGL8X209B2SIvWjqlc8VZgM6PKfontSerGepuldQmHYrAOtnMCXeJkxXGbC+PPZVOuu5czJo7fNV6aeW8rQ==", + "cpu": [ + "loong64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-ppc64-gnu": { + "version": "4.61.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.61.1.tgz", + "integrity": "sha512-EC5kTtNaNGOmbMGqar8dvJy6y/hg99GAwjfBz++pxZhQATXGcRjd6c5en5wcbru0vkRmiMGsQKdMJOOf6sza4g==", + "cpu": [ + "ppc64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-ppc64-musl": { + "version": "4.61.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.61.1.tgz", + "integrity": "sha512-8hiwp6D4acEcNK78I4rP0/XtS1sknWIAMJBPdR4l6zUtyTm5KiTDr5bXmWt4foY7nAN7AThDHgkLIEZOWKbzWw==", + "cpu": [ + "ppc64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-gnu": { + "version": "4.61.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.61.1.tgz", + "integrity": "sha512-10dh/h/BqA7DuMPWSxkR8uks18FRwnwOEqr5zOTEl+NOwP/OMzKX8OFR/Of9xxDA7D5qef1Nzar5WDD2kCCr1g==", + "cpu": [ + "riscv64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-musl": { + "version": "4.61.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.61.1.tgz", + "integrity": "sha512-YKJ5lg35DP17gcAOggnihe+APw9HLyj1Xn7gsmGumBJAUDa6NGXNixJzmkWLhcK9TOuuyQjdamzvJefkO7qHZQ==", + "cpu": [ + "riscv64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-s390x-gnu": { + "version": "4.61.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.61.1.tgz", + "integrity": "sha512-Mlil5G2Jj6a7B3LWGctg+XPL9vdXYuzCtNXfxOQ0nPjc2m6ueUktocPGH9bnAM0bNRKb/bAWTujUU7IJQdQA+g==", + "cpu": [ + "s390x" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-gnu": { + "version": "4.61.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.61.1.tgz", + "integrity": "sha512-bVWIOIk6pV01p4CdUbPP7CJ/434z+OooYjDuFcR+44N35YvKUC66G8MGnvcWx5mWKW3g61J+t74l3Kj15Kwn2Q==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-musl": { + "version": "4.61.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.61.1.tgz", + "integrity": "sha512-qy5pBvZbqNFheBz61R1rzsezjm0J7O2oNGoWtGoY89SZYLUfxAJTBAqDChqAIdB4rCiIbi9nF7yZ83GnNiLwSw==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-openbsd-x64": { + "version": "4.61.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.61.1.tgz", + "integrity": "sha512-E83TXjI4zm0+5f2qO+UOudaCYIhYwpJ5jq6YCZNIZ+6CbfhKrkAGezeiASBL9ElxAxFsRS9ZhESv8mfnj6TKeg==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ] + }, + "node_modules/@rollup/rollup-openharmony-arm64": { + "version": "4.61.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.61.1.tgz", + "integrity": "sha512-fbWnKqVkjrJN38vNe3ahkbk6iejS/3b0Nt7EEtPpE6RBacZcGXNKbzfHN3GUUlXOPghUg0j6XUGrtjX9z1sIvA==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ] + }, + "node_modules/@rollup/rollup-win32-arm64-msvc": { + "version": "4.61.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.61.1.tgz", + "integrity": "sha512-ArMl38iVAbk0New1ogihQNY6iphLi4ZaRsa037gUzv5yeKPY8TD3Dmy4x2RNC1VztU/uqm+G+/RwFrSka3Oy2g==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-ia32-msvc": { + "version": "4.61.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.61.1.tgz", + "integrity": "sha512-0mYtjHS9ucAbcATycCNK9IGBk/cCe/ma7EmSLGZdsxnOA8cjRIyU04wDpVAD9NiOfLUR9KTxdiO53uOkherqjQ==", + "cpu": [ + "ia32" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-gnu": { + "version": "4.61.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.61.1.tgz", + "integrity": "sha512-gK1iCEPfpoSG9wfBihXxvBMi8ZfcWffYkEsC/Eih+iFENTaewvNcrEQ69lIOWYO5pePHKLHHO7nq5AILGO/HQQ==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-msvc": { + "version": "4.61.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.61.1.tgz", + "integrity": "sha512-X+zaP2x+j4RXGfbp/seSoRHWnPxzApilDszisZxbYH5C/jTxFhCtDNdPGZb9lJyYPs24wGxruPF7Y+sIXt9Gzw==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@shikijs/core": { + "version": "3.23.0", + "resolved": "https://registry.npmjs.org/@shikijs/core/-/core-3.23.0.tgz", + "integrity": "sha512-NSWQz0riNb67xthdm5br6lAkvpDJRTgB36fxlo37ZzM2yq0PQFFzbd8psqC2XMPgCzo1fW6cVi18+ArJ44wqgA==", + "license": "MIT", + "dependencies": { + "@shikijs/types": "3.23.0", + "@shikijs/vscode-textmate": "^10.0.2", + "@types/hast": "^3.0.4", + "hast-util-to-html": "^9.0.5" + } + }, + "node_modules/@shikijs/engine-javascript": { + "version": "3.23.0", + "resolved": "https://registry.npmjs.org/@shikijs/engine-javascript/-/engine-javascript-3.23.0.tgz", + "integrity": "sha512-aHt9eiGFobmWR5uqJUViySI1bHMqrAgamWE1TYSUoftkAeCCAiGawPMwM+VCadylQtF4V3VNOZ5LmfItH5f3yA==", + "license": "MIT", + "dependencies": { + "@shikijs/types": "3.23.0", + "@shikijs/vscode-textmate": "^10.0.2", + "oniguruma-to-es": "^4.3.4" + } + }, + "node_modules/@shikijs/engine-oniguruma": { + "version": "3.23.0", + "resolved": "https://registry.npmjs.org/@shikijs/engine-oniguruma/-/engine-oniguruma-3.23.0.tgz", + "integrity": "sha512-1nWINwKXxKKLqPibT5f4pAFLej9oZzQTsby8942OTlsJzOBZ0MWKiwzMsd+jhzu8YPCHAswGnnN1YtQfirL35g==", + "license": "MIT", + "dependencies": { + "@shikijs/types": "3.23.0", + "@shikijs/vscode-textmate": "^10.0.2" + } + }, + "node_modules/@shikijs/langs": { + "version": "3.23.0", + "resolved": "https://registry.npmjs.org/@shikijs/langs/-/langs-3.23.0.tgz", + "integrity": "sha512-2Ep4W3Re5aB1/62RSYQInK9mM3HsLeB91cHqznAJMuylqjzNVAVCMnNWRHFtcNHXsoNRayP9z1qj4Sq3nMqYXg==", + "license": "MIT", + "dependencies": { + "@shikijs/types": "3.23.0" + } + }, + "node_modules/@shikijs/themes": { + "version": "3.23.0", + "resolved": "https://registry.npmjs.org/@shikijs/themes/-/themes-3.23.0.tgz", + "integrity": "sha512-5qySYa1ZgAT18HR/ypENL9cUSGOeI2x+4IvYJu4JgVJdizn6kG4ia5Q1jDEOi7gTbN4RbuYtmHh0W3eccOrjMA==", + "license": "MIT", + "dependencies": { + "@shikijs/types": "3.23.0" + } + }, + "node_modules/@shikijs/types": { + "version": "3.23.0", + "resolved": "https://registry.npmjs.org/@shikijs/types/-/types-3.23.0.tgz", + "integrity": "sha512-3JZ5HXOZfYjsYSk0yPwBrkupyYSLpAE26Qc0HLghhZNGTZg/SKxXIIgoxOpmmeQP0RRSDJTk1/vPfw9tbw+jSQ==", + "license": "MIT", + "dependencies": { + "@shikijs/vscode-textmate": "^10.0.2", + "@types/hast": "^3.0.4" + } + }, + "node_modules/@shikijs/vscode-textmate": { + "version": "10.0.2", + "resolved": "https://registry.npmjs.org/@shikijs/vscode-textmate/-/vscode-textmate-10.0.2.tgz", + "integrity": "sha512-83yeghZ2xxin3Nj8z1NMd/NCuca+gsYXswywDy5bHvwlWL8tpTQmzGeUuHd9FC3E/SBEMvzJRwWEOz5gGes9Qg==", + "license": "MIT" + }, + "node_modules/@types/debug": { + "version": "4.1.13", + "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.13.tgz", + "integrity": "sha512-KSVgmQmzMwPlmtljOomayoR89W4FynCAi3E8PPs7vmDVPe84hT+vGPKkJfThkmXs0x0jAaa9U8uW8bbfyS2fWw==", + "license": "MIT", + "dependencies": { + "@types/ms": "*" + } + }, + "node_modules/@types/estree": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.9.tgz", + "integrity": "sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg==", + "license": "MIT" + }, + "node_modules/@types/hast": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/hast/-/hast-3.0.4.tgz", + "integrity": "sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==", + "license": "MIT", + "dependencies": { + "@types/unist": "*" + } + }, + "node_modules/@types/mdast": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz", + "integrity": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==", + "license": "MIT", + "dependencies": { + "@types/unist": "*" + } + }, + "node_modules/@types/ms": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@types/ms/-/ms-2.1.0.tgz", + "integrity": "sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==", + "license": "MIT" + }, + "node_modules/@types/nlcst": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@types/nlcst/-/nlcst-2.0.3.tgz", + "integrity": "sha512-vSYNSDe6Ix3q+6Z7ri9lyWqgGhJTmzRjZRqyq15N0Z/1/UnVsno9G/N40NBijoYx2seFDIl0+B2mgAb9mezUCA==", + "license": "MIT", + "dependencies": { + "@types/unist": "*" + } + }, + "node_modules/@types/unist": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz", + "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==", + "license": "MIT" + }, + "node_modules/@ungap/structured-clone": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.3.1.tgz", + "integrity": "sha512-mUFwbeTqrVgDQxFveS+df2yfap6iuP20NAKAsBt5jDEoOTDew+zwLAOilHCeQJOVSvmgCX4ogqIrA0mnyr08yQ==", + "license": "ISC" + }, + "node_modules/acorn": { + "version": "8.16.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.16.0.tgz", + "integrity": "sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==", + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/ansi-align": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.1.tgz", + "integrity": "sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==", + "license": "ISC", + "dependencies": { + "string-width": "^4.1.0" + } + }, + "node_modules/ansi-align/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-align/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "license": "MIT" + }, + "node_modules/ansi-align/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-align/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-regex": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.2.2.tgz", + "integrity": "sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/ansi-styles": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.3.tgz", + "integrity": "sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "license": "ISC", + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/anymatch/node_modules/picomatch": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.2.tgz", + "integrity": "sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==", + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "license": "Python-2.0" + }, + "node_modules/aria-query": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.2.tgz", + "integrity": "sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==", + "license": "Apache-2.0", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/array-iterate": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/array-iterate/-/array-iterate-2.0.1.tgz", + "integrity": "sha512-I1jXZMjAgCMmxT4qxXfPXa6SthSoE8h6gkSI9BGGNv8mP8G/v0blc+qFnZu6K42vTOiuME596QaLO0TP3Lk0xg==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/astro": { + "version": "5.18.2", + "resolved": "https://registry.npmjs.org/astro/-/astro-5.18.2.tgz", + "integrity": "sha512-TnFwLnAXty5MXKPDGuKXqK4AMBXG+FH6RUdK7Oyc3gyfNoFIthT+4eRbzOK43bdRlLaZuxgciDSjgtggZ3OtGQ==", + "license": "MIT", + "dependencies": { + "@astrojs/compiler": "^2.13.0", + "@astrojs/internal-helpers": "0.7.6", + "@astrojs/markdown-remark": "6.3.11", + "@astrojs/telemetry": "3.3.0", + "@capsizecss/unpack": "^4.0.0", + "@oslojs/encoding": "^1.1.0", + "@rollup/pluginutils": "^5.3.0", + "acorn": "^8.15.0", + "aria-query": "^5.3.2", + "axobject-query": "^4.1.0", + "boxen": "8.0.1", + "ci-info": "^4.3.1", + "clsx": "^2.1.1", + "common-ancestor-path": "^1.0.1", + "cookie": "^1.1.1", + "cssesc": "^3.0.0", + "debug": "^4.4.3", + "deterministic-object-hash": "^2.0.2", + "devalue": "^5.6.2", + "diff": "^8.0.3", + "dlv": "^1.1.3", + "dset": "^3.1.4", + "es-module-lexer": "^1.7.0", + "esbuild": "^0.27.3", + "estree-walker": "^3.0.3", + "flattie": "^1.1.1", + "fontace": "~0.4.0", + "github-slugger": "^2.0.0", + "html-escaper": "3.0.3", + "http-cache-semantics": "^4.2.0", + "import-meta-resolve": "^4.2.0", + "js-yaml": "^4.1.1", + "magic-string": "^0.30.21", + "magicast": "^0.5.1", + "mrmime": "^2.0.1", + "neotraverse": "^0.6.18", + "p-limit": "^6.2.0", + "p-queue": "^8.1.1", + "package-manager-detector": "^1.6.0", + "piccolore": "^0.1.3", + "picomatch": "^4.0.3", + "prompts": "^2.4.2", + "rehype": "^13.0.2", + "semver": "^7.7.3", + "shiki": "^3.21.0", + "smol-toml": "^1.6.0", + "svgo": "^4.0.0", + "tinyexec": "^1.0.2", + "tinyglobby": "^0.2.15", + "tsconfck": "^3.1.6", + "ultrahtml": "^1.6.0", + "unifont": "~0.7.3", + "unist-util-visit": "^5.0.0", + "unstorage": "^1.17.4", + "vfile": "^6.0.3", + "vite": "^6.4.1", + "vitefu": "^1.1.1", + "xxhash-wasm": "^1.1.0", + "yargs-parser": "^21.1.1", + "yocto-spinner": "^0.2.3", + "zod": "^3.25.76", + "zod-to-json-schema": "^3.25.1", + "zod-to-ts": "^1.2.0" + }, + "bin": { + "astro": "astro.js" + }, + "engines": { + "node": "18.20.8 || ^20.3.0 || >=22.0.0", + "npm": ">=9.6.5", + "pnpm": ">=7.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/astrodotbuild" + }, + "optionalDependencies": { + "sharp": "^0.34.0" + } + }, + "node_modules/axobject-query": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-4.1.0.tgz", + "integrity": "sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==", + "license": "Apache-2.0", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/bail": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz", + "integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/base-64": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/base-64/-/base-64-1.0.0.tgz", + "integrity": "sha512-kwDPIFCGx0NZHog36dj+tHiwP4QMzsZ3AgMViUBKI0+V5n4U0ufTCUMhnQ04diaRI8EX/QcPfql7zlhZ7j4zgg==", + "license": "MIT" + }, + "node_modules/boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", + "license": "ISC" + }, + "node_modules/boxen": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/boxen/-/boxen-8.0.1.tgz", + "integrity": "sha512-F3PH5k5juxom4xktynS7MoFY+NUWH5LC4CnH11YB8NPew+HLpmBLCybSAEyb2F+4pRXhuhWqFesoQd6DAyc2hw==", + "license": "MIT", + "dependencies": { + "ansi-align": "^3.0.1", + "camelcase": "^8.0.0", + "chalk": "^5.3.0", + "cli-boxes": "^3.0.0", + "string-width": "^7.2.0", + "type-fest": "^4.21.0", + "widest-line": "^5.0.0", + "wrap-ansi": "^9.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/braces": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "license": "MIT", + "dependencies": { + "fill-range": "^7.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/camelcase": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-8.0.0.tgz", + "integrity": "sha512-8WB3Jcas3swSvjIeA2yvCJ+Miyz5l1ZmB6HFb9R1317dt9LCQoswg/BGrmAmkWVEszSrrg4RwmO46qIm2OEnSA==", + "license": "MIT", + "engines": { + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ccount": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/ccount/-/ccount-2.0.1.tgz", + "integrity": "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/chalk": { + "version": "5.6.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.6.2.tgz", + "integrity": "sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA==", + "license": "MIT", + "engines": { + "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/character-entities": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-2.0.2.tgz", + "integrity": "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/character-entities-html4": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-2.1.0.tgz", + "integrity": "sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/character-entities-legacy": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz", + "integrity": "sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/cheerio": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-1.1.0.tgz", + "integrity": "sha512-+0hMx9eYhJvWbgpKV9hN7jg0JcwydpopZE4hgi+KvQtByZXPp04NiCWU0LzcAbP63abZckIHkTQaXVF52mX3xQ==", + "license": "MIT", + "dependencies": { + "cheerio-select": "^2.1.0", + "dom-serializer": "^2.0.0", + "domhandler": "^5.0.3", + "domutils": "^3.2.2", + "encoding-sniffer": "^0.2.0", + "htmlparser2": "^10.0.0", + "parse5": "^7.3.0", + "parse5-htmlparser2-tree-adapter": "^7.1.0", + "parse5-parser-stream": "^7.1.2", + "undici": "^7.10.0", + "whatwg-mimetype": "^4.0.0" + }, + "engines": { + "node": ">=18.17" + }, + "funding": { + "url": "https://github.com/cheeriojs/cheerio?sponsor=1" + } + }, + "node_modules/cheerio-select": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cheerio-select/-/cheerio-select-2.1.0.tgz", + "integrity": "sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g==", + "license": "BSD-2-Clause", + "dependencies": { + "boolbase": "^1.0.0", + "css-select": "^5.1.0", + "css-what": "^6.1.0", + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3", + "domutils": "^3.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/chokidar": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-5.0.0.tgz", + "integrity": "sha512-TQMmc3w+5AxjpL8iIiwebF73dRDF4fBIieAqGn9RGCWaEVwQ6Fb2cGe31Yns0RRIzii5goJ1Y7xbMwo1TxMplw==", + "license": "MIT", + "dependencies": { + "readdirp": "^5.0.0" + }, + "engines": { + "node": ">= 20.19.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/ci-info": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-4.4.0.tgz", + "integrity": "sha512-77PSwercCZU2Fc4sX94eF8k8Pxte6JAwL4/ICZLFjJLqegs7kCuAsqqj/70NQF6TvDpgFjkubQB2FW2ZZddvQg==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/cli-boxes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-3.0.0.tgz", + "integrity": "sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/clsx": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz", + "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/comma-separated-tokens": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz", + "integrity": "sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/commander": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-11.1.0.tgz", + "integrity": "sha512-yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ==", + "license": "MIT", + "engines": { + "node": ">=16" + } + }, + "node_modules/common-ancestor-path": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/common-ancestor-path/-/common-ancestor-path-1.0.1.tgz", + "integrity": "sha512-L3sHRo1pXXEqX8VU28kfgUY+YGsk09hPqZiZmLacNib6XNTCM8ubYeT7ryXQw8asB1sKgcU5lkB7ONug08aB8w==", + "license": "ISC" + }, + "node_modules/cookie": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-1.1.1.tgz", + "integrity": "sha512-ei8Aos7ja0weRpFzJnEA9UHJ/7XQmqglbRwnf2ATjcB9Wq874VKH9kfjjirM6UhU2/E5fFYadylyhFldcqSidQ==", + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, + "node_modules/cookie-es": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/cookie-es/-/cookie-es-1.2.3.tgz", + "integrity": "sha512-lXVyvUvrNXblMqzIRrxHb57UUVmqsSWlxqt3XIjCkUP0wDAf6uicO6KMbEgYrMNtEvWgWHwe42CKxPu9MYAnWw==", + "license": "MIT" + }, + "node_modules/crossws": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/crossws/-/crossws-0.3.5.tgz", + "integrity": "sha512-ojKiDvcmByhwa8YYqbQI/hg7MEU0NC03+pSdEq4ZUnZR9xXpwk7E43SMNGkn+JxJGPFtNvQ48+vV2p+P1ml5PA==", + "license": "MIT", + "dependencies": { + "uncrypto": "^0.1.3" + } + }, + "node_modules/css-select": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-5.2.2.tgz", + "integrity": "sha512-TizTzUddG/xYLA3NXodFM0fSbNizXjOKhqiQQwvhlspadZokn1KDy0NZFS0wuEubIYAV5/c1/lAr0TaaFXEXzw==", + "license": "BSD-2-Clause", + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^6.1.0", + "domhandler": "^5.0.2", + "domutils": "^3.0.1", + "nth-check": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/css-tree": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-3.2.1.tgz", + "integrity": "sha512-X7sjQzceUhu1u7Y/ylrRZFU2FS6LRiFVp6rKLPg23y3x3c3DOKAwuXGDp+PAGjh6CSnCjYeAul8pcT8bAl+lSA==", + "license": "MIT", + "dependencies": { + "mdn-data": "2.27.1", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0" + } + }, + "node_modules/css-what": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.2.2.tgz", + "integrity": "sha512-u/O3vwbptzhMs3L1fQE82ZSLHQQfto5gyZzwteVIEyeaY5Fc7R4dapF/BvRoSYFeqfBk4m0V1Vafq5Pjv25wvA==", + "license": "BSD-2-Clause", + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "license": "MIT", + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/csso": { + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/csso/-/csso-5.0.5.tgz", + "integrity": "sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==", + "license": "MIT", + "dependencies": { + "css-tree": "~2.2.0" + }, + "engines": { + "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/csso/node_modules/css-tree": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.2.1.tgz", + "integrity": "sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==", + "license": "MIT", + "dependencies": { + "mdn-data": "2.0.28", + "source-map-js": "^1.0.1" + }, + "engines": { + "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/csso/node_modules/mdn-data": { + "version": "2.0.28", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.28.tgz", + "integrity": "sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==", + "license": "CC0-1.0" + }, + "node_modules/debug": { + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", + "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/decode-named-character-reference": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.3.0.tgz", + "integrity": "sha512-GtpQYB283KrPp6nRw50q3U9/VfOutZOe103qlN7BPP6Ad27xYnOIWv4lPzo8HCAL+mMZofJ9KEy30fq6MfaK6Q==", + "license": "MIT", + "dependencies": { + "character-entities": "^2.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/defu": { + "version": "6.1.7", + "resolved": "https://registry.npmjs.org/defu/-/defu-6.1.7.tgz", + "integrity": "sha512-7z22QmUWiQ/2d0KkdYmANbRUVABpZ9SNYyH5vx6PZ+nE5bcC0l7uFvEfHlyld/HcGBFTL536ClDt3DEcSlEJAQ==", + "license": "MIT" + }, + "node_modules/dequal": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/destr": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/destr/-/destr-2.0.5.tgz", + "integrity": "sha512-ugFTXCtDZunbzasqBxrK93Ik/DRYsO6S/fedkWEMKqt04xZ4csmnmwGDBAb07QWNaGMAmnTIemsYZCksjATwsA==", + "license": "MIT" + }, + "node_modules/detect-libc": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz", + "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==", + "license": "Apache-2.0", + "optional": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/deterministic-object-hash": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/deterministic-object-hash/-/deterministic-object-hash-2.0.2.tgz", + "integrity": "sha512-KxektNH63SrbfUyDiwXqRb1rLwKt33AmMv+5Nhsw1kqZ13SJBRTgZHtGbE+hH3a1mVW1cz+4pqSWVPAtLVXTzQ==", + "license": "MIT", + "dependencies": { + "base-64": "^1.0.0" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/devalue": { + "version": "5.8.1", + "resolved": "https://registry.npmjs.org/devalue/-/devalue-5.8.1.tgz", + "integrity": "sha512-4CXDYRBGqN+57wVJkuXBYmpAVUSg3L6JAQa/DFqm238G73E1wuyc/JhGQJzN7vUf/CMphYau2zXbfWzDR5aTEw==", + "license": "MIT" + }, + "node_modules/devlop": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/devlop/-/devlop-1.1.0.tgz", + "integrity": "sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==", + "license": "MIT", + "dependencies": { + "dequal": "^2.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/diff": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/diff/-/diff-8.0.4.tgz", + "integrity": "sha512-DPi0FmjiSU5EvQV0++GFDOJ9ASQUVFh5kD+OzOnYdi7n3Wpm9hWWGfB/O2blfHcMVTL5WkQXSnRiK9makhrcnw==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.3.1" + } + }, + "node_modules/dlv": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", + "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==", + "license": "MIT" + }, + "node_modules/dom-serializer": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", + "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", + "license": "MIT", + "dependencies": { + "domelementtype": "^2.3.0", + "domhandler": "^5.0.2", + "entities": "^4.2.0" + }, + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + } + }, + "node_modules/domelementtype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "license": "BSD-2-Clause" + }, + "node_modules/domhandler": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", + "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", + "license": "BSD-2-Clause", + "dependencies": { + "domelementtype": "^2.3.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" + } + }, + "node_modules/domutils": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.2.2.tgz", + "integrity": "sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==", + "license": "BSD-2-Clause", + "dependencies": { + "dom-serializer": "^2.0.0", + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3" + }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" + } + }, + "node_modules/dset": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/dset/-/dset-3.1.4.tgz", + "integrity": "sha512-2QF/g9/zTaPDc3BjNcVTGoBbXBgYfMTTceLaYcFJ/W9kggFUkhxD/hMEeuLKbugyef9SqAx8cpgwlIP/jinUTA==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/emoji-regex": { + "version": "10.6.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.6.0.tgz", + "integrity": "sha512-toUI84YS5YmxW219erniWD0CIVOo46xGKColeNQRgOzDorgBi1v4D71/OFzgD9GO2UGKIv1C3Sp8DAn0+j5w7A==", + "license": "MIT" + }, + "node_modules/encoding-sniffer": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/encoding-sniffer/-/encoding-sniffer-0.2.1.tgz", + "integrity": "sha512-5gvq20T6vfpekVtqrYQsSCFZ1wEg5+wW0/QaZMWkFr6BqD3NfKs0rLCx4rrVlSWJeZb5NBJgVLswK/w2MWU+Gw==", + "license": "MIT", + "dependencies": { + "iconv-lite": "^0.6.3", + "whatwg-encoding": "^3.1.1" + }, + "funding": { + "url": "https://github.com/fb55/encoding-sniffer?sponsor=1" + } + }, + "node_modules/entities": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", + "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/es-module-lexer": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.7.0.tgz", + "integrity": "sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==", + "license": "MIT" + }, + "node_modules/esbuild": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.27.7.tgz", + "integrity": "sha512-IxpibTjyVnmrIQo5aqNpCgoACA/dTKLTlhMHihVHhdkxKyPO1uBBthumT0rdHmcsk9uMonIWS0m4FljWzILh3w==", + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=18" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.27.7", + "@esbuild/android-arm": "0.27.7", + "@esbuild/android-arm64": "0.27.7", + "@esbuild/android-x64": "0.27.7", + "@esbuild/darwin-arm64": "0.27.7", + "@esbuild/darwin-x64": "0.27.7", + "@esbuild/freebsd-arm64": "0.27.7", + "@esbuild/freebsd-x64": "0.27.7", + "@esbuild/linux-arm": "0.27.7", + "@esbuild/linux-arm64": "0.27.7", + "@esbuild/linux-ia32": "0.27.7", + "@esbuild/linux-loong64": "0.27.7", + "@esbuild/linux-mips64el": "0.27.7", + "@esbuild/linux-ppc64": "0.27.7", + "@esbuild/linux-riscv64": "0.27.7", + "@esbuild/linux-s390x": "0.27.7", + "@esbuild/linux-x64": "0.27.7", + "@esbuild/netbsd-arm64": "0.27.7", + "@esbuild/netbsd-x64": "0.27.7", + "@esbuild/openbsd-arm64": "0.27.7", + "@esbuild/openbsd-x64": "0.27.7", + "@esbuild/openharmony-arm64": "0.27.7", + "@esbuild/sunos-x64": "0.27.7", + "@esbuild/win32-arm64": "0.27.7", + "@esbuild/win32-ia32": "0.27.7", + "@esbuild/win32-x64": "0.27.7" + } + }, + "node_modules/escape-string-regexp": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", + "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "license": "BSD-2-Clause", + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/estree-walker": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", + "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", + "license": "MIT", + "dependencies": { + "@types/estree": "^1.0.0" + } + }, + "node_modules/eventemitter3": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.4.tgz", + "integrity": "sha512-mlsTRyGaPBjPedk6Bvw+aqbsXDtoAyAzm5MO7JgU+yVRyMQ5O8bD4Kcci7BS85f93veegeCPkL8R4GLClnjLFw==", + "license": "MIT" + }, + "node_modules/extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", + "license": "MIT" + }, + "node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "license": "MIT", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fast-glob": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz", + "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==", + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.8" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fastq": { + "version": "1.20.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.20.1.tgz", + "integrity": "sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw==", + "license": "ISC", + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/fdir": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz", + "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==", + "license": "MIT", + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "picomatch": "^3 || ^4" + }, + "peerDependenciesMeta": { + "picomatch": { + "optional": true + } + } + }, + "node_modules/fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "license": "MIT", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/flattie": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/flattie/-/flattie-1.1.1.tgz", + "integrity": "sha512-9UbaD6XdAL97+k/n+N7JwX46K/M6Zc6KcFYskrYL8wbBV/Uyk0CTAMY0VT+qiK5PM7AIc9aTWYtq65U7T+aCNQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/fontace": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/fontace/-/fontace-0.4.1.tgz", + "integrity": "sha512-lDMvbAzSnHmbYMTEld5qdtvNH2/pWpICOqpean9IgC7vUbUJc3k+k5Dokp85CegamqQpFbXf0rAVkbzpyTA8aw==", + "license": "MIT", + "dependencies": { + "fontkitten": "^1.0.2" + } + }, + "node_modules/fontkitten": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/fontkitten/-/fontkitten-1.0.3.tgz", + "integrity": "sha512-Wp1zXWPVUPBmfoa3Cqc9ctaKuzKAV6uLstRqlR56kSjplf5uAce+qeyYym7F+PHbGTk+tCEdkCW6RD7DX/gBZw==", + "license": "MIT", + "dependencies": { + "tiny-inflate": "^1.0.3" + }, + "engines": { + "node": ">=20" + } + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/get-east-asian-width": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/get-east-asian-width/-/get-east-asian-width-1.6.0.tgz", + "integrity": "sha512-QRbvDIbx6YklUe6RxeTeleMR0yv3cYH6PsPZHcnVn7xv7zO1BHN8r0XETu8n6Ye3Q+ahtSarc3WgtNWmehIBfA==", + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/github-slugger": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/github-slugger/-/github-slugger-2.0.0.tgz", + "integrity": "sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==", + "license": "ISC" + }, + "node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/gray-matter": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/gray-matter/-/gray-matter-4.0.3.tgz", + "integrity": "sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==", + "license": "MIT", + "dependencies": { + "js-yaml": "^3.13.1", + "kind-of": "^6.0.2", + "section-matter": "^1.0.0", + "strip-bom-string": "^1.0.0" + }, + "engines": { + "node": ">=6.0" + } + }, + "node_modules/gray-matter/node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "license": "MIT", + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/gray-matter/node_modules/js-yaml": { + "version": "3.14.2", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.2.tgz", + "integrity": "sha512-PMSmkqxr106Xa156c2M265Z+FTrPl+oxd/rgOQy2tijQeK5TxQ43psO1ZCwhVOSdnn+RzkzlRz/eY4BgJBYVpg==", + "license": "MIT", + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/h3": { + "version": "1.15.11", + "resolved": "https://registry.npmjs.org/h3/-/h3-1.15.11.tgz", + "integrity": "sha512-L3THSe2MPeBwgIZVSH5zLdBBU90TOxarvhK9d04IDY2AmVS8j2Jz2LIWtwsGOU3lu2I5jCN7FNvVfY2+XyF+mg==", + "license": "MIT", + "dependencies": { + "cookie-es": "^1.2.3", + "crossws": "^0.3.5", + "defu": "^6.1.6", + "destr": "^2.0.5", + "iron-webcrypto": "^1.2.1", + "node-mock-http": "^1.0.4", + "radix3": "^1.1.2", + "ufo": "^1.6.3", + "uncrypto": "^0.1.3" + } + }, + "node_modules/hast-util-from-html": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/hast-util-from-html/-/hast-util-from-html-2.0.3.tgz", + "integrity": "sha512-CUSRHXyKjzHov8yKsQjGOElXy/3EKpyX56ELnkHH34vDVw1N1XSQ1ZcAvTyAPtGqLTuKP/uxM+aLkSPqF/EtMw==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0", + "devlop": "^1.1.0", + "hast-util-from-parse5": "^8.0.0", + "parse5": "^7.0.0", + "vfile": "^6.0.0", + "vfile-message": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-from-parse5": { + "version": "8.0.3", + "resolved": "https://registry.npmjs.org/hast-util-from-parse5/-/hast-util-from-parse5-8.0.3.tgz", + "integrity": "sha512-3kxEVkEKt0zvcZ3hCRYI8rqrgwtlIOFMWkbclACvjlDw8Li9S2hk/d51OI0nr/gIpdMHNepwgOKqZ/sy0Clpyg==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0", + "@types/unist": "^3.0.0", + "devlop": "^1.0.0", + "hastscript": "^9.0.0", + "property-information": "^7.0.0", + "vfile": "^6.0.0", + "vfile-location": "^5.0.0", + "web-namespaces": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-is-element": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/hast-util-is-element/-/hast-util-is-element-3.0.0.tgz", + "integrity": "sha512-Val9mnv2IWpLbNPqc/pUem+a7Ipj2aHacCwgNfTiK0vJKl0LF+4Ba4+v1oPHFpf3bLYmreq0/l3Gud9S5OH42g==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-parse-selector": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/hast-util-parse-selector/-/hast-util-parse-selector-4.0.0.tgz", + "integrity": "sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-raw": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/hast-util-raw/-/hast-util-raw-9.1.0.tgz", + "integrity": "sha512-Y8/SBAHkZGoNkpzqqfCldijcuUKh7/su31kEBp67cFY09Wy0mTRgtsLYsiIxMJxlu0f6AA5SUTbDR8K0rxnbUw==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0", + "@types/unist": "^3.0.0", + "@ungap/structured-clone": "^1.0.0", + "hast-util-from-parse5": "^8.0.0", + "hast-util-to-parse5": "^8.0.0", + "html-void-elements": "^3.0.0", + "mdast-util-to-hast": "^13.0.0", + "parse5": "^7.0.0", + "unist-util-position": "^5.0.0", + "unist-util-visit": "^5.0.0", + "vfile": "^6.0.0", + "web-namespaces": "^2.0.0", + "zwitch": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-to-html": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/hast-util-to-html/-/hast-util-to-html-9.0.5.tgz", + "integrity": "sha512-OguPdidb+fbHQSU4Q4ZiLKnzWo8Wwsf5bZfbvu7//a9oTYoqD/fWpe96NuHkoS9h0ccGOTe0C4NGXdtS0iObOw==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0", + "@types/unist": "^3.0.0", + "ccount": "^2.0.0", + "comma-separated-tokens": "^2.0.0", + "hast-util-whitespace": "^3.0.0", + "html-void-elements": "^3.0.0", + "mdast-util-to-hast": "^13.0.0", + "property-information": "^7.0.0", + "space-separated-tokens": "^2.0.0", + "stringify-entities": "^4.0.0", + "zwitch": "^2.0.4" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-to-parse5": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/hast-util-to-parse5/-/hast-util-to-parse5-8.0.1.tgz", + "integrity": "sha512-MlWT6Pjt4CG9lFCjiz4BH7l9wmrMkfkJYCxFwKQic8+RTZgWPuWxwAfjJElsXkex7DJjfSJsQIt931ilUgmwdA==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0", + "comma-separated-tokens": "^2.0.0", + "devlop": "^1.0.0", + "property-information": "^7.0.0", + "space-separated-tokens": "^2.0.0", + "web-namespaces": "^2.0.0", + "zwitch": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-to-text": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/hast-util-to-text/-/hast-util-to-text-4.0.2.tgz", + "integrity": "sha512-KK6y/BN8lbaq654j7JgBydev7wuNMcID54lkRav1P0CaE1e47P72AWWPiGKXTJU271ooYzcvTAn/Zt0REnvc7A==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0", + "@types/unist": "^3.0.0", + "hast-util-is-element": "^3.0.0", + "unist-util-find-after": "^5.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-whitespace": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-3.0.0.tgz", + "integrity": "sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hastscript": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/hastscript/-/hastscript-9.0.1.tgz", + "integrity": "sha512-g7df9rMFX/SPi34tyGCyUBREQoKkapwdY/T04Qn9TDWfHhAYt4/I0gMVirzK5wEzeUqIjEB+LXC/ypb7Aqno5w==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0", + "comma-separated-tokens": "^2.0.0", + "hast-util-parse-selector": "^4.0.0", + "property-information": "^7.0.0", + "space-separated-tokens": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/html-escaper": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-3.0.3.tgz", + "integrity": "sha512-RuMffC89BOWQoY0WKGpIhn5gX3iI54O6nRA0yC124NYVtzjmFWBIiFd8M0x+ZdX0P9R4lADg1mgP8C7PxGOWuQ==", + "license": "MIT" + }, + "node_modules/html-void-elements": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/html-void-elements/-/html-void-elements-3.0.0.tgz", + "integrity": "sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/htmlparser2": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-10.1.0.tgz", + "integrity": "sha512-VTZkM9GWRAtEpveh7MSF6SjjrpNVNNVJfFup7xTY3UpFtm67foy9HDVXneLtFVt4pMz5kZtgNcvCniNFb1hlEQ==", + "funding": [ + "https://github.com/fb55/htmlparser2?sponsor=1", + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "license": "MIT", + "dependencies": { + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3", + "domutils": "^3.2.2", + "entities": "^7.0.1" + } + }, + "node_modules/htmlparser2/node_modules/entities": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/entities/-/entities-7.0.1.tgz", + "integrity": "sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/http-cache-semantics": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.2.0.tgz", + "integrity": "sha512-dTxcvPXqPvXBQpq5dUr6mEMJX4oIEFv6bwom3FDwKRDsuIjjJGANqhBuoAn9c1RQJIdAKav33ED65E2ys+87QQ==", + "license": "BSD-2-Clause" + }, + "node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "license": "MIT", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/import-meta-resolve": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/import-meta-resolve/-/import-meta-resolve-4.2.0.tgz", + "integrity": "sha512-Iqv2fzaTQN28s/FwZAoFq0ZSs/7hMAHJVX+w8PZl3cY19Pxk6jFFalxQoIfW2826i/fDLXv8IiEZRIT0lDuWcg==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/iron-webcrypto": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/iron-webcrypto/-/iron-webcrypto-1.2.1.tgz", + "integrity": "sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/brc-dd" + } + }, + "node_modules/is-docker": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz", + "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==", + "license": "MIT", + "bin": { + "is-docker": "cli.js" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "license": "MIT", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-inside-container": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-inside-container/-/is-inside-container-1.0.0.tgz", + "integrity": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==", + "license": "MIT", + "dependencies": { + "is-docker": "^3.0.0" + }, + "bin": { + "is-inside-container": "cli.js" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-plain-obj": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz", + "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-wsl": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-3.1.1.tgz", + "integrity": "sha512-e6rvdUCiQCAuumZslxRJWR/Doq4VpPR82kqclvcS0efgt430SlGIk05vdCN58+VrzgtIcfNODjozVielycD4Sw==", + "license": "MIT", + "dependencies": { + "is-inside-container": "^1.0.0" + }, + "engines": { + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/js-yaml": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.2.0.tgz", + "integrity": "sha512-ePWsvanv0DWuDRsW8dnt+R4jQ31SCRCQ7hhNcPXZPsoBZiemuZNYGf7adZdqX2D86j6rvKp3RpCxVTSb8WQlOw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/puzrin" + }, + { + "type": "github", + "url": "https://github.com/sponsors/nodeca" + } + ], + "license": "MIT", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/longest-streak": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-3.1.0.tgz", + "integrity": "sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/lru-cache": { + "version": "11.5.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.5.1.tgz", + "integrity": "sha512-RPimw/7aMdv2oqRrxKwvZXcPfwBrn/JZ2xYcY9Hus/6LaS3VOAKVWKWgNLCFSiOm1ESXinjsDlidVU7JlnCN2A==", + "license": "BlueOak-1.0.0", + "engines": { + "node": "20 || >=22" + } + }, + "node_modules/magic-string": { + "version": "0.30.21", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz", + "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==", + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.5" + } + }, + "node_modules/magicast": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/magicast/-/magicast-0.5.3.tgz", + "integrity": "sha512-pVKE4UdSQ7DvHzivsCIFx2BJn1mHG6KsyrFcaxFx6tONdneEuThrDx0Cj3AMg58KyN4pzYT+LHOotxDQDjNvkw==", + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.29.3", + "@babel/types": "^7.29.0", + "source-map-js": "^1.2.1" + } + }, + "node_modules/markdown-table": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/markdown-table/-/markdown-table-3.0.4.tgz", + "integrity": "sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-definitions": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-definitions/-/mdast-util-definitions-6.0.0.tgz", + "integrity": "sha512-scTllyX6pnYNZH/AIp/0ePz6s4cZtARxImwoPJ7kS42n+MnVsI4XbnG6d4ibehRIldYMWM2LD7ImQblVhUejVQ==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "@types/unist": "^3.0.0", + "unist-util-visit": "^5.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-find-and-replace": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/mdast-util-find-and-replace/-/mdast-util-find-and-replace-3.0.2.tgz", + "integrity": "sha512-Tmd1Vg/m3Xz43afeNxDIhWRtFZgM2VLyaf4vSTYwudTyeuTneoL3qtWMA5jeLyz/O1vDJmmV4QuScFCA2tBPwg==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "escape-string-regexp": "^5.0.0", + "unist-util-is": "^6.0.0", + "unist-util-visit-parents": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-from-markdown": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-2.0.3.tgz", + "integrity": "sha512-W4mAWTvSlKvf8L6J+VN9yLSqQ9AOAAvHuoDAmPkz4dHf553m5gVj2ejadHJhoJmcmxEnOv6Pa8XJhpxE93kb8Q==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "@types/unist": "^3.0.0", + "decode-named-character-reference": "^1.0.0", + "devlop": "^1.0.0", + "mdast-util-to-string": "^4.0.0", + "micromark": "^4.0.0", + "micromark-util-decode-numeric-character-reference": "^2.0.0", + "micromark-util-decode-string": "^2.0.0", + "micromark-util-normalize-identifier": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0", + "unist-util-stringify-position": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/mdast-util-gfm/-/mdast-util-gfm-3.1.0.tgz", + "integrity": "sha512-0ulfdQOM3ysHhCJ1p06l0b0VKlhU0wuQs3thxZQagjcjPrlFRqY215uZGHHJan9GEAXd9MbfPjFJz+qMkVR6zQ==", + "license": "MIT", + "dependencies": { + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-gfm-autolink-literal": "^2.0.0", + "mdast-util-gfm-footnote": "^2.0.0", + "mdast-util-gfm-strikethrough": "^2.0.0", + "mdast-util-gfm-table": "^2.0.0", + "mdast-util-gfm-task-list-item": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm-autolink-literal": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-autolink-literal/-/mdast-util-gfm-autolink-literal-2.0.1.tgz", + "integrity": "sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "ccount": "^2.0.0", + "devlop": "^1.0.0", + "mdast-util-find-and-replace": "^3.0.0", + "micromark-util-character": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm-footnote": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-footnote/-/mdast-util-gfm-footnote-2.1.0.tgz", + "integrity": "sha512-sqpDWlsHn7Ac9GNZQMeUzPQSMzR6Wv0WKRNvQRg0KqHh02fpTz69Qc1QSseNX29bhz1ROIyNyxExfawVKTm1GQ==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "devlop": "^1.1.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0", + "micromark-util-normalize-identifier": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm-strikethrough": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-strikethrough/-/mdast-util-gfm-strikethrough-2.0.0.tgz", + "integrity": "sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm-table": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-table/-/mdast-util-gfm-table-2.0.0.tgz", + "integrity": "sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "devlop": "^1.0.0", + "markdown-table": "^3.0.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm-task-list-item": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-task-list-item/-/mdast-util-gfm-task-list-item-2.0.0.tgz", + "integrity": "sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "devlop": "^1.0.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-phrasing": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/mdast-util-phrasing/-/mdast-util-phrasing-4.1.0.tgz", + "integrity": "sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "unist-util-is": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-to-hast": { + "version": "13.2.1", + "resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-13.2.1.tgz", + "integrity": "sha512-cctsq2wp5vTsLIcaymblUriiTcZd0CwWtCbLvrOzYCDZoWyMNV8sZ7krj09FSnsiJi3WVsHLM4k6Dq/yaPyCXA==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0", + "@types/mdast": "^4.0.0", + "@ungap/structured-clone": "^1.0.0", + "devlop": "^1.0.0", + "micromark-util-sanitize-uri": "^2.0.0", + "trim-lines": "^3.0.0", + "unist-util-position": "^5.0.0", + "unist-util-visit": "^5.0.0", + "vfile": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-to-markdown": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-2.1.2.tgz", + "integrity": "sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "@types/unist": "^3.0.0", + "longest-streak": "^3.0.0", + "mdast-util-phrasing": "^4.0.0", + "mdast-util-to-string": "^4.0.0", + "micromark-util-classify-character": "^2.0.0", + "micromark-util-decode-string": "^2.0.0", + "unist-util-visit": "^5.0.0", + "zwitch": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-to-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-4.0.0.tgz", + "integrity": "sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdn-data": { + "version": "2.27.1", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.27.1.tgz", + "integrity": "sha512-9Yubnt3e8A0OKwxYSXyhLymGW4sCufcLG6VdiDdUGVkPhpqLxlvP5vl1983gQjJl3tqbrM731mjaZaP68AgosQ==", + "license": "CC0-1.0" + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/micromark": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/micromark/-/micromark-4.0.2.tgz", + "integrity": "sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "@types/debug": "^4.0.0", + "debug": "^4.0.0", + "decode-named-character-reference": "^1.0.0", + "devlop": "^1.0.0", + "micromark-core-commonmark": "^2.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-chunked": "^2.0.0", + "micromark-util-combine-extensions": "^2.0.0", + "micromark-util-decode-numeric-character-reference": "^2.0.0", + "micromark-util-encode": "^2.0.0", + "micromark-util-normalize-identifier": "^2.0.0", + "micromark-util-resolve-all": "^2.0.0", + "micromark-util-sanitize-uri": "^2.0.0", + "micromark-util-subtokenize": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-core-commonmark": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-2.0.3.tgz", + "integrity": "sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "decode-named-character-reference": "^1.0.0", + "devlop": "^1.0.0", + "micromark-factory-destination": "^2.0.0", + "micromark-factory-label": "^2.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-factory-title": "^2.0.0", + "micromark-factory-whitespace": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-chunked": "^2.0.0", + "micromark-util-classify-character": "^2.0.0", + "micromark-util-html-tag-name": "^2.0.0", + "micromark-util-normalize-identifier": "^2.0.0", + "micromark-util-resolve-all": "^2.0.0", + "micromark-util-subtokenize": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-extension-gfm": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm/-/micromark-extension-gfm-3.0.0.tgz", + "integrity": "sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==", + "license": "MIT", + "dependencies": { + "micromark-extension-gfm-autolink-literal": "^2.0.0", + "micromark-extension-gfm-footnote": "^2.0.0", + "micromark-extension-gfm-strikethrough": "^2.0.0", + "micromark-extension-gfm-table": "^2.0.0", + "micromark-extension-gfm-tagfilter": "^2.0.0", + "micromark-extension-gfm-task-list-item": "^2.0.0", + "micromark-util-combine-extensions": "^2.0.0", + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-autolink-literal": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-autolink-literal/-/micromark-extension-gfm-autolink-literal-2.1.0.tgz", + "integrity": "sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==", + "license": "MIT", + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-sanitize-uri": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-footnote": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-footnote/-/micromark-extension-gfm-footnote-2.1.0.tgz", + "integrity": "sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==", + "license": "MIT", + "dependencies": { + "devlop": "^1.0.0", + "micromark-core-commonmark": "^2.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-normalize-identifier": "^2.0.0", + "micromark-util-sanitize-uri": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-strikethrough": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-strikethrough/-/micromark-extension-gfm-strikethrough-2.1.0.tgz", + "integrity": "sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==", + "license": "MIT", + "dependencies": { + "devlop": "^1.0.0", + "micromark-util-chunked": "^2.0.0", + "micromark-util-classify-character": "^2.0.0", + "micromark-util-resolve-all": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-table": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-table/-/micromark-extension-gfm-table-2.1.1.tgz", + "integrity": "sha512-t2OU/dXXioARrC6yWfJ4hqB7rct14e8f7m0cbI5hUmDyyIlwv5vEtooptH8INkbLzOatzKuVbQmAYcbWoyz6Dg==", + "license": "MIT", + "dependencies": { + "devlop": "^1.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-tagfilter": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-tagfilter/-/micromark-extension-gfm-tagfilter-2.0.0.tgz", + "integrity": "sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==", + "license": "MIT", + "dependencies": { + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-task-list-item": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-task-list-item/-/micromark-extension-gfm-task-list-item-2.1.0.tgz", + "integrity": "sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==", + "license": "MIT", + "dependencies": { + "devlop": "^1.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-factory-destination": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-2.0.1.tgz", + "integrity": "sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-factory-label": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-2.0.1.tgz", + "integrity": "sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "devlop": "^1.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-factory-space": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz", + "integrity": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-factory-title": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-2.0.1.tgz", + "integrity": "sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-factory-whitespace": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-2.0.1.tgz", + "integrity": "sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-util-character": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz", + "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-util-chunked": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-2.0.1.tgz", + "integrity": "sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/micromark-util-classify-character": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-2.0.1.tgz", + "integrity": "sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-util-combine-extensions": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-2.0.1.tgz", + "integrity": "sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-chunked": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-util-decode-numeric-character-reference": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-2.0.2.tgz", + "integrity": "sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/micromark-util-decode-string": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-2.0.1.tgz", + "integrity": "sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "decode-named-character-reference": "^1.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-decode-numeric-character-reference": "^2.0.0", + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/micromark-util-encode": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.1.tgz", + "integrity": "sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/micromark-util-html-tag-name": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.1.tgz", + "integrity": "sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/micromark-util-normalize-identifier": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-2.0.1.tgz", + "integrity": "sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/micromark-util-resolve-all": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-2.0.1.tgz", + "integrity": "sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-util-sanitize-uri": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.1.tgz", + "integrity": "sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-encode": "^2.0.0", + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/micromark-util-subtokenize": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-2.1.0.tgz", + "integrity": "sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "devlop": "^1.0.0", + "micromark-util-chunked": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-util-symbol": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", + "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/micromark-util-types": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.2.tgz", + "integrity": "sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/micromatch": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", + "license": "MIT", + "dependencies": { + "braces": "^3.0.3", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/micromatch/node_modules/picomatch": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.2.tgz", + "integrity": "sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==", + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/mrmime": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/mrmime/-/mrmime-2.0.1.tgz", + "integrity": "sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==", + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "license": "MIT" + }, + "node_modules/nanoid": { + "version": "3.3.12", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.12.tgz", + "integrity": "sha512-ZB9RH/39qpq5Vu6Y+NmUaFhQR6pp+M2Xt76XBnEwDaGcVAqhlvxrl3B2bKS5D3NH3QR76v3aSrKaF/Kiy7lEtQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/neotraverse": { + "version": "0.6.18", + "resolved": "https://registry.npmjs.org/neotraverse/-/neotraverse-0.6.18.tgz", + "integrity": "sha512-Z4SmBUweYa09+o6pG+eASabEpP6QkQ70yHj351pQoEXIs8uHbaU2DWVmzBANKgflPa47A50PtB2+NgRpQvr7vA==", + "license": "MIT", + "engines": { + "node": ">= 10" + } + }, + "node_modules/nlcst-to-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/nlcst-to-string/-/nlcst-to-string-4.0.0.tgz", + "integrity": "sha512-YKLBCcUYKAg0FNlOBT6aI91qFmSiFKiluk655WzPF+DDMA02qIyy8uiRqI8QXtcFpEvll12LpL5MXqEmAZ+dcA==", + "license": "MIT", + "dependencies": { + "@types/nlcst": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/node-fetch-native": { + "version": "1.6.7", + "resolved": "https://registry.npmjs.org/node-fetch-native/-/node-fetch-native-1.6.7.tgz", + "integrity": "sha512-g9yhqoedzIUm0nTnTqAQvueMPVOuIY16bqgAJJC8XOOubYFNwz6IER9qs0Gq2Xd0+CecCKFjtdDTMA4u4xG06Q==", + "license": "MIT" + }, + "node_modules/node-mock-http": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/node-mock-http/-/node-mock-http-1.0.4.tgz", + "integrity": "sha512-8DY+kFsDkNXy1sJglUfuODx1/opAGJGyrTuFqEoN90oRc2Vk0ZbD4K2qmKXBBEhZQzdKHIVfEJpDU8Ak2NJEvQ==", + "license": "MIT" + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nth-check": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", + "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", + "license": "BSD-2-Clause", + "dependencies": { + "boolbase": "^1.0.0" + }, + "funding": { + "url": "https://github.com/fb55/nth-check?sponsor=1" + } + }, + "node_modules/ofetch": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/ofetch/-/ofetch-1.5.1.tgz", + "integrity": "sha512-2W4oUZlVaqAPAil6FUg/difl6YhqhUR7x2eZY4bQCko22UXg3hptq9KLQdqFClV+Wu85UX7hNtdGTngi/1BxcA==", + "license": "MIT", + "dependencies": { + "destr": "^2.0.5", + "node-fetch-native": "^1.6.7", + "ufo": "^1.6.1" + } + }, + "node_modules/ohash": { + "version": "2.0.11", + "resolved": "https://registry.npmjs.org/ohash/-/ohash-2.0.11.tgz", + "integrity": "sha512-RdR9FQrFwNBNXAr4GixM8YaRZRJ5PUWbKYbE5eOsrwAjJW0q2REGcf79oYPsLyskQCZG1PLN+S/K1V00joZAoQ==", + "license": "MIT" + }, + "node_modules/oniguruma-parser": { + "version": "0.12.2", + "resolved": "https://registry.npmjs.org/oniguruma-parser/-/oniguruma-parser-0.12.2.tgz", + "integrity": "sha512-6HVa5oIrgMC6aA6WF6XyyqbhRPJrKR02L20+2+zpDtO5QAzGHAUGw5TKQvwi5vctNnRHkJYmjAhRVQF2EKdTQw==", + "license": "MIT" + }, + "node_modules/oniguruma-to-es": { + "version": "4.3.6", + "resolved": "https://registry.npmjs.org/oniguruma-to-es/-/oniguruma-to-es-4.3.6.tgz", + "integrity": "sha512-csuQ9x3Yr0cEIs/Zgx/OEt9iBw9vqIunAPQkx19R/fiMq2oGVTgcMqO/V3Ybqefr1TBvosI6jU539ksaBULJyA==", + "license": "MIT", + "dependencies": { + "oniguruma-parser": "^0.12.2", + "regex": "^6.1.0", + "regex-recursion": "^6.0.2" + } + }, + "node_modules/p-limit": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-6.2.0.tgz", + "integrity": "sha512-kuUqqHNUqoIWp/c467RI4X6mmyuojY5jGutNU0wVTmEOOfcuwLqyMVoAi9MKi2Ak+5i9+nhmrK4ufZE8069kHA==", + "license": "MIT", + "dependencies": { + "yocto-queue": "^1.1.1" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-queue": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/p-queue/-/p-queue-8.1.1.tgz", + "integrity": "sha512-aNZ+VfjobsWryoiPnEApGGmf5WmNsCo9xu8dfaYamG5qaLP7ClhLN6NgsFe6SwJ2UbLEBK5dv9x8Mn5+RVhMWQ==", + "license": "MIT", + "dependencies": { + "eventemitter3": "^5.0.1", + "p-timeout": "^6.1.2" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-timeout": { + "version": "6.1.4", + "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-6.1.4.tgz", + "integrity": "sha512-MyIV3ZA/PmyBN/ud8vV9XzwTrNtR4jFrObymZYnZqMmW0zA8Z17vnT0rBgFE/TlohB+YCHqXMgZzb3Csp49vqg==", + "license": "MIT", + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/package-manager-detector": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/package-manager-detector/-/package-manager-detector-1.6.0.tgz", + "integrity": "sha512-61A5ThoTiDG/C8s8UMZwSorAGwMJ0ERVGj2OjoW5pAalsNOg15+iQiPzrLJ4jhZ1HJzmC2PIHT2oEiH3R5fzNA==", + "license": "MIT" + }, + "node_modules/parse-latin": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/parse-latin/-/parse-latin-7.0.0.tgz", + "integrity": "sha512-mhHgobPPua5kZ98EF4HWiH167JWBfl4pvAIXXdbaVohtK7a6YBOy56kvhCqduqyo/f3yrHFWmqmiMg/BkBkYYQ==", + "license": "MIT", + "dependencies": { + "@types/nlcst": "^2.0.0", + "@types/unist": "^3.0.0", + "nlcst-to-string": "^4.0.0", + "unist-util-modify-children": "^4.0.0", + "unist-util-visit-children": "^3.0.0", + "vfile": "^6.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/parse5": { + "version": "7.3.0", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.3.0.tgz", + "integrity": "sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==", + "license": "MIT", + "dependencies": { + "entities": "^6.0.0" + }, + "funding": { + "url": "https://github.com/inikulin/parse5?sponsor=1" + } + }, + "node_modules/parse5-htmlparser2-tree-adapter": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-7.1.0.tgz", + "integrity": "sha512-ruw5xyKs6lrpo9x9rCZqZZnIUntICjQAd0Wsmp396Ul9lN/h+ifgVV1x1gZHi8euej6wTfpqX8j+BFQxF0NS/g==", + "license": "MIT", + "dependencies": { + "domhandler": "^5.0.3", + "parse5": "^7.0.0" + }, + "funding": { + "url": "https://github.com/inikulin/parse5?sponsor=1" + } + }, + "node_modules/parse5-parser-stream": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/parse5-parser-stream/-/parse5-parser-stream-7.1.2.tgz", + "integrity": "sha512-JyeQc9iwFLn5TbvvqACIF/VXG6abODeB3Fwmv/TGdLk2LfbWkaySGY72at4+Ty7EkPZj854u4CrICqNk2qIbow==", + "license": "MIT", + "dependencies": { + "parse5": "^7.0.0" + }, + "funding": { + "url": "https://github.com/inikulin/parse5?sponsor=1" + } + }, + "node_modules/parse5/node_modules/entities": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/entities/-/entities-6.0.1.tgz", + "integrity": "sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/piccolore": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/piccolore/-/piccolore-0.1.3.tgz", + "integrity": "sha512-o8bTeDWjE086iwKrROaDf31K0qC/BENdm15/uH9usSC/uZjJOKb2YGiVHfLY4GhwsERiPI1jmwI2XrA7ACOxVw==", + "license": "ISC" + }, + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "license": "ISC" + }, + "node_modules/picomatch": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz", + "integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/postcss": { + "version": "8.5.15", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.15.tgz", + "integrity": "sha512-FfR8sjd4em2T6fb3I2MwAJU7HWVMr9zba+enmQeeWFfCbm+UOC/0X4DS8XtpUTMwWMGbjKYP7xjfNekzyGmB3A==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.12", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/prismjs": { + "version": "1.30.0", + "resolved": "https://registry.npmjs.org/prismjs/-/prismjs-1.30.0.tgz", + "integrity": "sha512-DEvV2ZF2r2/63V+tK8hQvrR2ZGn10srHbXviTlcv7Kpzw8jWiNTqbVgjO3IY8RxrrOUF8VPMQQFysYYYv0YZxw==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/prompts": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", + "license": "MIT", + "dependencies": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/property-information": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/property-information/-/property-information-7.2.0.tgz", + "integrity": "sha512-IAtzIB6sUiWaJYrX9smp3V46pBGbBeLFRGdh25kg1334VcBlD8HzhPeNIWQH9zhGmo2itIe25EHt9dQP7G5hmg==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/radix3": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/radix3/-/radix3-1.1.2.tgz", + "integrity": "sha512-b484I/7b8rDEdSDKckSSBA8knMpcdsXudlE/LNL639wFoHKwLbEkQFZHWEYwDC0wa0FKUcCY+GAF73Z7wxNVFA==", + "license": "MIT" + }, + "node_modules/readdirp": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-5.0.0.tgz", + "integrity": "sha512-9u/XQ1pvrQtYyMpZe7DXKv2p5CNvyVwzUB6uhLAnQwHMSgKMBR62lc7AHljaeteeHXn11XTAaLLUVZYVZyuRBQ==", + "license": "MIT", + "engines": { + "node": ">= 20.19.0" + }, + "funding": { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/regex": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/regex/-/regex-6.1.0.tgz", + "integrity": "sha512-6VwtthbV4o/7+OaAF9I5L5V3llLEsoPyq9P1JVXkedTP33c7MfCG0/5NOPcSJn0TzXcG9YUrR0gQSWioew3LDg==", + "license": "MIT", + "dependencies": { + "regex-utilities": "^2.3.0" + } + }, + "node_modules/regex-recursion": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/regex-recursion/-/regex-recursion-6.0.2.tgz", + "integrity": "sha512-0YCaSCq2VRIebiaUviZNs0cBz1kg5kVS2UKUfNIx8YVs1cN3AV7NTctO5FOKBA+UT2BPJIWZauYHPqJODG50cg==", + "license": "MIT", + "dependencies": { + "regex-utilities": "^2.3.0" + } + }, + "node_modules/regex-utilities": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/regex-utilities/-/regex-utilities-2.3.0.tgz", + "integrity": "sha512-8VhliFJAWRaUiVvREIiW2NXXTmHs4vMNnSzuJVhscgmGav3g9VDxLrQndI3dZZVVdp0ZO/5v0xmX516/7M9cng==", + "license": "MIT" + }, + "node_modules/rehype": { + "version": "13.0.2", + "resolved": "https://registry.npmjs.org/rehype/-/rehype-13.0.2.tgz", + "integrity": "sha512-j31mdaRFrwFRUIlxGeuPXXKWQxet52RBQRvCmzl5eCefn/KGbomK5GMHNMsOJf55fgo3qw5tST5neDuarDYR2A==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0", + "rehype-parse": "^9.0.0", + "rehype-stringify": "^10.0.0", + "unified": "^11.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/rehype-parse": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/rehype-parse/-/rehype-parse-9.0.1.tgz", + "integrity": "sha512-ksCzCD0Fgfh7trPDxr2rSylbwq9iYDkSn8TCDmEJ49ljEUBxDVCzCHv7QNzZOfODanX4+bWQ4WZqLCRWYLfhag==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0", + "hast-util-from-html": "^2.0.0", + "unified": "^11.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/rehype-raw": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/rehype-raw/-/rehype-raw-7.0.0.tgz", + "integrity": "sha512-/aE8hCfKlQeA8LmyeyQvQF3eBiLRGNlfBJEvWH7ivp9sBqs7TNqBL5X3v157rM4IFETqDnIOO+z5M/biZbo9Ww==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0", + "hast-util-raw": "^9.0.0", + "vfile": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/rehype-stringify": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/rehype-stringify/-/rehype-stringify-10.0.1.tgz", + "integrity": "sha512-k9ecfXHmIPuFVI61B9DeLPN0qFHfawM6RsuX48hoqlaKSF61RskNjSm1lI8PhBEM0MRdLxVVm4WmTqJQccH9mA==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0", + "hast-util-to-html": "^9.0.0", + "unified": "^11.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-gfm": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/remark-gfm/-/remark-gfm-4.0.1.tgz", + "integrity": "sha512-1quofZ2RQ9EWdeN34S79+KExV1764+wCUGop5CPL1WGdD0ocPpu91lzPGbwWMECpEpd42kJGQwzRfyov9j4yNg==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "mdast-util-gfm": "^3.0.0", + "micromark-extension-gfm": "^3.0.0", + "remark-parse": "^11.0.0", + "remark-stringify": "^11.0.0", + "unified": "^11.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-parse": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-11.0.0.tgz", + "integrity": "sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "mdast-util-from-markdown": "^2.0.0", + "micromark-util-types": "^2.0.0", + "unified": "^11.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-rehype": { + "version": "11.1.2", + "resolved": "https://registry.npmjs.org/remark-rehype/-/remark-rehype-11.1.2.tgz", + "integrity": "sha512-Dh7l57ianaEoIpzbp0PC9UKAdCSVklD8E5Rpw7ETfbTl3FqcOOgq5q2LVDhgGCkaBv7p24JXikPdvhhmHvKMsw==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0", + "@types/mdast": "^4.0.0", + "mdast-util-to-hast": "^13.0.0", + "unified": "^11.0.0", + "vfile": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-smartypants": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/remark-smartypants/-/remark-smartypants-3.0.2.tgz", + "integrity": "sha512-ILTWeOriIluwEvPjv67v7Blgrcx+LZOkAUVtKI3putuhlZm84FnqDORNXPPm+HY3NdZOMhyDwZ1E+eZB/Df5dA==", + "license": "MIT", + "dependencies": { + "retext": "^9.0.0", + "retext-smartypants": "^6.0.0", + "unified": "^11.0.4", + "unist-util-visit": "^5.0.0" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/remark-stringify": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/remark-stringify/-/remark-stringify-11.0.0.tgz", + "integrity": "sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "mdast-util-to-markdown": "^2.0.0", + "unified": "^11.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/retext": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/retext/-/retext-9.0.0.tgz", + "integrity": "sha512-sbMDcpHCNjvlheSgMfEcVrZko3cDzdbe1x/e7G66dFp0Ff7Mldvi2uv6JkJQzdRcvLYE8CA8Oe8siQx8ZOgTcA==", + "license": "MIT", + "dependencies": { + "@types/nlcst": "^2.0.0", + "retext-latin": "^4.0.0", + "retext-stringify": "^4.0.0", + "unified": "^11.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/retext-latin": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/retext-latin/-/retext-latin-4.0.0.tgz", + "integrity": "sha512-hv9woG7Fy0M9IlRQloq/N6atV82NxLGveq+3H2WOi79dtIYWN8OaxogDm77f8YnVXJL2VD3bbqowu5E3EMhBYA==", + "license": "MIT", + "dependencies": { + "@types/nlcst": "^2.0.0", + "parse-latin": "^7.0.0", + "unified": "^11.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/retext-smartypants": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/retext-smartypants/-/retext-smartypants-6.2.0.tgz", + "integrity": "sha512-kk0jOU7+zGv//kfjXEBjdIryL1Acl4i9XNkHxtM7Tm5lFiCog576fjNC9hjoR7LTKQ0DsPWy09JummSsH1uqfQ==", + "license": "MIT", + "dependencies": { + "@types/nlcst": "^2.0.0", + "nlcst-to-string": "^4.0.0", + "unist-util-visit": "^5.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/retext-stringify": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/retext-stringify/-/retext-stringify-4.0.0.tgz", + "integrity": "sha512-rtfN/0o8kL1e+78+uxPTqu1Klt0yPzKuQ2BfWwwfgIUSayyzxpM1PJzkKt4V8803uB9qSy32MvI7Xep9khTpiA==", + "license": "MIT", + "dependencies": { + "@types/nlcst": "^2.0.0", + "nlcst-to-string": "^4.0.0", + "unified": "^11.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/reusify": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz", + "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==", + "license": "MIT", + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rollup": { + "version": "4.61.1", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.61.1.tgz", + "integrity": "sha512-I4KW6iuRpuu2uHBLraZ1wNZe0DP7lnRha+VJ9tNaYVaVgKhW0aI3h4RYnoRPeql0flHm/Co55b7snEDcOfOJrA==", + "license": "MIT", + "dependencies": { + "@types/estree": "1.0.9" + }, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=18.0.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "@rollup/rollup-android-arm-eabi": "4.61.1", + "@rollup/rollup-android-arm64": "4.61.1", + "@rollup/rollup-darwin-arm64": "4.61.1", + "@rollup/rollup-darwin-x64": "4.61.1", + "@rollup/rollup-freebsd-arm64": "4.61.1", + "@rollup/rollup-freebsd-x64": "4.61.1", + "@rollup/rollup-linux-arm-gnueabihf": "4.61.1", + "@rollup/rollup-linux-arm-musleabihf": "4.61.1", + "@rollup/rollup-linux-arm64-gnu": "4.61.1", + "@rollup/rollup-linux-arm64-musl": "4.61.1", + "@rollup/rollup-linux-loong64-gnu": "4.61.1", + "@rollup/rollup-linux-loong64-musl": "4.61.1", + "@rollup/rollup-linux-ppc64-gnu": "4.61.1", + "@rollup/rollup-linux-ppc64-musl": "4.61.1", + "@rollup/rollup-linux-riscv64-gnu": "4.61.1", + "@rollup/rollup-linux-riscv64-musl": "4.61.1", + "@rollup/rollup-linux-s390x-gnu": "4.61.1", + "@rollup/rollup-linux-x64-gnu": "4.61.1", + "@rollup/rollup-linux-x64-musl": "4.61.1", + "@rollup/rollup-openbsd-x64": "4.61.1", + "@rollup/rollup-openharmony-arm64": "4.61.1", + "@rollup/rollup-win32-arm64-msvc": "4.61.1", + "@rollup/rollup-win32-ia32-msvc": "4.61.1", + "@rollup/rollup-win32-x64-gnu": "4.61.1", + "@rollup/rollup-win32-x64-msvc": "4.61.1", + "fsevents": "~2.3.2" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "license": "MIT" + }, + "node_modules/sax": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.6.0.tgz", + "integrity": "sha512-6R3J5M4AcbtLUdZmRv2SygeVaM7IhrLXu9BmnOGmmACak8fiUtOsYNWUS4uK7upbmHIBbLBeFeI//477BKLBzA==", + "license": "BlueOak-1.0.0", + "engines": { + "node": ">=11.0.0" + } + }, + "node_modules/section-matter": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/section-matter/-/section-matter-1.0.0.tgz", + "integrity": "sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==", + "license": "MIT", + "dependencies": { + "extend-shallow": "^2.0.1", + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/semver": { + "version": "7.8.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.8.2.tgz", + "integrity": "sha512-c8jsqUZm3omBOI66G90z1Dyw5z622G8oLG+omfsHBJf3CWQTlOcwOjvOG6wtiNfW6anKm/eA39LMwMtMez2TiQ==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/sharp": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.34.5.tgz", + "integrity": "sha512-Ou9I5Ft9WNcCbXrU9cMgPBcCK8LiwLqcbywW3t4oDV37n1pzpuNLsYiAV8eODnjbtQlSDwZ2cUEeQz4E54Hltg==", + "hasInstallScript": true, + "license": "Apache-2.0", + "optional": true, + "dependencies": { + "@img/colour": "^1.0.0", + "detect-libc": "^2.1.2", + "semver": "^7.7.3" + }, + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-darwin-arm64": "0.34.5", + "@img/sharp-darwin-x64": "0.34.5", + "@img/sharp-libvips-darwin-arm64": "1.2.4", + "@img/sharp-libvips-darwin-x64": "1.2.4", + "@img/sharp-libvips-linux-arm": "1.2.4", + "@img/sharp-libvips-linux-arm64": "1.2.4", + "@img/sharp-libvips-linux-ppc64": "1.2.4", + "@img/sharp-libvips-linux-riscv64": "1.2.4", + "@img/sharp-libvips-linux-s390x": "1.2.4", + "@img/sharp-libvips-linux-x64": "1.2.4", + "@img/sharp-libvips-linuxmusl-arm64": "1.2.4", + "@img/sharp-libvips-linuxmusl-x64": "1.2.4", + "@img/sharp-linux-arm": "0.34.5", + "@img/sharp-linux-arm64": "0.34.5", + "@img/sharp-linux-ppc64": "0.34.5", + "@img/sharp-linux-riscv64": "0.34.5", + "@img/sharp-linux-s390x": "0.34.5", + "@img/sharp-linux-x64": "0.34.5", + "@img/sharp-linuxmusl-arm64": "0.34.5", + "@img/sharp-linuxmusl-x64": "0.34.5", + "@img/sharp-wasm32": "0.34.5", + "@img/sharp-win32-arm64": "0.34.5", + "@img/sharp-win32-ia32": "0.34.5", + "@img/sharp-win32-x64": "0.34.5" + } + }, + "node_modules/shiki": { + "version": "3.23.0", + "resolved": "https://registry.npmjs.org/shiki/-/shiki-3.23.0.tgz", + "integrity": "sha512-55Dj73uq9ZXL5zyeRPzHQsK7Nbyt6Y10k5s7OjuFZGMhpp4r/rsLBH0o/0fstIzX1Lep9VxefWljK/SKCzygIA==", + "license": "MIT", + "dependencies": { + "@shikijs/core": "3.23.0", + "@shikijs/engine-javascript": "3.23.0", + "@shikijs/engine-oniguruma": "3.23.0", + "@shikijs/langs": "3.23.0", + "@shikijs/themes": "3.23.0", + "@shikijs/types": "3.23.0", + "@shikijs/vscode-textmate": "^10.0.2", + "@types/hast": "^3.0.4" + } + }, + "node_modules/sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", + "license": "MIT" + }, + "node_modules/smol-toml": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/smol-toml/-/smol-toml-1.6.1.tgz", + "integrity": "sha512-dWUG8F5sIIARXih1DTaQAX4SsiTXhInKf1buxdY9DIg4ZYPZK5nGM1VRIYmEbDbsHt7USo99xSLFu5Q1IqTmsg==", + "license": "BSD-3-Clause", + "engines": { + "node": ">= 18" + }, + "funding": { + "url": "https://github.com/sponsors/cyyynthia" + } + }, + "node_modules/source-map-js": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/space-separated-tokens": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz", + "integrity": "sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", + "license": "BSD-3-Clause" + }, + "node_modules/string-width": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-7.2.0.tgz", + "integrity": "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==", + "license": "MIT", + "dependencies": { + "emoji-regex": "^10.3.0", + "get-east-asian-width": "^1.0.0", + "strip-ansi": "^7.1.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/stringify-entities": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/stringify-entities/-/stringify-entities-4.0.4.tgz", + "integrity": "sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==", + "license": "MIT", + "dependencies": { + "character-entities-html4": "^2.0.0", + "character-entities-legacy": "^3.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/strip-ansi": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.2.0.tgz", + "integrity": "sha512-yDPMNjp4WyfYBkHnjIRLfca1i6KMyGCtsVgoKe/z1+6vukgaENdgGBZt+ZmKPc4gavvEZ5OgHfHdrazhgNyG7w==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.2.2" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/strip-bom-string": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-bom-string/-/strip-bom-string-1.0.0.tgz", + "integrity": "sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/svgo": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-4.0.1.tgz", + "integrity": "sha512-XDpWUOPC6FEibaLzjfe0ucaV0YrOjYotGJO1WpF0Zd+n6ZGEQUsSugaoLq9QkEZtAfQIxT42UChcssDVPP3+/w==", + "license": "MIT", + "dependencies": { + "commander": "^11.1.0", + "css-select": "^5.1.0", + "css-tree": "^3.0.1", + "css-what": "^6.1.0", + "csso": "^5.0.5", + "picocolors": "^1.1.1", + "sax": "^1.5.0" + }, + "bin": { + "svgo": "bin/svgo.js" + }, + "engines": { + "node": ">=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/svgo" + } + }, + "node_modules/tiny-inflate": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/tiny-inflate/-/tiny-inflate-1.0.3.tgz", + "integrity": "sha512-pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw==", + "license": "MIT" + }, + "node_modules/tinyexec": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/tinyexec/-/tinyexec-1.2.4.tgz", + "integrity": "sha512-SHf/r48b7vOrjve9PxJo3MN5v5yuyjHvdUcrQffT3WXMUfnGmHDVbC4k3sHJaJTgZCwpUplIaAo5ANtMyp3YHg==", + "license": "MIT", + "engines": { + "node": ">=18" + } + }, + "node_modules/tinyglobby": { + "version": "0.2.17", + "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.17.tgz", + "integrity": "sha512-wXR/dYpcqKmfWpEdZjiKJOwCNFndD0DMnrW/cYjVGttEkBfVgcLFHoNrlj47mjOVic9yyNu65alsgF4NQyTa2g==", + "license": "MIT", + "dependencies": { + "fdir": "^6.5.0", + "picomatch": "^4.0.4" + }, + "engines": { + "node": ">=12.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/SuperchupuDev" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "license": "MIT", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/trim-lines": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/trim-lines/-/trim-lines-3.0.1.tgz", + "integrity": "sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/trough": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/trough/-/trough-2.2.0.tgz", + "integrity": "sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/tsconfck": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/tsconfck/-/tsconfck-3.1.6.tgz", + "integrity": "sha512-ks6Vjr/jEw0P1gmOVwutM3B7fWxoWBL2KRDb1JfqGVawBmO5UsvmWOQFGHBPl5yxYz4eERr19E6L7NMv+Fej4w==", + "license": "MIT", + "bin": { + "tsconfck": "bin/tsconfck.js" + }, + "engines": { + "node": "^18 || >=20" + }, + "peerDependencies": { + "typescript": "^5.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "license": "0BSD", + "optional": true + }, + "node_modules/turndown": { + "version": "7.2.4", + "resolved": "https://registry.npmjs.org/turndown/-/turndown-7.2.4.tgz", + "integrity": "sha512-I8yFsfRzmzK0WV1pNNOA4A7y4RDfFxPRxb3t+e3ui14qSGOxGtiSP6GjeX+Y6CHb7HYaFj7ECUD7VE5kQMZWGQ==", + "license": "MIT", + "dependencies": { + "@mixmark-io/domino": "^2.2.0" + }, + "engines": { + "node": ">=18", + "npm": ">=9" + } + }, + "node_modules/type-fest": { + "version": "4.41.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.41.0.tgz", + "integrity": "sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA==", + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/typescript": { + "version": "5.9.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz", + "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==", + "license": "Apache-2.0", + "peer": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/ufo": { + "version": "1.6.4", + "resolved": "https://registry.npmjs.org/ufo/-/ufo-1.6.4.tgz", + "integrity": "sha512-JFNbkD1Svwe0KvGi8GOeLcP4kAWQ609twvCdcHxq1oSL8svv39ZuSvajcD8B+5D0eL4+s1Is2D/O6KN3qcTeRA==", + "license": "MIT" + }, + "node_modules/ultrahtml": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/ultrahtml/-/ultrahtml-1.6.0.tgz", + "integrity": "sha512-R9fBn90VTJrqqLDwyMph+HGne8eqY1iPfYhPzZrvKpIfwkWZbcYlfpsb8B9dTvBfpy1/hqAD7Wi8EKfP9e8zdw==", + "license": "MIT" + }, + "node_modules/uncrypto": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/uncrypto/-/uncrypto-0.1.3.tgz", + "integrity": "sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q==", + "license": "MIT" + }, + "node_modules/undici": { + "version": "7.27.2", + "resolved": "https://registry.npmjs.org/undici/-/undici-7.27.2.tgz", + "integrity": "sha512-uZsKNuzQxDMUY6M3pIMvy5tvlGmtq8XJ2oLAkfRKGNu+1VQAIvLy2xIVG5ATZl5wDXl/tddByAWCizRbOme+TA==", + "license": "MIT", + "engines": { + "node": ">=20.18.1" + } + }, + "node_modules/unified": { + "version": "11.0.5", + "resolved": "https://registry.npmjs.org/unified/-/unified-11.0.5.tgz", + "integrity": "sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0", + "bail": "^2.0.0", + "devlop": "^1.0.0", + "extend": "^3.0.0", + "is-plain-obj": "^4.0.0", + "trough": "^2.0.0", + "vfile": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unifont": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/unifont/-/unifont-0.7.4.tgz", + "integrity": "sha512-oHeis4/xl42HUIeHuNZRGEvxj5AaIKR+bHPNegRq5LV1gdc3jundpONbjglKpihmJf+dswygdMJn3eftGIMemg==", + "license": "MIT", + "dependencies": { + "css-tree": "^3.1.0", + "ofetch": "^1.5.1", + "ohash": "^2.0.11" + } + }, + "node_modules/unist-util-find-after": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/unist-util-find-after/-/unist-util-find-after-5.0.0.tgz", + "integrity": "sha512-amQa0Ep2m6hE2g72AugUItjbuM8X8cGQnFoHk0pGfrFeT9GZhzN5SW8nRsiGKK7Aif4CrACPENkA6P/Lw6fHGQ==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0", + "unist-util-is": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-is": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-6.0.1.tgz", + "integrity": "sha512-LsiILbtBETkDz8I9p1dQ0uyRUWuaQzd/cuEeS1hoRSyW5E5XGmTzlwY1OrNzzakGowI9Dr/I8HVaw4hTtnxy8g==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-modify-children": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/unist-util-modify-children/-/unist-util-modify-children-4.0.0.tgz", + "integrity": "sha512-+tdN5fGNddvsQdIzUF3Xx82CU9sMM+fA0dLgR9vOmT0oPT2jH+P1nd5lSqfCfXAw+93NhcXNY2qqvTUtE4cQkw==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0", + "array-iterate": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-position": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-5.0.0.tgz", + "integrity": "sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-remove-position": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/unist-util-remove-position/-/unist-util-remove-position-5.0.0.tgz", + "integrity": "sha512-Hp5Kh3wLxv0PHj9m2yZhhLt58KzPtEYKQQ4yxfYFEO7EvHwzyDYnduhHnY1mDxoqr7VUwVuHXk9RXKIiYS1N8Q==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0", + "unist-util-visit": "^5.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-stringify-position": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz", + "integrity": "sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-visit": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-5.1.0.tgz", + "integrity": "sha512-m+vIdyeCOpdr/QeQCu2EzxX/ohgS8KbnPDgFni4dQsfSCtpz8UqDyY5GjRru8PDKuYn7Fq19j1CQ+nJSsGKOzg==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0", + "unist-util-is": "^6.0.0", + "unist-util-visit-parents": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-visit-children": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/unist-util-visit-children/-/unist-util-visit-children-3.0.0.tgz", + "integrity": "sha512-RgmdTfSBOg04sdPcpTSD1jzoNBjt9a80/ZCzp5cI9n1qPzLZWF9YdvWGN2zmTumP1HWhXKdUWexjy/Wy/lJ7tA==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-visit-parents": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-6.0.2.tgz", + "integrity": "sha512-goh1s1TBrqSqukSc8wrjwWhL0hiJxgA8m4kFxGlQ+8FYQ3C/m11FcTs4YYem7V664AhHVvgoQLk890Ssdsr2IQ==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0", + "unist-util-is": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unstorage": { + "version": "1.17.5", + "resolved": "https://registry.npmjs.org/unstorage/-/unstorage-1.17.5.tgz", + "integrity": "sha512-0i3iqvRfx29hkNntHyQvJTpf5W9dQ9ZadSoRU8+xVlhVtT7jAX57fazYO9EHvcRCfBCyi5YRya7XCDOsbTgkPg==", + "license": "MIT", + "dependencies": { + "anymatch": "^3.1.3", + "chokidar": "^5.0.0", + "destr": "^2.0.5", + "h3": "^1.15.10", + "lru-cache": "^11.2.7", + "node-fetch-native": "^1.6.7", + "ofetch": "^1.5.1", + "ufo": "^1.6.3" + }, + "peerDependencies": { + "@azure/app-configuration": "^1.8.0", + "@azure/cosmos": "^4.2.0", + "@azure/data-tables": "^13.3.0", + "@azure/identity": "^4.6.0", + "@azure/keyvault-secrets": "^4.9.0", + "@azure/storage-blob": "^12.26.0", + "@capacitor/preferences": "^6 || ^7 || ^8", + "@deno/kv": ">=0.9.0", + "@netlify/blobs": "^6.5.0 || ^7.0.0 || ^8.1.0 || ^9.0.0 || ^10.0.0", + "@planetscale/database": "^1.19.0", + "@upstash/redis": "^1.34.3", + "@vercel/blob": ">=0.27.1", + "@vercel/functions": "^2.2.12 || ^3.0.0", + "@vercel/kv": "^1 || ^2 || ^3", + "aws4fetch": "^1.0.20", + "db0": ">=0.2.1", + "idb-keyval": "^6.2.1", + "ioredis": "^5.4.2", + "uploadthing": "^7.4.4" + }, + "peerDependenciesMeta": { + "@azure/app-configuration": { + "optional": true + }, + "@azure/cosmos": { + "optional": true + }, + "@azure/data-tables": { + "optional": true + }, + "@azure/identity": { + "optional": true + }, + "@azure/keyvault-secrets": { + "optional": true + }, + "@azure/storage-blob": { + "optional": true + }, + "@capacitor/preferences": { + "optional": true + }, + "@deno/kv": { + "optional": true + }, + "@netlify/blobs": { + "optional": true + }, + "@planetscale/database": { + "optional": true + }, + "@upstash/redis": { + "optional": true + }, + "@vercel/blob": { + "optional": true + }, + "@vercel/functions": { + "optional": true + }, + "@vercel/kv": { + "optional": true + }, + "aws4fetch": { + "optional": true + }, + "db0": { + "optional": true + }, + "idb-keyval": { + "optional": true + }, + "ioredis": { + "optional": true + }, + "uploadthing": { + "optional": true + } + } + }, + "node_modules/vfile": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/vfile/-/vfile-6.0.3.tgz", + "integrity": "sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0", + "vfile-message": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/vfile-location": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/vfile-location/-/vfile-location-5.0.3.tgz", + "integrity": "sha512-5yXvWDEgqeiYiBe1lbxYF7UMAIm/IcopxMHrMQDq3nvKcjPKIhZklUKL+AE7J7uApI4kwe2snsK+eI6UTj9EHg==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0", + "vfile": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/vfile-message": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-4.0.3.tgz", + "integrity": "sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0", + "unist-util-stringify-position": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/vite": { + "version": "6.4.3", + "resolved": "https://registry.npmjs.org/vite/-/vite-6.4.3.tgz", + "integrity": "sha512-NTKlcQjlAK7MlQoyb6LgaqHc8sso/pVyUJYWMws3jg21uTJw/LddqIFPcPqP6PzpgbIcZyKI85sFE4HBrQDA8A==", + "license": "MIT", + "dependencies": { + "esbuild": "^0.25.0", + "fdir": "^6.4.4", + "picomatch": "^4.0.2", + "postcss": "^8.5.3", + "rollup": "^4.34.9", + "tinyglobby": "^0.2.13" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^18.0.0 || ^20.0.0 || >=22.0.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + }, + "peerDependencies": { + "@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0", + "jiti": ">=1.21.0", + "less": "*", + "lightningcss": "^1.21.0", + "sass": "*", + "sass-embedded": "*", + "stylus": "*", + "sugarss": "*", + "terser": "^5.16.0", + "tsx": "^4.8.1", + "yaml": "^2.4.2" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "jiti": { + "optional": true + }, + "less": { + "optional": true + }, + "lightningcss": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + }, + "tsx": { + "optional": true + }, + "yaml": { + "optional": true + } + } + }, + "node_modules/vite/node_modules/@esbuild/aix-ppc64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.12.tgz", + "integrity": "sha512-Hhmwd6CInZ3dwpuGTF8fJG6yoWmsToE+vYgD4nytZVxcu1ulHpUQRAB1UJ8+N1Am3Mz4+xOByoQoSZf4D+CpkA==", + "cpu": [ + "ppc64" + ], + "license": "MIT", + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/@esbuild/android-arm": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.12.tgz", + "integrity": "sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg==", + "cpu": [ + "arm" + ], + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/@esbuild/android-arm64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.12.tgz", + "integrity": "sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/@esbuild/android-x64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.12.tgz", + "integrity": "sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/@esbuild/darwin-arm64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.12.tgz", + "integrity": "sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/@esbuild/darwin-x64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.12.tgz", + "integrity": "sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/@esbuild/freebsd-arm64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.12.tgz", + "integrity": "sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/@esbuild/freebsd-x64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.12.tgz", + "integrity": "sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/@esbuild/linux-arm": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.12.tgz", + "integrity": "sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw==", + "cpu": [ + "arm" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/@esbuild/linux-arm64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.12.tgz", + "integrity": "sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/@esbuild/linux-ia32": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.12.tgz", + "integrity": "sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA==", + "cpu": [ + "ia32" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/@esbuild/linux-loong64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.12.tgz", + "integrity": "sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng==", + "cpu": [ + "loong64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/@esbuild/linux-mips64el": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.12.tgz", + "integrity": "sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw==", + "cpu": [ + "mips64el" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/@esbuild/linux-ppc64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.12.tgz", + "integrity": "sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA==", + "cpu": [ + "ppc64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/@esbuild/linux-riscv64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.12.tgz", + "integrity": "sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w==", + "cpu": [ + "riscv64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/@esbuild/linux-s390x": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.12.tgz", + "integrity": "sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg==", + "cpu": [ + "s390x" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/@esbuild/linux-x64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.12.tgz", + "integrity": "sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/@esbuild/netbsd-arm64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.12.tgz", + "integrity": "sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/@esbuild/netbsd-x64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.12.tgz", + "integrity": "sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/@esbuild/openbsd-arm64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.12.tgz", + "integrity": "sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/@esbuild/openbsd-x64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.12.tgz", + "integrity": "sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/@esbuild/openharmony-arm64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.25.12.tgz", + "integrity": "sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/@esbuild/sunos-x64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.12.tgz", + "integrity": "sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/@esbuild/win32-arm64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.12.tgz", + "integrity": "sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/@esbuild/win32-ia32": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.12.tgz", + "integrity": "sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ==", + "cpu": [ + "ia32" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/@esbuild/win32-x64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.12.tgz", + "integrity": "sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/esbuild": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.12.tgz", + "integrity": "sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg==", + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=18" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.25.12", + "@esbuild/android-arm": "0.25.12", + "@esbuild/android-arm64": "0.25.12", + "@esbuild/android-x64": "0.25.12", + "@esbuild/darwin-arm64": "0.25.12", + "@esbuild/darwin-x64": "0.25.12", + "@esbuild/freebsd-arm64": "0.25.12", + "@esbuild/freebsd-x64": "0.25.12", + "@esbuild/linux-arm": "0.25.12", + "@esbuild/linux-arm64": "0.25.12", + "@esbuild/linux-ia32": "0.25.12", + "@esbuild/linux-loong64": "0.25.12", + "@esbuild/linux-mips64el": "0.25.12", + "@esbuild/linux-ppc64": "0.25.12", + "@esbuild/linux-riscv64": "0.25.12", + "@esbuild/linux-s390x": "0.25.12", + "@esbuild/linux-x64": "0.25.12", + "@esbuild/netbsd-arm64": "0.25.12", + "@esbuild/netbsd-x64": "0.25.12", + "@esbuild/openbsd-arm64": "0.25.12", + "@esbuild/openbsd-x64": "0.25.12", + "@esbuild/openharmony-arm64": "0.25.12", + "@esbuild/sunos-x64": "0.25.12", + "@esbuild/win32-arm64": "0.25.12", + "@esbuild/win32-ia32": "0.25.12", + "@esbuild/win32-x64": "0.25.12" + } + }, + "node_modules/vitefu": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/vitefu/-/vitefu-1.1.3.tgz", + "integrity": "sha512-ub4okH7Z5KLjb6hDyjqrGXqWtWvoYdU3IGm/NorpgHncKoLTCfRIbvlhBm7r0YstIaQRYlp4yEbFqDcKSzXSSg==", + "license": "MIT", + "workspaces": [ + "tests/deps/*", + "tests/projects/*", + "tests/projects/workspace/packages/*" + ], + "peerDependencies": { + "vite": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "vite": { + "optional": true + } + } + }, + "node_modules/web-namespaces": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/web-namespaces/-/web-namespaces-2.0.1.tgz", + "integrity": "sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/whatwg-encoding": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-3.1.1.tgz", + "integrity": "sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==", + "deprecated": "Use @exodus/bytes instead for a more spec-conformant and faster implementation", + "license": "MIT", + "dependencies": { + "iconv-lite": "0.6.3" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/whatwg-mimetype": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-4.0.0.tgz", + "integrity": "sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==", + "license": "MIT", + "engines": { + "node": ">=18" + } + }, + "node_modules/which-pm-runs": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/which-pm-runs/-/which-pm-runs-1.1.0.tgz", + "integrity": "sha512-n1brCuqClxfFfq/Rb0ICg9giSZqCS+pLtccdag6C2HyufBrh3fBOiy9nb6ggRMvWOVH5GrdJskj5iGTZNxd7SA==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/widest-line": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-5.0.0.tgz", + "integrity": "sha512-c9bZp7b5YtRj2wOe6dlj32MK+Bx/M/d+9VB2SHM1OtsUHR0aV0tdP6DWh/iMt0kWi1t5g1Iudu6hQRNd1A4PVA==", + "license": "MIT", + "dependencies": { + "string-width": "^7.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/wrap-ansi": { + "version": "9.0.2", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-9.0.2.tgz", + "integrity": "sha512-42AtmgqjV+X1VpdOfyTGOYRi0/zsoLqtXQckTmqTeybT+BDIbM/Guxo7x3pE2vtpr1ok6xRqM9OpBe+Jyoqyww==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^6.2.1", + "string-width": "^7.0.0", + "strip-ansi": "^7.1.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/xxhash-wasm": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/xxhash-wasm/-/xxhash-wasm-1.1.0.tgz", + "integrity": "sha512-147y/6YNh+tlp6nd/2pWq38i9h6mz/EuQ6njIrmW8D1BS5nCqs0P6DG+m6zTGnNz5I+uhZ0SHxBs9BsPrwcKDA==", + "license": "MIT" + }, + "node_modules/yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/yocto-queue": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.2.2.tgz", + "integrity": "sha512-4LCcse/U2MHZ63HAJVE+v71o7yOdIe4cZ70Wpf8D/IyjDKYQLV5GD46B+hSTjJsvV5PztjvHoU580EftxjDZFQ==", + "license": "MIT", + "engines": { + "node": ">=12.20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/yocto-spinner": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/yocto-spinner/-/yocto-spinner-0.2.3.tgz", + "integrity": "sha512-sqBChb33loEnkoXte1bLg45bEBsOP9N1kzQh5JZNKj/0rik4zAPTNSAVPj3uQAdc6slYJ0Ksc403G2XgxsJQFQ==", + "license": "MIT", + "dependencies": { + "yoctocolors": "^2.1.1" + }, + "engines": { + "node": ">=18.19" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/yoctocolors": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/yoctocolors/-/yoctocolors-2.1.2.tgz", + "integrity": "sha512-CzhO+pFNo8ajLM2d2IW/R93ipy99LWjtwblvC1RsoSUMZgyLbYFr221TnSNT7GjGdYui6P459mw9JH/g/zW2ug==", + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/zod": { + "version": "3.25.76", + "resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz", + "integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/colinhacks" + } + }, + "node_modules/zod-to-json-schema": { + "version": "3.25.2", + "resolved": "https://registry.npmjs.org/zod-to-json-schema/-/zod-to-json-schema-3.25.2.tgz", + "integrity": "sha512-O/PgfnpT1xKSDeQYSCfRI5Gy3hPf91mKVDuYLUHZJMiDFptvP41MSnWofm8dnCm0256ZNfZIM7DSzuSMAFnjHA==", + "license": "ISC", + "peerDependencies": { + "zod": "^3.25.28 || ^4" + } + }, + "node_modules/zod-to-ts": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/zod-to-ts/-/zod-to-ts-1.2.0.tgz", + "integrity": "sha512-x30XE43V+InwGpvTySRNz9kB7qFU8DlyEy7BsSTCHPH1R0QasMmHWZDCzYm6bVXtj/9NNJAZF3jW8rzFvH5OFA==", + "peerDependencies": { + "typescript": "^4.9.4 || ^5.0.2", + "zod": "^3" + } + }, + "node_modules/zwitch": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz", + "integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + } + } +} diff --git a/www/package.json b/www/package.json new file mode 100644 index 0000000..32fad18 --- /dev/null +++ b/www/package.json @@ -0,0 +1,28 @@ +{ + "name": "arizona-institute-for-autism", + "private": true, + "type": "module", + "engines": { + "node": ">=20.19.0" + }, + "scripts": { + "dev": "astro dev", + "build": "astro build", + "build:sandbox": "NODE_OPTIONS=--require=./tools/localhost-dns.cjs astro build", + "preview": "astro preview", + "extract": "node tools/extract-fallback.mjs", + "extract:full": "node tools/extract-site.mjs", + "crawl:live": "node tools/crawl-live-site.mjs", + "audit:links": "node tools/audit-links.mjs", + "generate:sitemap": "node tools/generate-sitemap.mjs", + "generate:redirects": "node tools/generate-redirects.mjs" + }, + "dependencies": { + "astro": "^5.10.0", + "cheerio": "^1.1.0", + "fast-glob": "^3.3.3", + "gray-matter": "^4.0.3", + "turndown": "^7.2.0", + "zod": "^3.25.0" + } +} diff --git a/www/public/assets/downloads/psychological-assessment-ages-2-5.pdf b/www/public/assets/downloads/psychological-assessment-ages-2-5.pdf new file mode 100644 index 0000000..c82479c Binary files /dev/null and b/www/public/assets/downloads/psychological-assessment-ages-2-5.pdf differ diff --git a/www/public/assets/downloads/psychological-assessment-ages-6+.pdf b/www/public/assets/downloads/psychological-assessment-ages-6+.pdf new file mode 100644 index 0000000..d06f41f Binary files /dev/null and b/www/public/assets/downloads/psychological-assessment-ages-6+.pdf differ diff --git a/www/public/assets/fonts/Caveat/700.woff b/www/public/assets/fonts/Caveat/700.woff new file mode 100644 index 0000000..2340393 Binary files /dev/null and b/www/public/assets/fonts/Caveat/700.woff differ diff --git a/www/public/assets/fonts/Caveat/700.woff2 b/www/public/assets/fonts/Caveat/700.woff2 new file mode 100644 index 0000000..078b5c3 Binary files /dev/null and b/www/public/assets/fonts/Caveat/700.woff2 differ diff --git a/www/public/assets/fonts/Caveat/regular.woff b/www/public/assets/fonts/Caveat/regular.woff new file mode 100644 index 0000000..64e6d02 Binary files /dev/null and b/www/public/assets/fonts/Caveat/regular.woff differ diff --git a/www/public/assets/fonts/Caveat/regular.woff2 b/www/public/assets/fonts/Caveat/regular.woff2 new file mode 100644 index 0000000..31ac846 Binary files /dev/null and b/www/public/assets/fonts/Caveat/regular.woff2 differ diff --git a/www/public/assets/fonts/Inter/700.woff b/www/public/assets/fonts/Inter/700.woff new file mode 100644 index 0000000..c0c91d8 Binary files /dev/null and b/www/public/assets/fonts/Inter/700.woff differ diff --git a/www/public/assets/fonts/Inter/700.woff2 b/www/public/assets/fonts/Inter/700.woff2 new file mode 100644 index 0000000..17bf2b7 Binary files /dev/null and b/www/public/assets/fonts/Inter/700.woff2 differ diff --git a/www/public/assets/fonts/Inter/regular.woff b/www/public/assets/fonts/Inter/regular.woff new file mode 100644 index 0000000..d65a708 Binary files /dev/null and b/www/public/assets/fonts/Inter/regular.woff differ diff --git a/www/public/assets/fonts/Inter/regular.woff2 b/www/public/assets/fonts/Inter/regular.woff2 new file mode 100644 index 0000000..6bbecb1 Binary files /dev/null and b/www/public/assets/fonts/Inter/regular.woff2 differ diff --git a/www/public/assets/fonts/Lato/700.woff b/www/public/assets/fonts/Lato/700.woff new file mode 100644 index 0000000..a332fe0 Binary files /dev/null and b/www/public/assets/fonts/Lato/700.woff differ diff --git a/www/public/assets/fonts/Lato/700.woff2 b/www/public/assets/fonts/Lato/700.woff2 new file mode 100644 index 0000000..4dc6bcd Binary files /dev/null and b/www/public/assets/fonts/Lato/700.woff2 differ diff --git a/www/public/assets/fonts/Lato/regular.woff b/www/public/assets/fonts/Lato/regular.woff new file mode 100644 index 0000000..3ea680c Binary files /dev/null and b/www/public/assets/fonts/Lato/regular.woff differ diff --git a/www/public/assets/fonts/Lato/regular.woff2 b/www/public/assets/fonts/Lato/regular.woff2 new file mode 100644 index 0000000..7e878d4 Binary files /dev/null and b/www/public/assets/fonts/Lato/regular.woff2 differ diff --git a/www/public/assets/fonts/Playfair_Display/700.woff b/www/public/assets/fonts/Playfair_Display/700.woff new file mode 100644 index 0000000..a52d3a1 Binary files /dev/null and b/www/public/assets/fonts/Playfair_Display/700.woff differ diff --git a/www/public/assets/fonts/Playfair_Display/700.woff2 b/www/public/assets/fonts/Playfair_Display/700.woff2 new file mode 100644 index 0000000..37f4a4e Binary files /dev/null and b/www/public/assets/fonts/Playfair_Display/700.woff2 differ diff --git a/www/public/assets/fonts/Playfair_Display/regular.woff b/www/public/assets/fonts/Playfair_Display/regular.woff new file mode 100644 index 0000000..89e3ce6 Binary files /dev/null and b/www/public/assets/fonts/Playfair_Display/regular.woff differ diff --git a/www/public/assets/fonts/Playfair_Display/regular.woff2 b/www/public/assets/fonts/Playfair_Display/regular.woff2 new file mode 100644 index 0000000..bb896a3 Binary files /dev/null and b/www/public/assets/fonts/Playfair_Display/regular.woff2 differ diff --git a/www/public/assets/fonts/Rubik/700.woff b/www/public/assets/fonts/Rubik/700.woff new file mode 100644 index 0000000..b7b8dc5 Binary files /dev/null and b/www/public/assets/fonts/Rubik/700.woff differ diff --git a/www/public/assets/fonts/Rubik/700.woff2 b/www/public/assets/fonts/Rubik/700.woff2 new file mode 100644 index 0000000..11189ac Binary files /dev/null and b/www/public/assets/fonts/Rubik/700.woff2 differ diff --git a/www/public/assets/fonts/Rubik/regular.woff b/www/public/assets/fonts/Rubik/regular.woff new file mode 100644 index 0000000..8c0eaff Binary files /dev/null and b/www/public/assets/fonts/Rubik/regular.woff differ diff --git a/www/public/assets/fonts/Rubik/regular.woff2 b/www/public/assets/fonts/Rubik/regular.woff2 new file mode 100644 index 0000000..18287cc Binary files /dev/null and b/www/public/assets/fonts/Rubik/regular.woff2 differ diff --git a/www/public/assets/images/01-aia-front-entrance.webp b/www/public/assets/images/01-aia-front-entrance.webp new file mode 100644 index 0000000..d5ab695 Binary files /dev/null and b/www/public/assets/images/01-aia-front-entrance.webp differ diff --git a/www/public/assets/images/02-aia-receptionist-area.webp b/www/public/assets/images/02-aia-receptionist-area.webp new file mode 100644 index 0000000..32295d8 Binary files /dev/null and b/www/public/assets/images/02-aia-receptionist-area.webp differ diff --git a/www/public/assets/images/03-aia-entrance-hallway.webp b/www/public/assets/images/03-aia-entrance-hallway.webp new file mode 100644 index 0000000..5ef1926 Binary files /dev/null and b/www/public/assets/images/03-aia-entrance-hallway.webp differ diff --git a/www/public/assets/images/04-common-room.webp b/www/public/assets/images/04-common-room.webp new file mode 100644 index 0000000..758822d Binary files /dev/null and b/www/public/assets/images/04-common-room.webp differ diff --git a/www/public/assets/images/05-sensory-recreational-room.webp b/www/public/assets/images/05-sensory-recreational-room.webp new file mode 100644 index 0000000..dc358d8 Binary files /dev/null and b/www/public/assets/images/05-sensory-recreational-room.webp differ diff --git a/www/public/assets/images/06-aba-academic-readiness-room-entrance.webp b/www/public/assets/images/06-aba-academic-readiness-room-entrance.webp new file mode 100644 index 0000000..38ccfde Binary files /dev/null and b/www/public/assets/images/06-aba-academic-readiness-room-entrance.webp differ diff --git a/www/public/assets/images/07-aba-academic-readiness-room.webp b/www/public/assets/images/07-aba-academic-readiness-room.webp new file mode 100644 index 0000000..1849d7f Binary files /dev/null and b/www/public/assets/images/07-aba-academic-readiness-room.webp differ diff --git a/www/public/assets/images/08-aba-academic-readiness-room-reading-corner.webp b/www/public/assets/images/08-aba-academic-readiness-room-reading-corner.webp new file mode 100644 index 0000000..d624eb6 Binary files /dev/null and b/www/public/assets/images/08-aba-academic-readiness-room-reading-corner.webp differ diff --git a/www/public/assets/images/09-aia-art-gallery.webp b/www/public/assets/images/09-aia-art-gallery.webp new file mode 100644 index 0000000..c634667 Binary files /dev/null and b/www/public/assets/images/09-aia-art-gallery.webp differ diff --git a/www/public/assets/images/aba-academic-readiness.webp b/www/public/assets/images/aba-academic-readiness.webp new file mode 100644 index 0000000..86c31bc Binary files /dev/null and b/www/public/assets/images/aba-academic-readiness.webp differ diff --git a/www/public/assets/images/aba-daughter-toddler-belonging.webp b/www/public/assets/images/aba-daughter-toddler-belonging.webp new file mode 100644 index 0000000..e63683f Binary files /dev/null and b/www/public/assets/images/aba-daughter-toddler-belonging.webp differ diff --git a/www/public/assets/images/aba-learn-play-skills.webp b/www/public/assets/images/aba-learn-play-skills.webp new file mode 100644 index 0000000..aa06692 Binary files /dev/null and b/www/public/assets/images/aba-learn-play-skills.webp differ diff --git a/www/public/assets/images/aba-speech-therapy.webp b/www/public/assets/images/aba-speech-therapy.webp new file mode 100644 index 0000000..f41c2f8 Binary files /dev/null and b/www/public/assets/images/aba-speech-therapy.webp differ diff --git a/www/public/assets/images/abc-data-template-download.png b/www/public/assets/images/abc-data-template-download.png new file mode 100644 index 0000000..3c859f0 Binary files /dev/null and b/www/public/assets/images/abc-data-template-download.png differ diff --git a/www/public/assets/images/abc-data-template.png b/www/public/assets/images/abc-data-template.png new file mode 100644 index 0000000..e00d196 Binary files /dev/null and b/www/public/assets/images/abc-data-template.png differ diff --git a/www/public/assets/images/aetna.png b/www/public/assets/images/aetna.png new file mode 100644 index 0000000..42ccc1e Binary files /dev/null and b/www/public/assets/images/aetna.png differ diff --git a/www/public/assets/images/aia-logo.svg b/www/public/assets/images/aia-logo.svg new file mode 100644 index 0000000..26a2dc9 --- /dev/null +++ b/www/public/assets/images/aia-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/www/public/assets/images/asu.webp b/www/public/assets/images/asu.webp new file mode 100644 index 0000000..2fe8a25 Binary files /dev/null and b/www/public/assets/images/asu.webp differ diff --git a/www/public/assets/images/autism-evaluation-expectations_hero.png b/www/public/assets/images/autism-evaluation-expectations_hero.png new file mode 100644 index 0000000..6315724 Binary files /dev/null and b/www/public/assets/images/autism-evaluation-expectations_hero.png differ diff --git a/www/public/assets/images/autism_evaluation_arizona_hero.jpg b/www/public/assets/images/autism_evaluation_arizona_hero.jpg new file mode 100644 index 0000000..2188ebe Binary files /dev/null and b/www/public/assets/images/autism_evaluation_arizona_hero.jpg differ diff --git a/www/public/assets/images/autistic-play-appearance-infographic.png b/www/public/assets/images/autistic-play-appearance-infographic.png new file mode 100644 index 0000000..7e56424 Binary files /dev/null and b/www/public/assets/images/autistic-play-appearance-infographic.png differ diff --git a/www/public/assets/images/bcba-with-happy-toddler.webp b/www/public/assets/images/bcba-with-happy-toddler.webp new file mode 100644 index 0000000..e6ce2d9 Binary files /dev/null and b/www/public/assets/images/bcba-with-happy-toddler.webp differ diff --git a/www/public/assets/images/bluecrossblueshield-logo-1.webp b/www/public/assets/images/bluecrossblueshield-logo-1.webp new file mode 100644 index 0000000..ea797c0 Binary files /dev/null and b/www/public/assets/images/bluecrossblueshield-logo-1.webp differ diff --git a/www/public/assets/images/brand-gear-8-tooth.svg b/www/public/assets/images/brand-gear-8-tooth.svg new file mode 100644 index 0000000..0b7314a --- /dev/null +++ b/www/public/assets/images/brand-gear-8-tooth.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/www/public/assets/images/career-growth_blue.svg b/www/public/assets/images/career-growth_blue.svg new file mode 100644 index 0000000..efe0d80 --- /dev/null +++ b/www/public/assets/images/career-growth_blue.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/www/public/assets/images/caseload-teamwork_blue.svg b/www/public/assets/images/caseload-teamwork_blue.svg new file mode 100644 index 0000000..3b6a8d6 --- /dev/null +++ b/www/public/assets/images/caseload-teamwork_blue.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/www/public/assets/images/casp-member-logo.webp b/www/public/assets/images/casp-member-logo.webp new file mode 100644 index 0000000..0ecc42e Binary files /dev/null and b/www/public/assets/images/casp-member-logo.webp differ diff --git a/www/public/assets/images/child-shopping-cart-tired-cranky.jpg b/www/public/assets/images/child-shopping-cart-tired-cranky.jpg new file mode 100644 index 0000000..0329b97 Binary files /dev/null and b/www/public/assets/images/child-shopping-cart-tired-cranky.jpg differ diff --git a/www/public/assets/images/clinical-careers.webp b/www/public/assets/images/clinical-careers.webp new file mode 100644 index 0000000..e308503 Binary files /dev/null and b/www/public/assets/images/clinical-careers.webp differ diff --git a/www/public/assets/images/clinical-director-rula-diab.png b/www/public/assets/images/clinical-director-rula-diab.png new file mode 100644 index 0000000..a385129 Binary files /dev/null and b/www/public/assets/images/clinical-director-rula-diab.png differ diff --git a/www/public/assets/images/communication-skills-autistic-children-hero_img.png b/www/public/assets/images/communication-skills-autistic-children-hero_img.png new file mode 100644 index 0000000..704a866 Binary files /dev/null and b/www/public/assets/images/communication-skills-autistic-children-hero_img.png differ diff --git a/www/public/assets/images/community-4-autism-logo-blue-1.png b/www/public/assets/images/community-4-autism-logo-blue-1.png new file mode 100644 index 0000000..cb79082 Binary files /dev/null and b/www/public/assets/images/community-4-autism-logo-blue-1.png differ diff --git a/www/public/assets/images/competitive-compensation_blue.svg b/www/public/assets/images/competitive-compensation_blue.svg new file mode 100644 index 0000000..2f05020 --- /dev/null +++ b/www/public/assets/images/competitive-compensation_blue.svg @@ -0,0 +1,6 @@ + \ No newline at end of file diff --git a/www/public/assets/images/corporate-center-team-support.webp b/www/public/assets/images/corporate-center-team-support.webp new file mode 100644 index 0000000..efc25e8 Binary files /dev/null and b/www/public/assets/images/corporate-center-team-support.webp differ diff --git a/www/public/assets/images/diversity-inclusion-opportunity_blue.svg b/www/public/assets/images/diversity-inclusion-opportunity_blue.svg new file mode 100644 index 0000000..8794998 --- /dev/null +++ b/www/public/assets/images/diversity-inclusion-opportunity_blue.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/www/public/assets/images/early_signs_autism_by_age_hero.png b/www/public/assets/images/early_signs_autism_by_age_hero.png new file mode 100644 index 0000000..623eff2 Binary files /dev/null and b/www/public/assets/images/early_signs_autism_by_age_hero.png differ diff --git a/www/public/assets/images/envelope-blue.svg b/www/public/assets/images/envelope-blue.svg new file mode 100644 index 0000000..cedc3a7 --- /dev/null +++ b/www/public/assets/images/envelope-blue.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/www/public/assets/images/family-guide-to-autism-aba-at-home_hero.png b/www/public/assets/images/family-guide-to-autism-aba-at-home_hero.png new file mode 100644 index 0000000..99cb75a Binary files /dev/null and b/www/public/assets/images/family-guide-to-autism-aba-at-home_hero.png differ diff --git a/www/public/assets/images/first-then-cards-seatbelt-ipad.png b/www/public/assets/images/first-then-cards-seatbelt-ipad.png new file mode 100644 index 0000000..51c04e5 Binary files /dev/null and b/www/public/assets/images/first-then-cards-seatbelt-ipad.png differ diff --git a/www/public/assets/images/flexible-scheduling_blue.svg b/www/public/assets/images/flexible-scheduling_blue.svg new file mode 100644 index 0000000..36293a7 --- /dev/null +++ b/www/public/assets/images/flexible-scheduling_blue.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/www/public/assets/images/giveback-donation-gift.webp b/www/public/assets/images/giveback-donation-gift.webp new file mode 100644 index 0000000..db8d819 Binary files /dev/null and b/www/public/assets/images/giveback-donation-gift.webp differ diff --git a/www/public/assets/images/giving-thanks-1.jpg b/www/public/assets/images/giving-thanks-1.jpg new file mode 100644 index 0000000..4512772 Binary files /dev/null and b/www/public/assets/images/giving-thanks-1.jpg differ diff --git a/www/public/assets/images/hero-aba-individual-care-plans.webp b/www/public/assets/images/hero-aba-individual-care-plans.webp new file mode 100644 index 0000000..6719a4f Binary files /dev/null and b/www/public/assets/images/hero-aba-individual-care-plans.webp differ diff --git a/www/public/assets/images/hero-aba-preschool-az_800x.jpg b/www/public/assets/images/hero-aba-preschool-az_800x.jpg new file mode 100644 index 0000000..2e74d28 Binary files /dev/null and b/www/public/assets/images/hero-aba-preschool-az_800x.jpg differ diff --git a/www/public/assets/images/hero-aba-therapy-benefits_800x.jpg b/www/public/assets/images/hero-aba-therapy-benefits_800x.jpg new file mode 100644 index 0000000..b7bd271 Binary files /dev/null and b/www/public/assets/images/hero-aba-therapy-benefits_800x.jpg differ diff --git a/www/public/assets/images/hero-aba-toilet-training-child-autism.webp b/www/public/assets/images/hero-aba-toilet-training-child-autism.webp new file mode 100644 index 0000000..6d31589 Binary files /dev/null and b/www/public/assets/images/hero-aba-toilet-training-child-autism.webp differ diff --git a/www/public/assets/images/hero-aia-world-autism-community-day-celebration_800x.jpg b/www/public/assets/images/hero-aia-world-autism-community-day-celebration_800x.jpg new file mode 100644 index 0000000..fc62c19 Binary files /dev/null and b/www/public/assets/images/hero-aia-world-autism-community-day-celebration_800x.jpg differ diff --git a/www/public/assets/images/hero-asd-sensory-friendly-recipe-pancakes_800x.jpg b/www/public/assets/images/hero-asd-sensory-friendly-recipe-pancakes_800x.jpg new file mode 100644 index 0000000..1e00f8b Binary files /dev/null and b/www/public/assets/images/hero-asd-sensory-friendly-recipe-pancakes_800x.jpg differ diff --git a/www/public/assets/images/hero-asd-sensory-friendly-recipe-thanksgiving-pumpkin-cake_800x.jpg b/www/public/assets/images/hero-asd-sensory-friendly-recipe-thanksgiving-pumpkin-cake_800x.jpg new file mode 100644 index 0000000..d755725 Binary files /dev/null and b/www/public/assets/images/hero-asd-sensory-friendly-recipe-thanksgiving-pumpkin-cake_800x.jpg differ diff --git a/www/public/assets/images/hero-autumn-break-autism-routines-1.jpg b/www/public/assets/images/hero-autumn-break-autism-routines-1.jpg new file mode 100644 index 0000000..f95b202 Binary files /dev/null and b/www/public/assets/images/hero-autumn-break-autism-routines-1.jpg differ diff --git a/www/public/assets/images/hero-back-to-school.webp b/www/public/assets/images/hero-back-to-school.webp new file mode 100644 index 0000000..933b5a1 Binary files /dev/null and b/www/public/assets/images/hero-back-to-school.webp differ diff --git a/www/public/assets/images/hero-behavior-functions-management.webp b/www/public/assets/images/hero-behavior-functions-management.webp new file mode 100644 index 0000000..bf9a6de Binary files /dev/null and b/www/public/assets/images/hero-behavior-functions-management.webp differ diff --git a/www/public/assets/images/hero-behavior-modification-techniques-reinforcement-theory_800x.jpg b/www/public/assets/images/hero-behavior-modification-techniques-reinforcement-theory_800x.jpg new file mode 100644 index 0000000..ab7148a Binary files /dev/null and b/www/public/assets/images/hero-behavior-modification-techniques-reinforcement-theory_800x.jpg differ diff --git a/www/public/assets/images/hero-community-highlight-meet-rula-diab_800x.jpg b/www/public/assets/images/hero-community-highlight-meet-rula-diab_800x.jpg new file mode 100644 index 0000000..e81b864 Binary files /dev/null and b/www/public/assets/images/hero-community-highlight-meet-rula-diab_800x.jpg differ diff --git a/www/public/assets/images/hero-critical-thinking-skills_800x.jpg b/www/public/assets/images/hero-critical-thinking-skills_800x.jpg new file mode 100644 index 0000000..3effda0 Binary files /dev/null and b/www/public/assets/images/hero-critical-thinking-skills_800x.jpg differ diff --git a/www/public/assets/images/hero-enhancing-generalization-skills_800x.jpg b/www/public/assets/images/hero-enhancing-generalization-skills_800x.jpg new file mode 100644 index 0000000..85a6509 Binary files /dev/null and b/www/public/assets/images/hero-enhancing-generalization-skills_800x.jpg differ diff --git a/www/public/assets/images/hero-executive-functioning-skills-autism.webp b/www/public/assets/images/hero-executive-functioning-skills-autism.webp new file mode 100644 index 0000000..ec15fc1 Binary files /dev/null and b/www/public/assets/images/hero-executive-functioning-skills-autism.webp differ diff --git a/www/public/assets/images/hero-first-then-cards.webp b/www/public/assets/images/hero-first-then-cards.webp new file mode 100644 index 0000000..f3d2e52 Binary files /dev/null and b/www/public/assets/images/hero-first-then-cards.webp differ diff --git a/www/public/assets/images/hero-home.jpg b/www/public/assets/images/hero-home.jpg new file mode 100644 index 0000000..8d1fe2c Binary files /dev/null and b/www/public/assets/images/hero-home.jpg differ diff --git a/www/public/assets/images/hero-integrated-aba-model-announcement_800x.jpg b/www/public/assets/images/hero-integrated-aba-model-announcement_800x.jpg new file mode 100644 index 0000000..ffcaf5d Binary files /dev/null and b/www/public/assets/images/hero-integrated-aba-model-announcement_800x.jpg differ diff --git a/www/public/assets/images/hero-integrity-empowerment-excellence_800x.jpg b/www/public/assets/images/hero-integrity-empowerment-excellence_800x.jpg new file mode 100644 index 0000000..8107e81 Binary files /dev/null and b/www/public/assets/images/hero-integrity-empowerment-excellence_800x.jpg differ diff --git a/www/public/assets/images/hero-learn-dtt-net-methods.webp b/www/public/assets/images/hero-learn-dtt-net-methods.webp new file mode 100644 index 0000000..000fe31 Binary files /dev/null and b/www/public/assets/images/hero-learn-dtt-net-methods.webp differ diff --git a/www/public/assets/images/hero-managing-aggressive-behavior-outbursts_800x.jpg b/www/public/assets/images/hero-managing-aggressive-behavior-outbursts_800x.jpg new file mode 100644 index 0000000..1cc5f85 Binary files /dev/null and b/www/public/assets/images/hero-managing-aggressive-behavior-outbursts_800x.jpg differ diff --git a/www/public/assets/images/hero-meet-rula-diab-shoutout-az_800x.jpg b/www/public/assets/images/hero-meet-rula-diab-shoutout-az_800x.jpg new file mode 100644 index 0000000..d25564f Binary files /dev/null and b/www/public/assets/images/hero-meet-rula-diab-shoutout-az_800x.jpg differ diff --git a/www/public/assets/images/hero-new-year-goals-2023_800x.jpg b/www/public/assets/images/hero-new-year-goals-2023_800x.jpg new file mode 100644 index 0000000..00e18c0 Binary files /dev/null and b/www/public/assets/images/hero-new-year-goals-2023_800x.jpg differ diff --git a/www/public/assets/images/hero-new-year-goals-2024.webp b/www/public/assets/images/hero-new-year-goals-2024.webp new file mode 100644 index 0000000..189eb34 Binary files /dev/null and b/www/public/assets/images/hero-new-year-goals-2024.webp differ diff --git a/www/public/assets/images/hero-november-2022-aia-update_800x.jpg b/www/public/assets/images/hero-november-2022-aia-update_800x.jpg new file mode 100644 index 0000000..24374b7 Binary files /dev/null and b/www/public/assets/images/hero-november-2022-aia-update_800x.jpg differ diff --git a/www/public/assets/images/hero-play-leisure-skills-children-autism_800x.jpg b/www/public/assets/images/hero-play-leisure-skills-children-autism_800x.jpg new file mode 100644 index 0000000..7e5906e Binary files /dev/null and b/www/public/assets/images/hero-play-leisure-skills-children-autism_800x.jpg differ diff --git a/www/public/assets/images/hero-positive-reinforcement-techniques.webp b/www/public/assets/images/hero-positive-reinforcement-techniques.webp new file mode 100644 index 0000000..7a8f369 Binary files /dev/null and b/www/public/assets/images/hero-positive-reinforcement-techniques.webp differ diff --git a/www/public/assets/images/hero-proactive-reactive-strategies.webp b/www/public/assets/images/hero-proactive-reactive-strategies.webp new file mode 100644 index 0000000..8b7fab8 Binary files /dev/null and b/www/public/assets/images/hero-proactive-reactive-strategies.webp differ diff --git a/www/public/assets/images/hero-prompting-parenting-benefits.webp b/www/public/assets/images/hero-prompting-parenting-benefits.webp new file mode 100644 index 0000000..fb8da53 Binary files /dev/null and b/www/public/assets/images/hero-prompting-parenting-benefits.webp differ diff --git a/www/public/assets/images/hero-rapport-strategies.webp b/www/public/assets/images/hero-rapport-strategies.webp new file mode 100644 index 0000000..ac4be55 Binary files /dev/null and b/www/public/assets/images/hero-rapport-strategies.webp differ diff --git a/www/public/assets/images/hero-reduce-behavior-management_800x.jpg b/www/public/assets/images/hero-reduce-behavior-management_800x.jpg new file mode 100644 index 0000000..1aeab81 Binary files /dev/null and b/www/public/assets/images/hero-reduce-behavior-management_800x.jpg differ diff --git a/www/public/assets/images/hero-repetetive-behaviors.webp b/www/public/assets/images/hero-repetetive-behaviors.webp new file mode 100644 index 0000000..d106ce1 Binary files /dev/null and b/www/public/assets/images/hero-repetetive-behaviors.webp differ diff --git a/www/public/assets/images/hero-self-care-priority.webp b/www/public/assets/images/hero-self-care-priority.webp new file mode 100644 index 0000000..269ef8b Binary files /dev/null and b/www/public/assets/images/hero-self-care-priority.webp differ diff --git a/www/public/assets/images/hero-sensory-processing.webp b/www/public/assets/images/hero-sensory-processing.webp new file mode 100644 index 0000000..35d4e3f Binary files /dev/null and b/www/public/assets/images/hero-sensory-processing.webp differ diff --git a/www/public/assets/images/hero-summer-aba.webp b/www/public/assets/images/hero-summer-aba.webp new file mode 100644 index 0000000..51efb48 Binary files /dev/null and b/www/public/assets/images/hero-summer-aba.webp differ diff --git a/www/public/assets/images/hero-teach-self-advocacy.webp b/www/public/assets/images/hero-teach-self-advocacy.webp new file mode 100644 index 0000000..89e4688 Binary files /dev/null and b/www/public/assets/images/hero-teach-self-advocacy.webp differ diff --git a/www/public/assets/images/hero-understanding-autism-support_800x.jpg b/www/public/assets/images/hero-understanding-autism-support_800x.jpg new file mode 100644 index 0000000..480a7c3 Binary files /dev/null and b/www/public/assets/images/hero-understanding-autism-support_800x.jpg differ diff --git a/www/public/assets/images/how-to-support-playtime-sm.png b/www/public/assets/images/how-to-support-playtime-sm.png new file mode 100644 index 0000000..a62194f Binary files /dev/null and b/www/public/assets/images/how-to-support-playtime-sm.png differ diff --git a/www/public/assets/images/how-to-support-playtime.png b/www/public/assets/images/how-to-support-playtime.png new file mode 100644 index 0000000..f9bb0cc Binary files /dev/null and b/www/public/assets/images/how-to-support-playtime.png differ diff --git a/www/public/assets/images/icon-Eye_Contact.png b/www/public/assets/images/icon-Eye_Contact.png new file mode 100644 index 0000000..ae23878 Binary files /dev/null and b/www/public/assets/images/icon-Eye_Contact.png differ diff --git a/www/public/assets/images/icon-Listening.png b/www/public/assets/images/icon-Listening.png new file mode 100644 index 0000000..f670545 Binary files /dev/null and b/www/public/assets/images/icon-Listening.png differ diff --git a/www/public/assets/images/icon-Playing.png b/www/public/assets/images/icon-Playing.png new file mode 100644 index 0000000..ed89cdd Binary files /dev/null and b/www/public/assets/images/icon-Playing.png differ diff --git a/www/public/assets/images/icon-Repetitive_Movement.png b/www/public/assets/images/icon-Repetitive_Movement.png new file mode 100644 index 0000000..98a77b8 Binary files /dev/null and b/www/public/assets/images/icon-Repetitive_Movement.png differ diff --git a/www/public/assets/images/icon-Social_Engagement.png b/www/public/assets/images/icon-Social_Engagement.png new file mode 100644 index 0000000..d72278c Binary files /dev/null and b/www/public/assets/images/icon-Social_Engagement.png differ diff --git a/www/public/assets/images/icon-Speach.png b/www/public/assets/images/icon-Speach.png new file mode 100644 index 0000000..1c3c596 Binary files /dev/null and b/www/public/assets/images/icon-Speach.png differ diff --git a/www/public/assets/images/indoor-activity-painting.webp b/www/public/assets/images/indoor-activity-painting.webp new file mode 100644 index 0000000..fc14507 Binary files /dev/null and b/www/public/assets/images/indoor-activity-painting.webp differ diff --git a/www/public/assets/images/integrated-aba-model_400x300.webp b/www/public/assets/images/integrated-aba-model_400x300.webp new file mode 100644 index 0000000..582af58 Binary files /dev/null and b/www/public/assets/images/integrated-aba-model_400x300.webp differ diff --git a/www/public/assets/images/internships-practicum.webp b/www/public/assets/images/internships-practicum.webp new file mode 100644 index 0000000..29a6fc9 Binary files /dev/null and b/www/public/assets/images/internships-practicum.webp differ diff --git a/www/public/assets/images/learner-journey-step-1a.svg b/www/public/assets/images/learner-journey-step-1a.svg new file mode 100644 index 0000000..02014ce --- /dev/null +++ b/www/public/assets/images/learner-journey-step-1a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/www/public/assets/images/learner-journey-step-2.svg b/www/public/assets/images/learner-journey-step-2.svg new file mode 100644 index 0000000..5490ea0 --- /dev/null +++ b/www/public/assets/images/learner-journey-step-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/www/public/assets/images/learner-journey-step-3.svg b/www/public/assets/images/learner-journey-step-3.svg new file mode 100644 index 0000000..f87a838 --- /dev/null +++ b/www/public/assets/images/learner-journey-step-3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/www/public/assets/images/learner-journey-step-4.svg b/www/public/assets/images/learner-journey-step-4.svg new file mode 100644 index 0000000..69ea833 --- /dev/null +++ b/www/public/assets/images/learner-journey-step-4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/www/public/assets/images/learner-journey-step-5.svg b/www/public/assets/images/learner-journey-step-5.svg new file mode 100644 index 0000000..3b05dd5 --- /dev/null +++ b/www/public/assets/images/learner-journey-step-5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/www/public/assets/images/learner-journey-step-6.svg b/www/public/assets/images/learner-journey-step-6.svg new file mode 100644 index 0000000..888e4f3 --- /dev/null +++ b/www/public/assets/images/learner-journey-step-6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/www/public/assets/images/learner-journey.webp b/www/public/assets/images/learner-journey.webp new file mode 100644 index 0000000..62e9a57 Binary files /dev/null and b/www/public/assets/images/learner-journey.webp differ diff --git a/www/public/assets/images/location-blue.svg b/www/public/assets/images/location-blue.svg new file mode 100644 index 0000000..704aceb --- /dev/null +++ b/www/public/assets/images/location-blue.svg @@ -0,0 +1,3 @@ + + + diff --git a/www/public/assets/images/logo-BACB.png b/www/public/assets/images/logo-BACB.png new file mode 100644 index 0000000..562ee16 Binary files /dev/null and b/www/public/assets/images/logo-BACB.png differ diff --git a/www/public/assets/images/logo-ahcccs.webp b/www/public/assets/images/logo-ahcccs.webp new file mode 100644 index 0000000..b5c8374 Binary files /dev/null and b/www/public/assets/images/logo-ahcccs.webp differ diff --git a/www/public/assets/images/logo-az-dept-of-education.webp b/www/public/assets/images/logo-az-dept-of-education.webp new file mode 100644 index 0000000..118bd42 Binary files /dev/null and b/www/public/assets/images/logo-az-dept-of-education.webp differ diff --git a/www/public/assets/images/logo-gcu.webp b/www/public/assets/images/logo-gcu.webp new file mode 100644 index 0000000..c211d85 Binary files /dev/null and b/www/public/assets/images/logo-gcu.webp differ diff --git a/www/public/assets/images/logo-optum.webp b/www/public/assets/images/logo-optum.webp new file mode 100644 index 0000000..c1a1432 Binary files /dev/null and b/www/public/assets/images/logo-optum.webp differ diff --git a/www/public/assets/images/logo-tricare-1.webp b/www/public/assets/images/logo-tricare-1.webp new file mode 100644 index 0000000..c91be85 Binary files /dev/null and b/www/public/assets/images/logo-tricare-1.webp differ diff --git a/www/public/assets/images/mail.svg b/www/public/assets/images/mail.svg new file mode 100644 index 0000000..bfaca03 --- /dev/null +++ b/www/public/assets/images/mail.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/www/public/assets/images/map-pin.svg b/www/public/assets/images/map-pin.svg new file mode 100644 index 0000000..e8f3051 --- /dev/null +++ b/www/public/assets/images/map-pin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/www/public/assets/images/menu.png b/www/public/assets/images/menu.png new file mode 100644 index 0000000..7f5a1d7 Binary files /dev/null and b/www/public/assets/images/menu.png differ diff --git a/www/public/assets/images/monthly-training_blue.svg b/www/public/assets/images/monthly-training_blue.svg new file mode 100644 index 0000000..7416858 --- /dev/null +++ b/www/public/assets/images/monthly-training_blue.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/www/public/assets/images/next.svg b/www/public/assets/images/next.svg new file mode 100644 index 0000000..3a18d13 --- /dev/null +++ b/www/public/assets/images/next.svg @@ -0,0 +1,3 @@ + + + diff --git a/www/public/assets/images/non-clinical-careers.webp b/www/public/assets/images/non-clinical-careers.webp new file mode 100644 index 0000000..794e512 Binary files /dev/null and b/www/public/assets/images/non-clinical-careers.webp differ diff --git a/www/public/assets/images/parallel-players-hero.png b/www/public/assets/images/parallel-players-hero.png new file mode 100644 index 0000000..9eb9573 Binary files /dev/null and b/www/public/assets/images/parallel-players-hero.png differ diff --git a/www/public/assets/images/pecs-first-brush-teeth-then-screen-time.webp b/www/public/assets/images/pecs-first-brush-teeth-then-screen-time.webp new file mode 100644 index 0000000..e197057 Binary files /dev/null and b/www/public/assets/images/pecs-first-brush-teeth-then-screen-time.webp differ diff --git a/www/public/assets/images/phone-1.svg b/www/public/assets/images/phone-1.svg new file mode 100644 index 0000000..533c4f6 --- /dev/null +++ b/www/public/assets/images/phone-1.svg @@ -0,0 +1,27 @@ + + + diff --git a/www/public/assets/images/phone-blue.svg b/www/public/assets/images/phone-blue.svg new file mode 100644 index 0000000..451cf68 --- /dev/null +++ b/www/public/assets/images/phone-blue.svg @@ -0,0 +1,3 @@ + + + diff --git a/www/public/assets/images/play-appearance-infographic.png b/www/public/assets/images/play-appearance-infographic.png new file mode 100644 index 0000000..49f76df Binary files /dev/null and b/www/public/assets/images/play-appearance-infographic.png differ diff --git a/www/public/assets/images/playing-boy.webp b/www/public/assets/images/playing-boy.webp new file mode 100644 index 0000000..fdd3915 Binary files /dev/null and b/www/public/assets/images/playing-boy.webp differ diff --git a/www/public/assets/images/playing-girl.webp b/www/public/assets/images/playing-girl.webp new file mode 100644 index 0000000..bab7acc Binary files /dev/null and b/www/public/assets/images/playing-girl.webp differ diff --git a/www/public/assets/images/previous.svg b/www/public/assets/images/previous.svg new file mode 100644 index 0000000..39ece5d --- /dev/null +++ b/www/public/assets/images/previous.svg @@ -0,0 +1,3 @@ + + + diff --git a/www/public/assets/images/proud-aia-staff.webp b/www/public/assets/images/proud-aia-staff.webp new file mode 100644 index 0000000..4798baa Binary files /dev/null and b/www/public/assets/images/proud-aia-staff.webp differ diff --git a/www/public/assets/images/quiet-nature-walk-800x.jpg b/www/public/assets/images/quiet-nature-walk-800x.jpg new file mode 100644 index 0000000..8c6d270 Binary files /dev/null and b/www/public/assets/images/quiet-nature-walk-800x.jpg differ diff --git a/www/public/assets/images/rbt-toddler-play.webp b/www/public/assets/images/rbt-toddler-play.webp new file mode 100644 index 0000000..79388e6 Binary files /dev/null and b/www/public/assets/images/rbt-toddler-play.webp differ diff --git a/www/public/assets/images/rula-diab-1.webp b/www/public/assets/images/rula-diab-1.webp new file mode 100644 index 0000000..562d3a8 Binary files /dev/null and b/www/public/assets/images/rula-diab-1.webp differ diff --git a/www/public/assets/images/rula-diab-avatar.jpg b/www/public/assets/images/rula-diab-avatar.jpg new file mode 100644 index 0000000..0565aef Binary files /dev/null and b/www/public/assets/images/rula-diab-avatar.jpg differ diff --git a/www/public/assets/images/rula-diab.webp b/www/public/assets/images/rula-diab.webp new file mode 100644 index 0000000..1e76b4a Binary files /dev/null and b/www/public/assets/images/rula-diab.webp differ diff --git a/www/public/assets/images/scottsdale-ribbon-cutting.webp b/www/public/assets/images/scottsdale-ribbon-cutting.webp new file mode 100644 index 0000000..4e96e91 Binary files /dev/null and b/www/public/assets/images/scottsdale-ribbon-cutting.webp differ diff --git a/www/public/assets/images/sensory-regulation-corner.png b/www/public/assets/images/sensory-regulation-corner.png new file mode 100644 index 0000000..82bbc7e Binary files /dev/null and b/www/public/assets/images/sensory-regulation-corner.png differ diff --git a/www/public/assets/images/sibling-parallel-play-instruction.png b/www/public/assets/images/sibling-parallel-play-instruction.png new file mode 100644 index 0000000..6ac40c6 Binary files /dev/null and b/www/public/assets/images/sibling-parallel-play-instruction.png differ diff --git a/www/public/assets/images/stem-sped-social-learners.webp b/www/public/assets/images/stem-sped-social-learners.webp new file mode 100644 index 0000000..0ec5614 Binary files /dev/null and b/www/public/assets/images/stem-sped-social-learners.webp differ diff --git a/www/public/assets/images/stem-sped-tech-kids_446x.jpg b/www/public/assets/images/stem-sped-tech-kids_446x.jpg new file mode 100644 index 0000000..09cfa9c Binary files /dev/null and b/www/public/assets/images/stem-sped-tech-kids_446x.jpg differ diff --git a/www/public/assets/images/straw-gear.svg b/www/public/assets/images/straw-gear.svg new file mode 100644 index 0000000..b351cdc --- /dev/null +++ b/www/public/assets/images/straw-gear.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/www/public/assets/images/talk-not-social.jpg b/www/public/assets/images/talk-not-social.jpg new file mode 100644 index 0000000..8d4adea Binary files /dev/null and b/www/public/assets/images/talk-not-social.jpg differ diff --git a/www/public/assets/images/team-ayah-shahbander.webp b/www/public/assets/images/team-ayah-shahbander.webp new file mode 100644 index 0000000..d4e2f1a Binary files /dev/null and b/www/public/assets/images/team-ayah-shahbander.webp differ diff --git a/www/public/assets/images/team-barbara-samanich.webp b/www/public/assets/images/team-barbara-samanich.webp new file mode 100644 index 0000000..4ef0eb7 Binary files /dev/null and b/www/public/assets/images/team-barbara-samanich.webp differ diff --git a/www/public/assets/images/team-carol-harrington.webp b/www/public/assets/images/team-carol-harrington.webp new file mode 100644 index 0000000..411c984 Binary files /dev/null and b/www/public/assets/images/team-carol-harrington.webp differ diff --git a/www/public/assets/images/team-eney-garcia.webp b/www/public/assets/images/team-eney-garcia.webp new file mode 100644 index 0000000..18d1633 Binary files /dev/null and b/www/public/assets/images/team-eney-garcia.webp differ diff --git a/www/public/assets/images/team-jennifer-bonefont.webp b/www/public/assets/images/team-jennifer-bonefont.webp new file mode 100644 index 0000000..c778766 Binary files /dev/null and b/www/public/assets/images/team-jennifer-bonefont.webp differ diff --git a/www/public/assets/images/team-jennifer-espinoza.webp b/www/public/assets/images/team-jennifer-espinoza.webp new file mode 100644 index 0000000..eeab216 Binary files /dev/null and b/www/public/assets/images/team-jennifer-espinoza.webp differ diff --git a/www/public/assets/images/team-mahima-bedi.webp b/www/public/assets/images/team-mahima-bedi.webp new file mode 100644 index 0000000..81d5632 Binary files /dev/null and b/www/public/assets/images/team-mahima-bedi.webp differ diff --git a/www/public/assets/images/team-mariah-marley.webp b/www/public/assets/images/team-mariah-marley.webp new file mode 100644 index 0000000..4e640fe Binary files /dev/null and b/www/public/assets/images/team-mariah-marley.webp differ diff --git a/www/public/assets/images/team-rachael-sanchez.webp b/www/public/assets/images/team-rachael-sanchez.webp new file mode 100644 index 0000000..916cb56 Binary files /dev/null and b/www/public/assets/images/team-rachael-sanchez.webp differ diff --git a/www/public/assets/images/team-rachel-crosby.webp b/www/public/assets/images/team-rachel-crosby.webp new file mode 100644 index 0000000..de0f978 Binary files /dev/null and b/www/public/assets/images/team-rachel-crosby.webp differ diff --git a/www/public/assets/images/team-rula-diab.webp b/www/public/assets/images/team-rula-diab.webp new file mode 100644 index 0000000..a17ac4e Binary files /dev/null and b/www/public/assets/images/team-rula-diab.webp differ diff --git a/www/public/assets/images/team-timirah-clay.webp b/www/public/assets/images/team-timirah-clay.webp new file mode 100644 index 0000000..e1a9ac5 Binary files /dev/null and b/www/public/assets/images/team-timirah-clay.webp differ diff --git a/www/public/assets/images/toddler-bcba-support.webp b/www/public/assets/images/toddler-bcba-support.webp new file mode 100644 index 0000000..ff9a860 Binary files /dev/null and b/www/public/assets/images/toddler-bcba-support.webp differ diff --git a/www/public/assets/images/toddler-daughter-reach-out.png b/www/public/assets/images/toddler-daughter-reach-out.png new file mode 100644 index 0000000..04d52c1 Binary files /dev/null and b/www/public/assets/images/toddler-daughter-reach-out.png differ diff --git a/www/public/assets/images/trick-or-treat-porch-800x.jpg b/www/public/assets/images/trick-or-treat-porch-800x.jpg new file mode 100644 index 0000000..d538d80 Binary files /dev/null and b/www/public/assets/images/trick-or-treat-porch-800x.jpg differ diff --git a/www/public/assets/images/united-healthcare-logo-1.webp b/www/public/assets/images/united-healthcare-logo-1.webp new file mode 100644 index 0000000..53aa115 Binary files /dev/null and b/www/public/assets/images/united-healthcare-logo-1.webp differ diff --git a/www/public/assets/images/visual-schedule-and-timer-2.png b/www/public/assets/images/visual-schedule-and-timer-2.png new file mode 100644 index 0000000..5dd1658 Binary files /dev/null and b/www/public/assets/images/visual-schedule-and-timer-2.png differ diff --git a/www/public/assets/images/visual-supports-aac-communication.png b/www/public/assets/images/visual-supports-aac-communication.png new file mode 100644 index 0000000..d839554 Binary files /dev/null and b/www/public/assets/images/visual-supports-aac-communication.png differ diff --git a/www/public/assets/media/.gitkeep b/www/public/assets/media/.gitkeep new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/www/public/assets/media/.gitkeep @@ -0,0 +1 @@ + diff --git a/www/public/robots.txt b/www/public/robots.txt new file mode 100644 index 0000000..b0fe257 --- /dev/null +++ b/www/public/robots.txt @@ -0,0 +1,3 @@ +User-agent: * +Allow: / +Sitemap: https://www.azinstitute4autism.com/sitemap.xml diff --git a/www/public/sitemap.xml b/www/public/sitemap.xml new file mode 100644 index 0000000..2e0650a --- /dev/null +++ b/www/public/sitemap.xml @@ -0,0 +1,100 @@ + + + https://www.azinstitute4autism.com/ + https://www.azinstitute4autism.com/aba-therapy + https://www.azinstitute4autism.com/aba-therapy-intake-process + https://www.azinstitute4autism.com/about + https://www.azinstitute4autism.com/ar + https://www.azinstitute4autism.com/ar/library + https://www.azinstitute4autism.com/ar/library/aba-school-readiness-guide + https://www.azinstitute4autism.com/ar/library/autism-self-advocacy-skills-aba + https://www.azinstitute4autism.com/ar/library/behavior-management-functions-guide + https://www.azinstitute4autism.com/ar/library/executive-functioning-skills-autism + https://www.azinstitute4autism.com/ar/library/first-then-cards-autism-transitions + https://www.azinstitute4autism.com/ar/library/positive-reinforcement-techniques + https://www.azinstitute4autism.com/ar/library/proactive-reactive-aba-strategies-guide + https://www.azinstitute4autism.com/autism-evaluations + https://www.azinstitute4autism.com/careers + https://www.azinstitute4autism.com/client-consultation + https://www.azinstitute4autism.com/client-forms + https://www.azinstitute4autism.com/contact + https://www.azinstitute4autism.com/donate-autism-giveback + https://www.azinstitute4autism.com/employee-portal + https://www.azinstitute4autism.com/es + https://www.azinstitute4autism.com/es/aba-therapy + https://www.azinstitute4autism.com/es/aba-therapy-intake-process + https://www.azinstitute4autism.com/es/autism-evaluations + https://www.azinstitute4autism.com/es/client-consultation + https://www.azinstitute4autism.com/es/contact + https://www.azinstitute4autism.com/es/learner-social-club + https://www.azinstitute4autism.com/es/library + https://www.azinstitute4autism.com/es/library/aba-school-readiness-arizona + https://www.azinstitute4autism.com/es/library/autism-evaluation-diagnosis-arizona-parent-guide + https://www.azinstitute4autism.com/es/library/autism-evaluation-what-to-expect + https://www.azinstitute4autism.com/es/library/autism-family-self-care-tips + https://www.azinstitute4autism.com/es/library/autism-self-advocacy-skills-aba + https://www.azinstitute4autism.com/es/library/emotional-regulation-aba + https://www.azinstitute4autism.com/es/library/enhancing-generalization-skills + https://www.azinstitute4autism.com/es/library/executive-functioning-skills-autism + https://www.azinstitute4autism.com/es/library/first-then-cards-autism-transitions + https://www.azinstitute4autism.com/es/library/parents-guide-to-autism-and-aba + https://www.azinstitute4autism.com/es/library/positive-reinforcement-techniques + https://www.azinstitute4autism.com/es/library/social-pragmatic-communication-autism + https://www.azinstitute4autism.com/es/services + https://www.azinstitute4autism.com/faqs + https://www.azinstitute4autism.com/insurance + https://www.azinstitute4autism.com/learner-social-club + https://www.azinstitute4autism.com/library + https://www.azinstitute4autism.com/library/aac-visual-supports-autism + https://www.azinstitute4autism.com/library/aba-school-readiness-arizona + https://www.azinstitute4autism.com/library/aba-school-readiness-guide + https://www.azinstitute4autism.com/library/aba-therapy-benefits + https://www.azinstitute4autism.com/library/aba-therapy-dtt-net-guide + https://www.azinstitute4autism.com/library/aba-therapy-prompting-parenting-benefits + https://www.azinstitute4autism.com/library/aba-therapy-summer-routine-tips + https://www.azinstitute4autism.com/library/aba-toilet-training-child-autism + https://www.azinstitute4autism.com/library/aia-world-autism-community-day-celebration + https://www.azinstitute4autism.com/library/asd-sensory-friendly-recipe-thanksgiving-pumpkin-cake + https://www.azinstitute4autism.com/library/asd-sensory-friendly-recipes-pancakes + https://www.azinstitute4autism.com/library/autism-evaluation-diagnosis-arizona-parent-guide + https://www.azinstitute4autism.com/library/autism-evaluation-what-to-expect + https://www.azinstitute4autism.com/library/autism-fall-break-routine-tips-halloween-thanksgiving + https://www.azinstitute4autism.com/library/autism-family-self-care-tips + https://www.azinstitute4autism.com/library/autism-friendships-social-play-support + https://www.azinstitute4autism.com/library/autism-self-advocacy-skills-aba + https://www.azinstitute4autism.com/library/autism-therapy-rapport-strategies + https://www.azinstitute4autism.com/library/behavior-management-functions-guide + https://www.azinstitute4autism.com/library/behavior-modification-techniques-reinforcement-theory + https://www.azinstitute4autism.com/library/communication-social-skills-autistic-children-guide + https://www.azinstitute4autism.com/library/community-highlight-meet-rula-diab + https://www.azinstitute4autism.com/library/critical-thinking-skills + https://www.azinstitute4autism.com/library/early-signs-autism-by-age + https://www.azinstitute4autism.com/library/emotional-regulation-aba + https://www.azinstitute4autism.com/library/enhancing-generalization-skills + https://www.azinstitute4autism.com/library/executive-functioning-skills-autism + https://www.azinstitute4autism.com/library/first-then-cards-autism-transitions + https://www.azinstitute4autism.com/library/heart-full-of-gratitude + https://www.azinstitute4autism.com/library/individualized-aba-therapy + https://www.azinstitute4autism.com/library/integrated-aba-model-announcement + https://www.azinstitute4autism.com/library/managing-aggressive-behavior-outbursts + https://www.azinstitute4autism.com/library/meet-rula-diab-bcba + https://www.azinstitute4autism.com/library/new-aia-scottsdale-office + https://www.azinstitute4autism.com/library/new-year-2024-autism-holiday-tips + https://www.azinstitute4autism.com/library/new-year-goals-2023 + https://www.azinstitute4autism.com/library/november-2022-aia-update + https://www.azinstitute4autism.com/library/parents-guide-to-autism-and-aba + https://www.azinstitute4autism.com/library/play-leisure-skills + https://www.azinstitute4autism.com/library/positive-reinforcement-techniques + https://www.azinstitute4autism.com/library/proactive-reactive-aba-strategies-guide + https://www.azinstitute4autism.com/library/reduce-behavior-management + https://www.azinstitute4autism.com/library/repetitive-behavior + https://www.azinstitute4autism.com/library/sensory-processing + https://www.azinstitute4autism.com/library/social-pragmatic-communication-autism + https://www.azinstitute4autism.com/library/understanding-autism-support + https://www.azinstitute4autism.com/privacy-policy + https://www.azinstitute4autism.com/referrals + https://www.azinstitute4autism.com/schedule-consultation + https://www.azinstitute4autism.com/services + https://www.azinstitute4autism.com/team + https://www.azinstitute4autism.com/tour + diff --git a/www/reports/accessibility-audit.md b/www/reports/accessibility-audit.md new file mode 100644 index 0000000..4572d0e --- /dev/null +++ b/www/reports/accessibility-audit.md @@ -0,0 +1,25 @@ +# Accessibility Audit + +## Implemented + +- Semantic header, navigation, main, article, section, and footer landmarks. +- Skip link and visible keyboard focus behavior. +- Language and direction attributes for English, Spanish, and Arabic. +- Native `details` elements for mobile navigation and FAQ accordions. +- Form labels, autocomplete hints, disabled submission state, and explanatory text. +- Reduced decorative image announcements through empty alt text where appropriate. +- Responsive typography and layouts without fixed text sizing. +- Language-switcher choices are limited to routes that actually exist. +- Like buttons expose pressed and disabled state. +- Source-faithful colors, section hierarchy, and controls were retained while + avoiding the source site's modal that obscures content on initial load. + +## Manual Review + +- Review extracted image alt text; source content frequently omitted or duplicated alt text. +- Test keyboard and screen-reader behavior across all migrated pages. +- Perform contrast testing against final approved brand colors. +- Review extracted article heading hierarchy and any table markup. +- Confirm Arabic content and RTL reading order with a fluent reviewer. +- Validate the rebuilt mobile navigation and all full-page responsive + layouts in a browser outside the autonomous sandbox. diff --git a/www/reports/asset-inventory.csv b/www/reports/asset-inventory.csv new file mode 100644 index 0000000..73c678f --- /dev/null +++ b/www/reports/asset-inventory.csv @@ -0,0 +1,172 @@ +source,target,size,kind +"_hcms/googlefonts/Caveat/700.woff","public/assets/fonts/Caveat/700.woff","130112","fonts" +"_hcms/googlefonts/Caveat/700.woff2","public/assets/fonts/Caveat/700.woff2","105716","fonts" +"_hcms/googlefonts/Caveat/regular.woff","public/assets/fonts/Caveat/regular.woff","125528","fonts" +"_hcms/googlefonts/Caveat/regular.woff2","public/assets/fonts/Caveat/regular.woff2","100924","fonts" +"_hcms/googlefonts/Inter/700.woff","public/assets/fonts/Inter/700.woff","144024","fonts" +"_hcms/googlefonts/Inter/700.woff2","public/assets/fonts/Inter/700.woff2","112368","fonts" +"_hcms/googlefonts/Inter/regular.woff","public/assets/fonts/Inter/regular.woff","139512","fonts" +"_hcms/googlefonts/Inter/regular.woff2","public/assets/fonts/Inter/regular.woff2","108176","fonts" +"_hcms/googlefonts/Lato/700.woff","public/assets/fonts/Lato/700.woff","19076","fonts" +"_hcms/googlefonts/Lato/700.woff2","public/assets/fonts/Lato/700.woff2","15280","fonts" +"_hcms/googlefonts/Lato/regular.woff","public/assets/fonts/Lato/regular.woff","18840","fonts" +"_hcms/googlefonts/Lato/regular.woff2","public/assets/fonts/Lato/regular.woff2","15088","fonts" +"_hcms/googlefonts/Playfair_Display/700.woff","public/assets/fonts/Playfair_Display/700.woff","55624","fonts" +"_hcms/googlefonts/Playfair_Display/700.woff2","public/assets/fonts/Playfair_Display/700.woff2","45448","fonts" +"_hcms/googlefonts/Playfair_Display/regular.woff","public/assets/fonts/Playfair_Display/regular.woff","52292","fonts" +"_hcms/googlefonts/Playfair_Display/regular.woff2","public/assets/fonts/Playfair_Display/regular.woff2","42388","fonts" +"_hcms/googlefonts/Rubik/700.woff","public/assets/fonts/Rubik/700.woff","73064","fonts" +"_hcms/googlefonts/Rubik/700.woff2","public/assets/fonts/Rubik/700.woff2","56900","fonts" +"_hcms/googlefonts/Rubik/regular.woff","public/assets/fonts/Rubik/regular.woff","72240","fonts" +"_hcms/googlefonts/Rubik/regular.woff2","public/assets/fonts/Rubik/regular.woff2","56420","fonts" +"hs-fs/hubfs/aba-academic-readiness.webp?width=1050&height=700&name=aba-academic-readiness.webp","public/assets/images/aba-academic-readiness.webp","22603","images" +"hs-fs/hubfs/aba-daughter-toddler-belonging.webp?width=1050&height=770&name=aba-daughter-toddler-belonging.webp","public/assets/images/aba-daughter-toddler-belonging.webp","30615","images" +"hs-fs/hubfs/aba-speech-therapy.webp?width=1050&height=770&name=aba-speech-therapy.webp","public/assets/images/aba-speech-therapy.webp","17350","images" +"hs-fs/hubfs/abc-data-template.png?width=1200&height=787&name=abc-data-template.png","public/assets/images/abc-data-template.png","72922","images" +"hs-fs/hubfs/autism-evaluation-expectations_hero.png?width=1056&name=autism-evaluation-expectations_hero.png","public/assets/images/autism-evaluation-expectations_hero.png","582448","images" +"hs-fs/hubfs/autism_evaluation_arizona_hero.jpg?width=1056&name=autism_evaluation_arizona_hero.jpg","public/assets/images/autism_evaluation_arizona_hero.jpg","45962","images" +"hs-fs/hubfs/autistic-play-appearance-infographic.png?width=1200&height=1500&name=autistic-play-appearance-infographic.png","public/assets/images/autistic-play-appearance-infographic.png","565991","images" +"hs-fs/hubfs/child-shopping-cart-tired-cranky.jpg?width=1056&name=child-shopping-cart-tired-cranky.jpg","public/assets/images/child-shopping-cart-tired-cranky.jpg","76344","images" +"hs-fs/hubfs/communication-skills-autistic-children-hero_img.png?width=1056&name=communication-skills-autistic-children-hero_img.png","public/assets/images/communication-skills-autistic-children-hero_img.png","666765","images" +"hs-fs/hubfs/early_signs_autism_by_age_hero.png?width=1056&name=early_signs_autism_by_age_hero.png","public/assets/images/early_signs_autism_by_age_hero.png","430741","images" +"hs-fs/hubfs/family-guide-to-autism-aba-at-home_hero.png?width=1056&name=family-guide-to-autism-aba-at-home_hero.png","public/assets/images/family-guide-to-autism-aba-at-home_hero.png","543405","images" +"hs-fs/hubfs/giving-thanks-1.jpg?width=400&upsize=true&name=giving-thanks-1.jpg","public/assets/images/giving-thanks-1.jpg","30166","images" +"hs-fs/hubfs/hero-aba-individual-care-plans.webp?width=1056&name=hero-aba-individual-care-plans.webp","public/assets/images/hero-aba-individual-care-plans.webp","50011","images" +"hs-fs/hubfs/hero-aba-preschool-az_800x.jpg?width=1056&name=hero-aba-preschool-az_800x.jpg","public/assets/images/hero-aba-preschool-az_800x.jpg","132896","images" +"hs-fs/hubfs/hero-aba-therapy-benefits_800x.jpg?width=1056&name=hero-aba-therapy-benefits_800x.jpg","public/assets/images/hero-aba-therapy-benefits_800x.jpg","60969","images" +"hs-fs/hubfs/hero-aba-toilet-training-child-autism.webp?width=1056&name=hero-aba-toilet-training-child-autism.webp","public/assets/images/hero-aba-toilet-training-child-autism.webp","36191","images" +"hs-fs/hubfs/hero-aia-world-autism-community-day-celebration_800x.jpg?width=400&upsize=true&name=hero-aia-world-autism-community-day-celebration_800x.jpg","public/assets/images/hero-aia-world-autism-community-day-celebration_800x.jpg","22951","images" +"hs-fs/hubfs/hero-asd-sensory-friendly-recipe-pancakes_800x.jpg?width=1056&name=hero-asd-sensory-friendly-recipe-pancakes_800x.jpg","public/assets/images/hero-asd-sensory-friendly-recipe-pancakes_800x.jpg","43634","images" +"hs-fs/hubfs/hero-asd-sensory-friendly-recipe-thanksgiving-pumpkin-cake_800x.jpg?width=400&upsize=true&name=hero-asd-sensory-friendly-recipe-thanksgiving-pumpkin-cake_800x.jpg","public/assets/images/hero-asd-sensory-friendly-recipe-thanksgiving-pumpkin-cake_800x.jpg","18461","images" +"hs-fs/hubfs/hero-autumn-break-autism-routines-1.jpg?width=400&upsize=true&name=hero-autumn-break-autism-routines-1.jpg","public/assets/images/hero-autumn-break-autism-routines-1.jpg","17794","images" +"hs-fs/hubfs/hero-back-to-school.webp?width=1056&name=hero-back-to-school.webp","public/assets/images/hero-back-to-school.webp","80581","images" +"hs-fs/hubfs/hero-behavior-functions-management.webp?width=1056&name=hero-behavior-functions-management.webp","public/assets/images/hero-behavior-functions-management.webp","33484","images" +"hs-fs/hubfs/hero-behavior-modification-techniques-reinforcement-theory_800x.jpg?width=1056&name=hero-behavior-modification-techniques-reinforcement-theory_800x.jpg","public/assets/images/hero-behavior-modification-techniques-reinforcement-theory_800x.jpg","42939","images" +"hs-fs/hubfs/hero-community-highlight-meet-rula-diab_800x.jpg?width=1056&name=hero-community-highlight-meet-rula-diab_800x.jpg","public/assets/images/hero-community-highlight-meet-rula-diab_800x.jpg","49575","images" +"hs-fs/hubfs/hero-critical-thinking-skills_800x.jpg?width=1056&name=hero-critical-thinking-skills_800x.jpg","public/assets/images/hero-critical-thinking-skills_800x.jpg","75323","images" +"hs-fs/hubfs/hero-enhancing-generalization-skills_800x.jpg?width=1056&name=hero-enhancing-generalization-skills_800x.jpg","public/assets/images/hero-enhancing-generalization-skills_800x.jpg","62515","images" +"hs-fs/hubfs/hero-executive-functioning-skills-autism.webp?width=1056&name=hero-executive-functioning-skills-autism.webp","public/assets/images/hero-executive-functioning-skills-autism.webp","31620","images" +"hs-fs/hubfs/hero-first-then-cards.webp?width=400&upsize=true&name=hero-first-then-cards.webp","public/assets/images/hero-first-then-cards.webp","19351","images" +"hs-fs/hubfs/hero-home.jpg?width=150&name=hero-home.jpg","public/assets/images/hero-home.jpg","129382","images" +"hs-fs/hubfs/hero-integrated-aba-model-announcement_800x.jpg?width=1056&name=hero-integrated-aba-model-announcement_800x.jpg","public/assets/images/hero-integrated-aba-model-announcement_800x.jpg","85964","images" +"hs-fs/hubfs/hero-integrity-empowerment-excellence_800x.jpg?width=1056&name=hero-integrity-empowerment-excellence_800x.jpg","public/assets/images/hero-integrity-empowerment-excellence_800x.jpg","56586","images" +"hs-fs/hubfs/hero-learn-dtt-net-methods.webp?width=1056&name=hero-learn-dtt-net-methods.webp","public/assets/images/hero-learn-dtt-net-methods.webp","37710","images" +"hs-fs/hubfs/hero-managing-aggressive-behavior-outbursts_800x.jpg?width=1056&name=hero-managing-aggressive-behavior-outbursts_800x.jpg","public/assets/images/hero-managing-aggressive-behavior-outbursts_800x.jpg","70077","images" +"hs-fs/hubfs/hero-meet-rula-diab-shoutout-az_800x.jpg?width=1056&name=hero-meet-rula-diab-shoutout-az_800x.jpg","public/assets/images/hero-meet-rula-diab-shoutout-az_800x.jpg","23372","images" +"hs-fs/hubfs/hero-new-year-goals-2023_800x.jpg?width=1056&name=hero-new-year-goals-2023_800x.jpg","public/assets/images/hero-new-year-goals-2023_800x.jpg","81548","images" +"hs-fs/hubfs/hero-new-year-goals-2024.webp?width=1056&name=hero-new-year-goals-2024.webp","public/assets/images/hero-new-year-goals-2024.webp","40882","images" +"hs-fs/hubfs/hero-november-2022-aia-update_800x.jpg?width=1056&name=hero-november-2022-aia-update_800x.jpg","public/assets/images/hero-november-2022-aia-update_800x.jpg","35766","images" +"hs-fs/hubfs/hero-play-leisure-skills-children-autism_800x.jpg?width=1056&name=hero-play-leisure-skills-children-autism_800x.jpg","public/assets/images/hero-play-leisure-skills-children-autism_800x.jpg","80688","images" +"hs-fs/hubfs/hero-positive-reinforcement-techniques.webp?width=1056&name=hero-positive-reinforcement-techniques.webp","public/assets/images/hero-positive-reinforcement-techniques.webp","49849","images" +"hs-fs/hubfs/hero-proactive-reactive-strategies.webp?width=1056&name=hero-proactive-reactive-strategies.webp","public/assets/images/hero-proactive-reactive-strategies.webp","237548","images" +"hs-fs/hubfs/hero-prompting-parenting-benefits.webp?width=1056&name=hero-prompting-parenting-benefits.webp","public/assets/images/hero-prompting-parenting-benefits.webp","32510","images" +"hs-fs/hubfs/hero-rapport-strategies.webp?width=1056&name=hero-rapport-strategies.webp","public/assets/images/hero-rapport-strategies.webp","258170","images" +"hs-fs/hubfs/hero-reduce-behavior-management_800x.jpg?width=1056&name=hero-reduce-behavior-management_800x.jpg","public/assets/images/hero-reduce-behavior-management_800x.jpg","32879","images" +"hs-fs/hubfs/hero-repetetive-behaviors.webp?width=1056&name=hero-repetetive-behaviors.webp","public/assets/images/hero-repetetive-behaviors.webp","48852","images" +"hs-fs/hubfs/hero-self-care-priority.webp?width=1056&name=hero-self-care-priority.webp","public/assets/images/hero-self-care-priority.webp","61390","images" +"hs-fs/hubfs/hero-sensory-processing.webp?width=1056&name=hero-sensory-processing.webp","public/assets/images/hero-sensory-processing.webp","37863","images" +"hs-fs/hubfs/hero-summer-aba.webp?width=1056&name=hero-summer-aba.webp","public/assets/images/hero-summer-aba.webp","55375","images" +"hs-fs/hubfs/hero-teach-self-advocacy.webp?width=1056&name=hero-teach-self-advocacy.webp","public/assets/images/hero-teach-self-advocacy.webp","99640","images" +"hs-fs/hubfs/hero-understanding-autism-support_800x.jpg?width=1056&name=hero-understanding-autism-support_800x.jpg","public/assets/images/hero-understanding-autism-support_800x.jpg","33456","images" +"hs-fs/hubfs/how-to-support-playtime-sm.png?width=1200&height=1798&name=how-to-support-playtime-sm.png","public/assets/images/how-to-support-playtime-sm.png","702744","images" +"hs-fs/hubfs/indoor-activity-painting.webp?width=1350&height=900&name=indoor-activity-painting.webp","public/assets/images/indoor-activity-painting.webp","61101","images" +"hs-fs/hubfs/parallel-players-hero.png?width=1056&name=parallel-players-hero.png","public/assets/images/parallel-players-hero.png","588174","images" +"hs-fs/hubfs/pecs-first-brush-teeth-then-screen-time.webp?width=1350&height=693&name=pecs-first-brush-teeth-then-screen-time.webp","public/assets/images/pecs-first-brush-teeth-then-screen-time.webp","54952","images" +"hs-fs/hubfs/quiet-nature-walk-800x.jpg?width=1200&height=675&name=quiet-nature-walk-800x.jpg","public/assets/images/quiet-nature-walk-800x.jpg","130346","images" +"hs-fs/hubfs/rula-diab-1.webp?width=150&height=228&name=rula-diab-1.webp","public/assets/images/rula-diab-1.webp","6542","images" +"hs-fs/hubfs/rula-diab-avatar.jpg?width=100&height=100&name=rula-diab-avatar.jpg","public/assets/images/rula-diab-avatar.jpg","3248","images" +"hs-fs/hubfs/sensory-regulation-corner.png?width=1080&height=720&name=sensory-regulation-corner.png","public/assets/images/sensory-regulation-corner.png","526640","images" +"hs-fs/hubfs/sibling-parallel-play-instruction.png?width=1200&height=699&name=sibling-parallel-play-instruction.png","public/assets/images/sibling-parallel-play-instruction.png","579516","images" +"hs-fs/hubfs/stem-sped-social-learners.webp?width=102&height=102&name=stem-sped-social-learners.webp","public/assets/images/stem-sped-social-learners.webp","4472","images" +"hs-fs/hubfs/stem-sped-tech-kids_446x.jpg?width=1115&height=743&name=stem-sped-tech-kids_446x.jpg","public/assets/images/stem-sped-tech-kids_446x.jpg","31369","images" +"hs-fs/hubfs/talk-not-social.jpg?width=1056&name=talk-not-social.jpg","public/assets/images/talk-not-social.jpg","142193","images" +"hs-fs/hubfs/toddler-daughter-reach-out.png?width=1200&height=1133&name=toddler-daughter-reach-out.png","public/assets/images/toddler-daughter-reach-out.png","649556","images" +"hs-fs/hubfs/trick-or-treat-porch-800x.jpg?width=1200&height=800&name=trick-or-treat-porch-800x.jpg","public/assets/images/trick-or-treat-porch-800x.jpg","126345","images" +"hs-fs/hubfs/visual-schedule-and-timer-2.png?width=1080&height=720&name=visual-schedule-and-timer-2.png","public/assets/images/visual-schedule-and-timer-2.png","447902","images" +"hs-fs/hubfs/visual-supports-aac-communication.png?width=1056&name=visual-supports-aac-communication.png","public/assets/images/visual-supports-aac-communication.png","608791","images" +"hubfs/01-aia-front-entrance.webp","public/assets/images/01-aia-front-entrance.webp","111916","images" +"hubfs/02-aia-receptionist-area.webp","public/assets/images/02-aia-receptionist-area.webp","28752","images" +"hubfs/03-aia-entrance-hallway.webp","public/assets/images/03-aia-entrance-hallway.webp","20018","images" +"hubfs/04-common-room.webp","public/assets/images/04-common-room.webp","31824","images" +"hubfs/05-sensory-recreational-room.webp","public/assets/images/05-sensory-recreational-room.webp","37724","images" +"hubfs/06-aba-academic-readiness-room-entrance.webp","public/assets/images/06-aba-academic-readiness-room-entrance.webp","13078","images" +"hubfs/07-aba-academic-readiness-room.webp","public/assets/images/07-aba-academic-readiness-room.webp","25818","images" +"hubfs/08-aba-academic-readiness-room-reading-corner.webp","public/assets/images/08-aba-academic-readiness-room-reading-corner.webp","25492","images" +"hubfs/09-aia-art-gallery.webp","public/assets/images/09-aia-art-gallery.webp","22276","images" +"hubfs/aba-learn-play-skills.webp","public/assets/images/aba-learn-play-skills.webp","22332","images" +"hubfs/abc-data-template-download.png?hsLang=en-us","public/assets/images/abc-data-template-download.png","85967","images" +"hubfs/aetna.png","public/assets/images/aetna.png","5300","images" +"hubfs/aia-logo.svg","public/assets/images/aia-logo.svg","33691","images" +"hubfs/asu.webp","public/assets/images/asu.webp","9692","images" +"hubfs/bcba-with-happy-toddler.webp","public/assets/images/bcba-with-happy-toddler.webp","28144","images" +"hubfs/bluecrossblueshield-logo-1.webp","public/assets/images/bluecrossblueshield-logo-1.webp","3954","images" +"hubfs/brand-gear-8-tooth.svg","public/assets/images/brand-gear-8-tooth.svg","1035","images" +"hubfs/career-growth_blue.svg","public/assets/images/career-growth_blue.svg","765","images" +"hubfs/caseload-teamwork_blue.svg","public/assets/images/caseload-teamwork_blue.svg","1865","images" +"hubfs/casp-member-logo.webp","public/assets/images/casp-member-logo.webp","9932","images" +"hubfs/clinical-careers.webp","public/assets/images/clinical-careers.webp","6304","images" +"hubfs/clinical-director-rula-diab.png","public/assets/images/clinical-director-rula-diab.png","4361","images" +"hubfs/community-4-autism-logo-blue-1.png","public/assets/images/community-4-autism-logo-blue-1.png","16170","images" +"hubfs/competitive-compensation_blue.svg","public/assets/images/competitive-compensation_blue.svg","1191","images" +"hubfs/corporate-center-team-support.webp","public/assets/images/corporate-center-team-support.webp","3952","images" +"hubfs/diversity-inclusion-opportunity_blue.svg","public/assets/images/diversity-inclusion-opportunity_blue.svg","970","images" +"hubfs/ext/menu.png","public/assets/images/menu.png","105","images" +"hubfs/ext/next.svg","public/assets/images/next.svg","223","images" +"hubfs/ext/previous.svg","public/assets/images/previous.svg","216","images" +"hubfs/first-then-cards-seatbelt-ipad.png","public/assets/images/first-then-cards-seatbelt-ipad.png","34009","images" +"hubfs/flexible-scheduling_blue.svg","public/assets/images/flexible-scheduling_blue.svg","2860","images" +"hubfs/giveback-donation-gift.webp","public/assets/images/giveback-donation-gift.webp","129234","images" +"hubfs/how-to-support-playtime.png","public/assets/images/how-to-support-playtime.png","1755720","images" +"hubfs/icon-Eye_Contact.png","public/assets/images/icon-Eye_Contact.png","2051","images" +"hubfs/icon-Listening.png","public/assets/images/icon-Listening.png","2442","images" +"hubfs/icon-Playing.png","public/assets/images/icon-Playing.png","2787","images" +"hubfs/icon-Repetitive_Movement.png","public/assets/images/icon-Repetitive_Movement.png","3111","images" +"hubfs/icon-Social_Engagement.png","public/assets/images/icon-Social_Engagement.png","2586","images" +"hubfs/icon-Speach.png","public/assets/images/icon-Speach.png","6026","images" +"hubfs/integrated-aba-model_400x300.webp","public/assets/images/integrated-aba-model_400x300.webp","23050","images" +"hubfs/internships-practicum.webp","public/assets/images/internships-practicum.webp","6586","images" +"hubfs/learner-journey-step-1a.svg","public/assets/images/learner-journey-step-1a.svg","942","images" +"hubfs/learner-journey-step-2.svg","public/assets/images/learner-journey-step-2.svg","971","images" +"hubfs/learner-journey-step-3.svg","public/assets/images/learner-journey-step-3.svg","1226","images" +"hubfs/learner-journey-step-4.svg","public/assets/images/learner-journey-step-4.svg","1055","images" +"hubfs/learner-journey-step-5.svg","public/assets/images/learner-journey-step-5.svg","1751","images" +"hubfs/learner-journey-step-6.svg","public/assets/images/learner-journey-step-6.svg","1808","images" +"hubfs/learner-journey.webp","public/assets/images/learner-journey.webp","12868","images" +"hubfs/logo-BACB.png","public/assets/images/logo-BACB.png","12032","images" +"hubfs/logo-ahcccs.webp","public/assets/images/logo-ahcccs.webp","9802","images" +"hubfs/logo-az-dept-of-education.webp","public/assets/images/logo-az-dept-of-education.webp","14628","images" +"hubfs/logo-gcu.webp","public/assets/images/logo-gcu.webp","5350","images" +"hubfs/logo-optum.webp","public/assets/images/logo-optum.webp","5578","images" +"hubfs/logo-tricare-1.webp","public/assets/images/logo-tricare-1.webp","6000","images" +"hubfs/mail.svg","public/assets/images/mail.svg","233","images" +"hubfs/map-pin.svg","public/assets/images/map-pin.svg","230","images" +"hubfs/monthly-training_blue.svg","public/assets/images/monthly-training_blue.svg","484","images" +"hubfs/non-clinical-careers.webp","public/assets/images/non-clinical-careers.webp","6216","images" +"hubfs/phone-1.svg","public/assets/images/phone-1.svg","950","images" +"hubfs/play-appearance-infographic.png","public/assets/images/play-appearance-infographic.png","1593208","images" +"hubfs/playing-boy.webp","public/assets/images/playing-boy.webp","7568","images" +"hubfs/playing-girl.webp","public/assets/images/playing-girl.webp","8962","images" +"hubfs/proud-aia-staff.webp","public/assets/images/proud-aia-staff.webp","22084","images" +"hubfs/psychological-assessment-ages-2-5.pdf?hsLang=en","public/assets/downloads/psychological-assessment-ages-2-5.pdf","2215211","downloads" +"hubfs/psychological-assessment-ages-6+.pdf","public/assets/downloads/psychological-assessment-ages-6+.pdf","16939721","downloads" +"hubfs/raw_assets/public/@marketplace/MakeWebBetter/Academia/images/icons/envelope-blue.svg","public/assets/images/envelope-blue.svg","738","images" +"hubfs/raw_assets/public/@marketplace/MakeWebBetter/Academia/images/icons/location-blue.svg","public/assets/images/location-blue.svg","1544","images" +"hubfs/raw_assets/public/@marketplace/MakeWebBetter/Academia/images/icons/phone-blue.svg","public/assets/images/phone-blue.svg","1175","images" +"hubfs/rbt-toddler-play.webp","public/assets/images/rbt-toddler-play.webp","37442","images" +"hubfs/rula-diab.webp","public/assets/images/rula-diab.webp","26118","images" +"hubfs/scottsdale-ribbon-cutting.webp","public/assets/images/scottsdale-ribbon-cutting.webp","42416","images" +"hubfs/straw-gear.svg","public/assets/images/straw-gear.svg","463","images" +"hubfs/team-ayah-shahbander.webp","public/assets/images/team-ayah-shahbander.webp","13558","images" +"hubfs/team-barbara-samanich.webp","public/assets/images/team-barbara-samanich.webp","14566","images" +"hubfs/team-carol-harrington.webp","public/assets/images/team-carol-harrington.webp","14318","images" +"hubfs/team-eney-garcia.webp","public/assets/images/team-eney-garcia.webp","24834","images" +"hubfs/team-jennifer-bonefont.webp","public/assets/images/team-jennifer-bonefont.webp","12446","images" +"hubfs/team-jennifer-espinoza.webp","public/assets/images/team-jennifer-espinoza.webp","15876","images" +"hubfs/team-mahima-bedi.webp","public/assets/images/team-mahima-bedi.webp","14132","images" +"hubfs/team-mariah-marley.webp","public/assets/images/team-mariah-marley.webp","22392","images" +"hubfs/team-rachael-sanchez.webp","public/assets/images/team-rachael-sanchez.webp","16710","images" +"hubfs/team-rachel-crosby.webp","public/assets/images/team-rachel-crosby.webp","8318","images" +"hubfs/team-rula-diab.webp","public/assets/images/team-rula-diab.webp","14838","images" +"hubfs/team-timirah-clay.webp","public/assets/images/team-timirah-clay.webp","16496","images" +"hubfs/toddler-bcba-support.webp","public/assets/images/toddler-bcba-support.webp","11182","images" +"hubfs/united-healthcare-logo-1.webp","public/assets/images/united-healthcare-logo-1.webp","4368","images" diff --git a/www/reports/broken-links.md b/www/reports/broken-links.md new file mode 100644 index 0000000..3e4ca57 --- /dev/null +++ b/www/reports/broken-links.md @@ -0,0 +1,3 @@ +# Broken Links + +Rendered output is unavailable in the sandbox; source routes and public assets were audited. No broken internal source links were detected. diff --git a/www/reports/cleanup-log.md b/www/reports/cleanup-log.md new file mode 100644 index 0000000..6fdd7dc --- /dev/null +++ b/www/reports/cleanup-log.md @@ -0,0 +1,26 @@ +# Cleanup Log + +- Replaced HubSpot-generated wrappers, inline styles, scripts, analytics, and modules with reusable Astro components. +- Preserved canonical clean URLs while excluding local mirror query-string and AMP duplicates. +- Consolidated responsive `hs-fs` image variants to canonical `hubfs` assets where available. +- Excluded mirrored HubSpot CSS and JavaScript from the new public asset package. +- Self-hosted canonical images, SVGs, fonts, and PDFs from the mirror. +- Recreated navigation and footer from structured JSON. +- Recreated visible contact and consultation forms as static accessible HTML. +- Used the source palette: AIA blue `#254080`, dark blue, straw yellow, orange, and teal. +- Used the live site's locally mirrored Playfair Display headings, Rubik body copy, and Caveat accent font. +- Added multilingual collection and route structure with Arabic RTL support. +- Kept all extracted source content editable as Markdown. +- Replaced the initial generic rounded-card visual system with live-derived + `980px` content widths, compact `4px` controls, alternating cream/white + sections, navy skill band, source imagery, and the live header/footer + hierarchy. +- Rebuilt the homepage in the live section order and rebuilt shared service, + library-index, and blog-post families against live public references. +- Reused the same complete live-derived homepage layout for English and Spanish. +- Replaced the extracted linear team article with a dedicated live-derived team grid. +- Repaired mirror-rewritten PDF, lightbox, CTA, and relative content links. +- Limited language-switcher choices to translations that have generated routes. +- Verified and implemented the current production likes/views API contract. +- Added language-qualified content collection IDs to prevent English, Spanish, + and Arabic entries with the same slug from overwriting each other. diff --git a/www/reports/migration-summary.md b/www/reports/migration-summary.md new file mode 100644 index 0000000..0d402e2 --- /dev/null +++ b/www/reports/migration-summary.md @@ -0,0 +1,137 @@ +# Migration Summary + +## Status + +A maintainable Astro migration and substantial fidelity-first pass are +implemented. The live public site, not the wget mirror, was used as the +authority for the shared shell, English and Spanish homepages, service-page +family, team page, library indexes, and blog-post family. + +## Migrated Content and Assets + +- 46 English, 12 Spanish, and 7 Arabic library posts. +- 21 English, 9 Spanish, and 2 Arabic page records. +- One author record per language. +- 149 self-hosted images, 20 font files, and two PDF downloads. +- Current June and May 2026 English library articles are included. + +The raw mirror remains untouched. HubSpot-generated wrappers, analytics, +scripts, CSS, query-language duplicates, AMP variants, pagination, and author +archive variants are not carried into the Astro implementation. + +## Live-Source Fidelity Pass + +Live pages inspected during the pass include: + +- English and Spanish homepages +- ABA Therapy, Autism Evaluations, and Learner Social Club +- About, Team, and Client Consultation +- English and Arabic Library indexes +- Representative current library articles + +Implemented fidelity work includes: + +- Rebuilt the live two-tier header, navigation hierarchy, language controls, + utility links, footer columns, and contact information. +- Rebuilt the complete English and Spanish homepages in their live section + order using one reusable Astro component and self-hosted source assets. +- Rebuilt service pages around the live compact title banner and editorial + presentation, with current visible headings and working calls to action. +- Added a dedicated live-derived team card grid rather than presenting the + extracted team content as a generic article. +- Rebuilt library indexes and blog-post presentation around the live sidebar, + article list, byline, featured-image, and counter patterns. +- Replaced generic oversized cards, rounded controls, and marketing heroes + with live-derived typography, palette, widths, spacing, and compact controls. +- Corrected material live/mirror discrepancies found during the pass, + including current homepage ESA copy, testimonial content, and ABA copy. + +## URLs and Redirects + +Clean public URLs are preserved, including: + +- `/aba-therapy` +- `/autism-evaluations` +- `/learner-social-club` +- `/client-consultation` +- `/library` +- `/library/post-slug` +- available `/es/...` and `/ar/library/...` routes + +The generated sitemap contains 97 canonical URLs. Nginx rewrites exist only +for the brief aliases `/aba`, `/autismevaluations`, and `/learnersocialclub`. + +## Forms + +Visible consultation/contact-style pages render styled static HTML forms with +backend and spam-protection TODO comments. Submission is intentionally +disabled. Appointment and enrollment calls to action route to the static +consultation page rather than retaining the production Jotform backend. + +## Multilingual + +- Spanish has the full live-derived homepage, translated service pages, + library index, and available translated posts. +- Arabic has RTL support, a clearly marked placeholder landing page, the live + library family, and available Arabic posts. +- Language-switcher choices are emitted only when the corresponding Astro + route exists, preventing dead translated-route links. +- Arabic pages use `lang="ar"` and `dir="rtl"`; English and Spanish use LTR. +- No large Arabic translations were invented. + +## Likes and Views + +The post counter uses `PUBLIC_AIA_API_BASE`, defaulting to +`https://api.azinstitute4autism.com`. Its contract was verified against the +current live-site script: + +- `POST /stats/batch` for likes and views +- `POST /likes` to like +- `DELETE /likes/{slug}` to unlike + +It preserves cookie-backed liked state and degrades gracefully if the API is +unavailable. + +## SEO and Accessibility + +- Canonicals, Open Graph tags, Twitter card tags, semantic titles, and global + organization JSON-LD are emitted by shared layouts. +- Library-index canonicals and current visible page H1s are explicitly set. +- Extracted image alt text is retained where available. +- Semantic landmarks, skip link, labeled forms, keyboard-operable navigation, + language/direction attributes, and responsive layouts are present. + +## Validation Results + +- `npm install --ignore-scripts`: completed; 323 packages audited with one + moderate advisory. The current shell uses Node `20.17.0`, below the declared + `>=20.19.0`; `flake.nix` now selects Node 22. +- `npm run audit:links`: passed with zero broken internal source links. The + audit now checks generated routes, root-relative references, relative + Markdown links, and public assets when rendered output is unavailable. +- `npm run generate:sitemap`: passed; generated 97 URLs. +- `npm run generate:redirects`: passed. +- All migration `.mjs` tools and the sandbox DNS helper pass `node --check`. +- The Astro compiler parsed all 33 `.astro` files successfully. +- `npm run build`: blocked before compilation because this autonomous sandbox + denies `/etc/hosts`, causing `getaddrinfo EAI_AGAIN localhost`. +- `npm run build:sandbox`: bypasses that DNS lookup and reaches Vite, then the + sandbox rejects esbuild's required child process with `spawn EPERM`. +- Nix shell verification and `npm audit` retrieval were blocked by sandbox + proxy/cache network resets. + +Run `npm run build` outside the Codex sandbox with Node 20.19+ or Node 22 for +final production-build proof. + +## Manual Review + +- Perform full-page desktop and mobile visual comparisons for page-specific + layouts beyond the completed homepage, team, service, library, and article + families. +- Editorially review extracted long-form content for remaining mirror artifacts, + stale phone/email references, and heading hierarchy. +- Review all source alt text, keyboard behavior, screen-reader output, and + contrast with accessibility tooling. +- Have fluent reviewers approve Spanish content and Arabic RTL presentation. +- Select and connect a form backend with spam protection before launch. +- Validate like/view CORS, credentials, and production behavior after deployment. diff --git a/www/reports/nginx-rewrites.conf b/www/reports/nginx-rewrites.conf new file mode 100644 index 0000000..3c34ad8 --- /dev/null +++ b/www/reports/nginx-rewrites.conf @@ -0,0 +1,3 @@ +rewrite ^/aba$ /aba-therapy permanent; +rewrite ^/autismevaluations$ /autism-evaluations permanent; +rewrite ^/learnersocialclub$ /learner-social-club permanent; diff --git a/www/reports/redirect-map.csv b/www/reports/redirect-map.csv new file mode 100644 index 0000000..499025f --- /dev/null +++ b/www/reports/redirect-map.csv @@ -0,0 +1,4 @@ +from,to,status,reason +"/aba","/aba-therapy",301,"Brief alias to preserved mirror URL" +"/autismevaluations","/autism-evaluations",301,"Brief alias to preserved mirror URL" +"/learnersocialclub","/learner-social-club",301,"Brief alias to preserved mirror URL" diff --git a/www/reports/seo-audit.md b/www/reports/seo-audit.md new file mode 100644 index 0000000..170a305 --- /dev/null +++ b/www/reports/seo-audit.md @@ -0,0 +1,31 @@ +# SEO Audit + +## Preserved + +- Canonical clean paths verified from the live public site are preserved for core pages and library posts. +- Extracted titles, meta descriptions, H1 text, featured images, and image alt text are stored in content frontmatter. +- Shared templates emit canonical, Open Graph, and Twitter card metadata. +- Library index layouts emit language-correct canonical URLs. +- Blog posts emit article metadata and semantic publication dates. +- `robots.txt` and sitemap generation are included. +- The live navigation hierarchy, clean English/Spanish/Arabic routes, and + current library listing structure were checked against the public site during + the fidelity pass. +- Page-layout banners use the current visible public H1 rather than the longer + SEO title, and duplicate extracted page H1s were removed. + +## Cleanup + +- HubSpot `?hsLang=...` mirror duplicates are excluded from generated routes. +- AMP mirror variants are excluded because Astro pages are responsive and static. +- Blog pagination and author archive variants are not preserved as separate generated pages. +- Brief aliases `/aba`, `/autismevaluations`, and `/learnersocialclub` redirect to preserved source URLs. + +## Manual Review + +- Verify canonicals for pages not sampled during the live fidelity pass. +- Review titles and descriptions that may have been affected by incorrect HubSpot language canonicals. +- Organization JSON-LD is emitted globally; service-specific schema still + requires business review. +- Validate social preview images after deployment. +- Add page-specific JSON-LD only after business review of the appropriate schema. diff --git a/www/reports/url-inventory.csv b/www/reports/url-inventory.csv new file mode 100644 index 0000000..83653d0 --- /dev/null +++ b/www/reports/url-inventory.csv @@ -0,0 +1,98 @@ +source_file,url,language,type,title,description,h1 +"aba-therapy-intake-process.html","/aba-therapy-intake-process","en","page","Starting ABA Therapy Step-by-Step Guide | Arizona Institute for Autism","Discover how to begin ABA therapy at Arizona Institute for Autism. Our simple, supportive intake process guides your child toward growth and success.","Learner Intake Process" +"aba-therapy.html","/aba-therapy","en","page","Integrated ABA Therapy for Autism | Arizona Institute for Autism","Empower your child for life with one-on-one integrated ABA therapy. Book a free consultation and join our supportive autism community!","Behavioral" +"about.html","/about","en","page","About Us | Arizona Institute for Autism | Scottsdale","Arizona Institute for Autism (AIA) is a comprehensive wellness center offering behavioral health, education, and consultation for individuals with Autism.","About AIA" +"ar/library/aba-school-readiness-guide.html","/ar/library/aba-school-readiness-guide","ar","blog","العودة إلى المدرسة بسهولة | تدخلات ABA: تعزيز بالمقدمات والنتائج","خفّف توتر العودة إلى المدرسة وعزّز الاستعداد المدرسي باستراتيجيات بسيطة للمقدمات والنتائج، وتكتيكات ABA خطوة بخطوة يمكن لأي والد تطبيقها.","العودة إلى المدرسة بسهولة | تدخلات السلوك التحليلية (ABA) من خلال المقدمات والنتائج" +"ar/library/autism-self-advocacy-skills-aba.html","/ar/library/autism-self-advocacy-skills-aba","ar","blog","دليل تعليم مهارات الدفاع عن النفس في ABA","مكّن طفلك بعلاج ABA فردي في معهد أريزونا للتوحّد. احجز استشارة مجانية اليوم وابدأ رعاية مخصّصة للتوحّد!","دليل تعليم مهارات الدفاع عن النفس في ABA" +"ar/library/behavior-management-functions-guide.html","/ar/library/behavior-management-functions-guide","ar","blog","إتقان إدارة السلوك: اكتشف الوظائف الأربع للسلوك","اكتشف لماذا تحدث السلوكيات وكيفية تعليم بدائل إيجابية عبر دليلنا المبسّط. بادر الآن لروتينات أكثر سلاسة وتعلّم أسعد!","إتقان إدارة السلوك: اكتشف الوظائف الأربع للسلوك" +"ar/library/executive-functioning-skills-autism.html","/ar/library/executive-functioning-skills-autism","ar","blog","مهارات الوظائف التنفيذية والتوحّد","استراتيجيات وظائف تنفيذية قائمة على الأدلة للتوحّد: دعائم بصرية للتخطيط، وتنظيم الانفعالات، وضبط الاندفاع، وحلّ المشكلات.","مهارات الوظائف التنفيذية والتوحّد" +"ar/library/first-then-cards-autism-transitions.html","/ar/library/first-then-cards-autism-transitions","ar","blog","بطاقات أولاً/ثم: تمكين الانتقالات للأطفال المصابين بالتوحد","تعرّف على كيفية دعم بطاقات أولاً/ثم للانتقال السلس والسلوكيات الإيجابية لدى الأطفال المصابين بالتوحد. اكتشف نصائح عملية وموارد محلية في أريزونا.","بطاقات ""أولاً/ثم"": تسهيل الانتقال بين الأنشطة للأطفال المصابين بالتوحّد" +"ar/library/positive-reinforcement-techniques.html","/ar/library/positive-reinforcement-techniques","ar","blog","التعزيز الإيجابي في علاج تحليل السلوك التطبيقي (ABA) لتشجيع تطوير المهارات","تعلّم أساليب التعزيز الإيجابي الفعّالة لتشجيع السلوكيات المرغوبة لدى الأطفال. اكتشف نصائح وأدوات مرئية وأفضل الممارسات للآباء.","التعزيز الإيجابي في علاج تحليل السلوك التطبيقي (ABA) لتشجيع تطوير المهارات" +"ar/library/proactive-reactive-aba-strategies-guide.html","/ar/library/proactive-reactive-aba-strategies-guide","ar","blog","إتقان تقنيات التحليل السلوكي الاستباقية والتفاعلية– احجز استشارتك الآن","تعلم استراتيجيات الـ ABA الاستباقية والتفاعلية لخفض السلوكيات المشكلية وتعزيز النجاح. اقرأ الآن وحدد موعد استشارة مع معهد أريزونا للتوحد.","إتقان تقنيات التحليل السلوكي الاستباقية والتفاعلية– احجز استشارتك الآن" +"ar/library.html","/ar/library","ar","page","المكتبة وغرفة الأخبار | معهد أريزونا للتوحد","مقالات إخبارية حول علاج تحليل السلوك التطبيقي والتعليم الخاص، ودراسات حالة، ووصفات، ومقالات افتتاحية، ودروس تعليمية، وغيرها الكثير... لطلابنا المصابين بالتوحد وحولهم.","مكتبة معهد أريزونا للتوحد" +"autism-evaluations.html","/autism-evaluations","en","page","Accurate Autism Assessment for Children | Arizona Institute for Autism","Get comprehensive childhood autism evaluations in Scottsdale, AZ. Our expert team provides accurate assessments to support your child","Psychological" +"careers.html","/careers","en","page","Join Our Team | Autism Careers in AZ | Arizona Institute for Autism","Join our caring team. Arizona Institute for Autism is hiring compassionate professionals dedicated to supporting individuals with autism. Apply online now!","Employment Opportunities" +"client-consultation?hsLang=ar.html","/client-consultation","en","page","Client Consultation Form | Arizona Institute for Autism | Scottsdale","Schedule your free consultation with a Client Advocate at Arizona Institute for Autism to find out what we can do for your child diagnosed with autism.","Schedule Your Free Consultation" +"client-forms.html","/client-forms","en","page","Essential Forms for Autism Support | Arizona Institute for Autism","Conveniently access and download autism service forms from Arizona Institute for Autism. Get started right away with our simplified intake process.","Client Forms" +"contact.html","/contact","en","page","Contact AIA | Arizona Institute for Autism | Scottsdale","Reach out to learn more about our comprehensive wellness services for children with autism, including behavioral health, education, and consultation.","Contact AIA" +"donate-autism-giveback.html","/donate-autism-giveback","en","page","Help Autism Families Thrive | Donate to Arizona Institute for Autism","Empower families of children with autism. Donate now to help expand therapy, education, research, & community support. Your contribution transforms lives.","Giveback & Donate" +"employee-portal.html","/employee-portal","en","page","AIA Employee Portal | Arizona Institute for Autism","Information, forms, and resources to help guide employees during their tenure with Arizona Institute for Autism.","Employee Portal" +"es/aba-therapy-intake-process.html","/es/aba-therapy-intake-process","es","page","Guía paso a paso para comenzar la terapia ABA | Arizona Institute for Autism","Descubra cómo comenzar la terapia ABA en el Instituto de Autismo de Arizona. Nuestro proceso de admisión simple y de apoyo guía a su hijo hacia el crecimiento y el éxito.","Proceso de admisión de estudiantes" +"es/aba-therapy.html","/es/aba-therapy","es","page","Terapia ABA Integrada para el Autismo | Arizona Institute for Autism","Empodere a su hijo para la vida con terapia ABA integrada individualizada. ¡Reserva una consulta gratuita y únete a nuestra comunidad de apoyo para el autismo!","Conductual" +"es/autism-evaluations.html","/es/autism-evaluations","es","page","Evaluación precisa del autismo para niños | Arizona Institute for Autism","Obtenga evaluaciones integrales de autismo infantil en Scottsdale, AZ. Nuestro equipo de expertos proporciona evaluaciones precisas para apoyar el desarrollo único de su hijo.","Psicológicos" +"es/client-consultation?hsLang=es.html","/es/client-consultation","es","page","Formulario de Consulta del Cliente | Arizona Institute for Autism | Scottsdale","Programa tu consulta gratuita con un Defensor del Cliente en el Instituto de Autismo de Arizona para descubrir qué podemos hacer por tu hijo diagnosticado con autismo.","Programa tu consulta gratuita" +"es/contact.html","/es/contact","es","page","Contactar a AIA | Arizona Institute for Autism | Scottsdale","Comuníquese con nosotros para obtener más información sobre nuestros servicios integrales de bienestar para niños con autismo, que incluyen salud conductual, educación y consulta.","Contactar a AIA" +"es/index.html","/es","es","page","Terapia ABA cerca de mí | Arizona Institute for Autism | Scottsdale","Arizona Institute for Autism: centro de servicios de salud conductual y educación ubicado en Scottsdale. Atendemos a personas con autismo y a sus familias.","Salud Mental y Educación Especial" +"es/learner-social-club.html","/es/learner-social-club","es","page","Impulsa el funcionamiento emocional y social con Learner Social Club en AIA","Póngase en contacto con AIA para obtener un pase de prueba gratuito de 1 día y ver cómo el desarrollo social y emocional de su hijo puede beneficiarse de nuestro Learner Social Club de 8 a 17 años.","Sociológico" +"es/library/aba-school-readiness-arizona.html","/es/library/aba-school-readiness-arizona","es","blog","Preparación escolar ABA en AZ | Academia Preparatoria AIA (2 a 6 años)","Programa de preparación escolar temprana que une ABA y currículo acreditado para niños de 2 a 6 años en habilidades académicas, sociales y de comunicación.","Ya se inscriben alumnos: Academia Preparatoria AIA para niños de 2 a 6 años" +"es/library/autism-evaluation-diagnosis-arizona-parent-guide.html","/es/library/autism-evaluation-diagnosis-arizona-parent-guide","es","blog","Evaluación del Autismo en Arizona: Guía Paso a Paso para Padres","Aprende los signos del autismo según la edad, quién puede diagnosticar en Arizona y los próximos pasos después del diagnóstico. Obtén apoyo de ABA. Programa una consulta gratuita.","Evaluación del Autismo en Arizona: Guía Paso a Paso para Padres" +"es/library/autism-evaluation-what-to-expect.html","/es/library/autism-evaluation-what-to-expect","es","blog","Qué esperar en la primera evaluación de autismo de su hijo","Aprenda qué sucede antes, durante y después de una evaluación de autismo en un niño. Vea a quién conocerá, cuánto tiempo lleva y cómo los resultados guían los siguientes pasos.","Qué esperar en la primera evaluación de autismo de su hijo" +"es/library/autism-family-self-care-tips.html","/es/library/autism-family-self-care-tips","es","blog","Descubre consejos para el autocuidado de padres de niños con autismo","Toma las riendas de tu bienestar como cuidador de una persona con autismo. Explora estrategias sencillas para reducir el estrés, mejorar la salud mental y prosperar en tu función.","Descubre consejos para el autocuidado de padres de niños con autismo" +"es/library/autism-self-advocacy-skills-aba.html","/es/library/autism-self-advocacy-skills-aba","es","blog","Desbloqueando la independencia para niños con autismo a través de la autodefensa ABA","Empodere a su hijo con terapia ABA individualizada en el Instituto de Autismo de Arizona. ¡Reserva una consulta gratuita y comienza hoy mismo la atención personalizada para el autismo!","Guía para enseñar la autodefensa en el ABA" +"es/library/emotional-regulation-aba.html","/es/library/emotional-regulation-aba","es","blog","Por qué la regulación emocional debería ser el corazón de cada programa de ABA","Por qué la regulación emocional debe guiar la terapia ABA. Conozca pasos de corregulación, herramientas de afrontamiento y consejos para familias del Instituto de Autismo de Arizona.","Por qué la regulación emocional debería ser el corazón de cada programa de ABA" +"es/library/enhancing-generalization-skills.html","/es/library/enhancing-generalization-skills","es","blog","Mejorando la generalización para un impacto más amplio en el autismo","Mejorar la generalización en el autismo implica generalizaciones de estímulos, respuestas y situaciones, asegurando que los comportamientos aprendidos se apliquen en diversas situaciones.","Mejorando la generalización para un impacto más amplio en el autismo" +"es/library/executive-functioning-skills-autism.html","/es/library/executive-functioning-skills-autism","es","blog","Habilidades de funcionamiento ejecutivo y autismo: estrategias de éxito","Estrategias basadas en evidencia para la función ejecutiva en el autismo: apoyos visuales para la planificación, la regulación emocional, el control de impulsos y la resolución de problemas.","Habilidades de funcionamiento ejecutivo y autismo" +"es/library/first-then-cards-autism-transitions.html","/es/library/first-then-cards-autism-transitions","es","blog","Tarjetas Primero/Después : Empoderando las transiciones para niños autistas","Aprenda cómo Primero/después, las tarjetas apoyan transiciones más suaves y comportamientos positivos en niños autistas. Descubre consejos prácticos y recursos locales de Arizona.","Tarjetas Primero/Después : Empoderando las transiciones para niños autistas" +"es/library/parents-guide-to-autism-and-aba.html","/es/library/parents-guide-to-autism-and-aba","es","blog","Cómo ayudar a su hijo autista: Una guía para padres y cuidadores","Learn practical autism and ABA-informed strategies parents and caregivers can use to support communication, routines, behavior, and regulation.","Guía de Autismo para Padres y Cuidadores" +"es/library/positive-reinforcement-techniques.html","/es/library/positive-reinforcement-techniques","es","blog","Refuerzo positivo en la terapia ABA para fomentar el desarrollo de habilidades","Aprenda técnicas efectivas de refuerzo positivo para fomentar el comportamiento deseado en los niños. Descubre consejos, herramientas visuales y mejores prácticas para padres.","Refuerzo positivo en la terapia ABA para fomentar el desarrollo de habilidades" +"es/library/social-pragmatic-communication-autism.html","/es/library/social-pragmatic-communication-autism","es","blog","Por qué mi hijo puede hablar pero aún tiene dificultades sociales","Tu hijo puede hablar, pero tiene dificultades sociales. Vea cómo el lenguaje pragmático, la inferencia y las señales no verbales moldean la conexión, y cómo el ABA desarrolla habilidades.","Por qué mi hijo puede hablar pero aún tiene dificultades sociales" +"es/library.html","/es/library","es","page","Biblioteca y Noticias | Instituto de Autismo de Arizona","Noticias sobre terapia ABA y educación especial, casos de estudio, recetas, editoriales y tutoriales para y sobre nuestros estudiantes con autismo.","La Biblioteca en AZ Institute for Autism" +"es/services.html","/es/services","es","page","Servicios pediátricos de autismo conductuales, psicológicos y sociológicos","Descubra servicios integrales para el autismo para niños, desde terapia ABA integrativa hasta apoyo educativo y familiar, en el Instituto de Autismo de Arizona.","Servicios ABA y Educativos" +"faqs.html","/faqs","en","page","Helpful Autism Diagnosis & Therapy FAQs | Arizona Institute for Autism","Discover how ABA therapy works at Arizona Institute for Autism. Explore assessments, program design, and prompt fading FAQs to empower your child today.","ABA Therapy Helpline" +"index.html","/","en","page","ABA Therapy Near Me | Arizona Institute for Autism | Scottsdale","Arizona Institute for Autism: center for behavioral health & education services located in Scottsdale. We serve individuals with Autism and their families.","Behavioral Health & Special Education" +"insurance.html","/insurance","en","page","Arizona Autism Therapy Insurance Guide | AZ Institute for Autism","Take the first step to affordable autism care for your child. Verify insurance benefits and coverage quickly and easily with Arizona Institute for Autism.","Insurance Guide" +"learner-social-club.html","/learner-social-club","en","page","Boost Emotional and Social Functioning with Learner Social Club at AIA","Contact AIA for a free 1-day trial pass to see how your child","Sociological" +"library/aac-visual-supports-autism.html","/library/aac-visual-supports-autism","en","blog","AAC and Visual Supports 101: Helping Your Child Be Heard","Learn how AAC and visual supports help autistic children communicate, reduce frustration, and build routines at home, school, and ABA therapy.","AAC and Visual Supports 101: Helping Your Child Be Heard" +"library/aba-school-readiness-arizona.html","/library/aba-school-readiness-arizona","en","blog","ABA School Readiness in Arizona | AIA Preparatory Academy (Ages 2–6)","Early school readiness program mixing ABA methods with an accredited curriculum to help children ages 2–6 with academic, social, and communication skills.","Now Enrolling: AIA Preparatory Academy for Children Ages 2–6" +"library/aba-school-readiness-guide.html","/library/aba-school-readiness-guide","en","blog","Ease Back-to-School Time | ABA Antecedent & Consequence Interventions","Ease back-to-school stress and unlock school readiness with simple antecedent and consequence strategies and step‑by‑step ABA tactics any parent can apply.","Ease Back-to-School Time | ABA Antecedent & Consequence Interventions" +"library/aba-therapy-benefits?hsLang=en-us.html","/library/aba-therapy-benefits","en","blog","The Benefits of ABA Therapy for Children with Autism","Discover how ABA therapy, tailored to each child","The Benefits of ABA Therapy for Children with Autism" +"library/aba-therapy-dtt-net-guide?hsLang=en-us.html","/library/aba-therapy-dtt-net-guide","en","blog","Learn About DTT and NET Methods for More Effective ABA Therapy","Learn how Discrete Trial Training (DTT) and Natural Environment Training (NET) help to create comprehensive ABA therapy plans tailored to individual needs.","Learn About DTT and NET Methods for More Effective ABA Therapy" +"library/aba-therapy-prompting-parenting-benefits?hsLang=en-us.html","/library/aba-therapy-prompting-parenting-benefits","en","blog","Benefits of Prompting & Parenting in ABA Therapy","Empower yourself as a parent and enhance your child’s ABA therapy journey. Learn to implement prompting strategies for better results and faster progress.","Benefits of Prompting & Parenting in ABA Therapy" +"library/aba-therapy-summer-routine-tips.html","/library/aba-therapy-summer-routine-tips","en","blog","How to Support ABA Therapy Over Summer Break","Help your child thrive this summer with structured ABA routines, reinforcement tips, and support from the Arizona Institute for Autism.","How to Support ABA Therapy Over Summer Break" +"library/aba-toilet-training-child-autism.html","/library/aba-toilet-training-child-autism","en","blog","Guide: Simple ABA Techniques for Toilet Training Children with Autism","Empower your autistic child to achieve confidence and independence in their daily routines by using these simple ABA-based potty training methods.","Guide: Simple ABA Techniques for Toilet Training Children with Autism" +"library/aia-world-autism-community-day-celebration.html","/library/aia-world-autism-community-day-celebration","en","blog","AIA’s World Autism Community Day of Celebration","Join AIA on April 1st at Scottsdale Ranch Park to celebrate World Autism Month and support neurodiversity. Learn about the event and how to participate.","AIA’s World Autism Community Day of Celebration" +"library/asd-sensory-friendly-recipe-thanksgiving-pumpkin-cake.html","/library/asd-sensory-friendly-recipe-thanksgiving-pumpkin-cake","en","blog","ASD Sensory-Friendly Thanksgiving Recipe: Pumpkin Dump Cake","Our Thanksgiving recipe is crafted for sensory sensitivities, ensuring a delightful meal for individuals with ASD. Celebrate inclusively and deliciously.","ASD Sensory-Friendly Thanksgiving Recipe: Pumpkin Dump Cake" +"library/asd-sensory-friendly-recipes-pancakes.html","/library/asd-sensory-friendly-recipes-pancakes","en","blog","ASD Sensory-Friendly Recipes: Pancakes","Discover sensory-friendly pancake recipes tailored for children with autism, including chocolate chip and blueberry variations, to make mealtime enjoyable.","ASD Sensory-Friendly Recipes: Pancakes" +"library/autism-evaluation-diagnosis-arizona-parent-guide.html","/library/autism-evaluation-diagnosis-arizona-parent-guide","en","blog","Autism Evaluation in Arizona: A Parent's Step-by-Step Guide","Learn autism signs by age, who can diagnose in Arizona, and next steps after diagnosis. Get ABA, speech, and OT support. Schedule a free consultation.","Autism Evaluation in Arizona: A Parent's Step-by-Step Guide" +"library/autism-evaluation-what-to-expect.html","/library/autism-evaluation-what-to-expect","en","blog","What to Expect at Your Child’s First Autism Evaluation","Learn what happens before, during, and after a child’s autism evaluation. See who you’ll meet, how long it takes, and how results guide next steps.","What to Expect at Your Child’s First Autism Evaluation" +"library/autism-fall-break-routine-tips-halloween-thanksgiving.html","/library/autism-fall-break-routine-tips-halloween-thanksgiving","en","blog","Autism and Fall Break: Routines, Halloween, and Thanksgiving Tips","Help your child with autism enjoy fall break. Use visual schedules, First/Then cards, and sensory supports for Halloween and Thanksgiving without stress.","Autism and Fall Break: How to Keep Routines Calm and Predictable" +"library/autism-family-self-care-tips.html","/library/autism-family-self-care-tips","en","blog","Discover Self‑Care Hacks for Parents of Children with Autism","Take charge of your wellness as an autism caregiver. Explore simple strategies to reduce stress, improve mental health, and thrive in your role.","Discover Self‑Care Hacks for Parents of Children with Autism" +"library/autism-friendships-social-play-support.html","/library/autism-friendships-social-play-support","en","blog","Supporting Friendships and Social Play for Children with Autism","Learn how to support friendships and social play for autistic children. Discover practical tips for playdates, leveraging special interests, and ABA therapy.","Supporting Friendships and Social Play for Children with Autism" +"library/autism-self-advocacy-skills-aba.html","/library/autism-self-advocacy-skills-aba","en","blog","Unlock Independence for Children with Autism Through ABA Self‑Advocacy","Empower your child with individualized ABA therapy at Arizona Institute for Autism. Book a free consultation and kickstart personalized autism care today!","Guide to Teaching Self‑Advocacy in ABA" +"library/autism-therapy-rapport-strategies?hsLang=en-us.html","/library/autism-therapy-rapport-strategies","en","blog","Learn the Secrets to Effective Rapport Building in ABA Therapy","Discover proven strategies to build rapport and support children during ABA therapy sessions for fun, effective learning with increased engagement.","Learn the Secrets to Effective Rapport Building in ABA Therapy" +"library/behavior-management-functions-guide?hsLang=en-us.html","/library/behavior-management-functions-guide","en","blog","Master Behavior Management: Discover the Four Functions of Behavior","Discover why behaviors happen and how to teach positive replacements with our simple guide. Take action now for smoother routines and happier learning!","Master Behavior Management: Discover the Four Functions of Behavior" +"library/behavior-modification-techniques-reinforcement-theory?hsLang=en-us.html","/library/behavior-modification-techniques-reinforcement-theory","en","blog","The Ultimate Guide to Behavior Modification Techniques & Reinforcement Theory","Explore reinforcement theory and its application in behavior modification techniques, focusing on strategies to encourage positive behaviors and reduce negative ones.","The Ultimate Guide to Behavior Modification Techniques & Reinforcement Theory" +"library/communication-social-skills-autistic-children-guide.html","/library/communication-social-skills-autistic-children-guide","en","blog","Building Communication & Social Skills in Autistic Children","Learn how to build communication and social skills in autistic children. Discover practical strategies, AAC tools, and ABA techniques for daily connection.","Building Communication & Social Skills in Autistic Children: A Practical Guide for Families" +"library/community-highlight-meet-rula-diab?hsLang=en-us.html","/library/community-highlight-meet-rula-diab","en","blog","Community Highlights: Meet Rula Diab of Arizona Institute for Autism","Read about Rula Diab","Community Highlights: Meet Rula Diab of Arizona Institute for Autism" +"library/critical-thinking-skills.html","/library/critical-thinking-skills","en","blog","Critical Thinking Skills for Children with Autism","Enhance critical thinking in children with autism through tailored strategies that promote problem-solving, perspective-taking, and adaptability.","Critical Thinking Skills for Children with Autism" +"library/early-signs-autism-by-age.html","/library/early-signs-autism-by-age","en","blog","Early Signs of Autism by Age: 12 Months to 4 Years","Learn early autism signs by age (12–24 months and 2–4 years), what patterns matter most, and how screening and evaluations can help.","Early Signs of Autism by Age: 12 Months to 4 Years" +"library/emotional-regulation-aba.html","/library/emotional-regulation-aba","en","blog","Why Emotional Regulation Should Be the Heart of Every ABA Program","Why emotional regulation should lead ABA therapy. Learn co-regulation steps, coping tools, and family tips from the Arizona Institute for Autism.","Why Emotional Regulation Should Be the Heart of Every ABA Program" +"library/enhancing-generalization-skills?hsLang=en-us.html","/library/enhancing-generalization-skills","en","blog","Enhancing Generalization for Broader Impact in Autism","Enhancing generalization in autism involves stimulus, response, and situation generalizations, ensuring learned behaviors apply across various situations.","Enhancing Generalization for Broader Impact in Autism" +"library/executive-functioning-skills-autism.html","/library/executive-functioning-skills-autism","en","blog","Executive Functioning Skills & Autism: Success Strategies Across Ages","Evidence-based executive functioning strategies for autism: visual supports for planning, emotion regulation, impulse control & problem solving.","Executive Functioning Skills and Autism" +"library/first-then-cards-autism-transitions.html","/library/first-then-cards-autism-transitions","en","blog","First/Then Cards: Empowering Transitions for Autistic Children","Learn how First/Then cards support smoother transitions and positive behaviors in autistic children. Discover practical tips and local Arizona resources.","First/Then Cards: Empowering Transitions for Autistic Children" +"library/heart-full-of-gratitude.html","/library/heart-full-of-gratitude","en","blog","Heart Full of Gratitude","Clinic Director Rula Diab reflects back on her journey so far with Arizona Institute for Autism and all of the awesome people that make it great.","Heart Full of Gratitude" +"library/individualized-aba-therapy.html","/library/individualized-aba-therapy","en","blog","Personalized ABA Therapy Plans | Schedule Your Free Consultation","Empower your child with individualized ABA therapy at Arizona Institute for Autism. Book a free consultation and kickstart personalized autism care today!","Individualized Care Plans in ABA Therapy" +"library/integrated-aba-model-announcement?hsLang=en-us.html","/library/integrated-aba-model-announcement","en","blog","Arizona Institute for Autism Adopts an Integrated ABA Model","Arizona Institute for Autism has transitioned to an integrated Applied Behavior Analysis model, enhancing comprehensive care for children with autism.","Arizona Institute for Autism Adopts an Integrated ABA Model" +"library/managing-aggressive-behavior-outbursts.html","/library/managing-aggressive-behavior-outbursts","en","blog","Managing Aggressive Behavior Outbursts and Proper Communication with Your Child During those Moments","Learn strategies to manage aggressive behaviors in children with autism by promoting functional communication and providing positive reinforcement.","Managing Aggressive Behavior Outbursts and Proper Communication with Your Child During those Moments" +"library/meet-rula-diab-bcba?hsLang=en-us.html","/library/meet-rula-diab-bcba","en","blog","Meet Rula Diab | Board Certified Behavior Analyst (BCBA)","Find out how Rula Diab, a compassionate, certified behavior analyst, makes a difference in Arizona. Read to empower your path for positive outcomes now!","Meet Rula Diab | Board Certified Behavior Analyst (BCBA)" +"library/new-aia-scottsdale-office?hsLang=en-us.html","/library/new-aia-scottsdale-office","en","blog","Integrity, Empowerment and Excellence: Arizona Institute for Autism expands to new office","Discover how Arizona Institute for Autism","Integrity, Empowerment and Excellence: Arizona Institute for Autism expands to new office" +"library/new-year-2024-autism-holiday-tips?hsLang=en-us.html","/library/new-year-2024-autism-holiday-tips","en","blog","New Year 2024: Holiday Tips for Autism Support & Awareness","Learn simple, effective strategies to help your autistic child thrive in 2024. Reflect on their progress and set new goals for growth in the New Year.","New Year 2024: Holiday Tips for Autism Support & Awareness" +"library/new-year-goals-2023.html","/library/new-year-goals-2023","en","blog","New Year Goals for Our Children with Autism","The New Year offers an opportunity to reflect, plan, and set goals for children with autism, promoting healthy growth and development to last a lifetime.","New Year Goals for Our Children with Autism" +"library/november-2022-aia-update.html","/library/november-2022-aia-update","en","blog","November AIA Update","Nov 2022: Arizona Institute for Autism expresses gratitude to families for their support and commitment, highlighting the community","November AIA Update" +"library/parents-guide-to-autism-and-aba.html","/library/parents-guide-to-autism-and-aba","en","blog","How to Help Your Autistic Child: A Parent & Caregiver Guide","Learn practical autism and ABA-informed strategies parents and caregivers can use to support communication, routines, behavior, and regulation.","Autism Guide for Parents and Caregivers" +"library/play-leisure-skills?hsLang=en-us.html","/library/play-leisure-skills","en","blog","Autism Play: Helping Autistic Children Build Play and Leisure Skills","Learn how autistic children play, why play skills matter, and how parents can support functional, sensory, pretend, and social play.","Autism Play: Helping Autistic Children Build Play and Leisure Skills" +"library/positive-reinforcement-techniques.html","/library/positive-reinforcement-techniques","en","blog","Positive Reinforcement in ABA Therapy to Encourage Skill Development","Learn effective positive reinforcement techniques to encourage desired behavior in children. Discover tips, visual tools, & best practices for parents.","Positive Reinforcement in ABA Therapy to Encourage Skill Development" +"library/proactive-reactive-aba-strategies-guide.html","/library/proactive-reactive-aba-strategies-guide","en","blog","Master Proactive & Reactive ABA Techniques – Schedule a Consultation","Learn proactive and reactive ABA strategies to cut problem behaviors and boost success. Read now and schedule a consult with Arizona Institute for Autism.","Master Proactive & Reactive ABA Techniques – Schedule a Consultation" +"library/reduce-behavior-management.html","/library/reduce-behavior-management","en","blog","4 Ways on How to Reduce Behavior Management","Children may show challenging behavior patterns due to frustration or sensory overload. Strategic support of communications skills can help prevent issues.","4 Ways on How to Reduce Behavior Management" +"library/repetitive-behavior?hsLang=en-us.html","/library/repetitive-behavior","en","blog","Repetitive Behaviors with Children Diagnosed with Autism","Understanding and managing repetitive behaviors in children with autism spectrum disorder (ASD), including causes, types, and intervention strategies.","Repetitive Behaviors with Children Diagnosed with Autism" +"library/sensory-processing?hsLang=en-us.html","/library/sensory-processing","en","blog","Understanding Sensory Processing in the Context of ABA Therapy","Learn to address sensory challenges for children diagnosed with autism through customized ABA therapy. Expert tips for parents and caregivers inside.","Understanding Sensory Processing in the Context of ABA Therapy" +"library/social-pragmatic-communication-autism.html","/library/social-pragmatic-communication-autism","en","blog","Why My Child Can Talk but Still Struggles Socially","Your child can talk yet struggles socially. See how pragmatic language, inference, and nonverbal cues shape connection, and how ABA builds skills.","Why My Child Can Talk but Still Struggles Socially" +"library/understanding-autism-support.html","/library/understanding-autism-support","en","blog","Navigating the Autism Journey: Understanding and Supporting Our Children with Autism","Explore effective strategies and therapies to lift up and support children with autism, fostering their development while enhancing their quality of life.","Navigating the Autism Journey: Understanding and Supporting Our Children with Autism" +"library.html","/library","en","page","Library & News Room | Arizona Institute for Autism","ABA therapy and special education news articles, case studies, recipes, editorials, tutorials, and more… for and about our learners with autism.","The Library at AZ Institute for Autism" +"privacy-policy?hsLang=ar.html","/privacy-policy","en","page","Privacy Policy | Arizona Institute for Autism","Discover how the Arizona Institute for Autism protects your data. Our Privacy Policy details collection, usage, and security to keep your information safe.","Privacy Policy" +"referrals.html","/referrals","en","page","Submit Your Autism Referral Online | Arizona Institute for Autism","Arizona Institute for Autism simplifies autism referrals. Submit online now to connect families with the compassionate autism care specialists of AIA.","Physician & Insurer Referrals" +"schedule-consultation?hsLang=en-us.html","/schedule-consultation","en","page","Contact Arizona Institute for Autism for Your Free ASD Consultation","Reach out to discuss autism treatment for your child with AZ Institute for Autism. Early intervention makes a difference; schedule your consultation today!","Reach Out for Your Free Consultation" +"services.html","/services","en","page","Behavioral, Psychological, and Sociological Pediatric Autism Services","Discover comprehensive autism services for children, from integrative ABA therapy to educational and family support, at the Arizona Institute for Autism.","ABA & Educational Services" +"team.html","/team","en","page","Meet Our Dedicated Autism Support Team | Arizona Institute for Autism","Meet the all-star team of compassionate, experienced professionals transforming personalized autism therapy and education at Arizona Institute for Autism.","Meet the Team" +"tour?hsLang=ar.html","/tour","en","page","Tour Arizona's Premier Autism Therapy Center | Schedule Your AIA Visit","Schedule your tour today and discover why Arizona Institute for Autism is the trusted choice for compassionate autism therapy and supportive care.","Schedule a Guided Tour" +"generated-placeholder","/ar","ar","page","معهد أريزونا للتوحد","موارد ودعم للأسر والأطفال المصابين بالتوحد.","" diff --git a/www/src/assets/images/.gitkeep b/www/src/assets/images/.gitkeep new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/www/src/assets/images/.gitkeep @@ -0,0 +1 @@ + diff --git a/www/src/components/BlogCard.astro b/www/src/components/BlogCard.astro new file mode 100644 index 0000000..1e8c4e0 --- /dev/null +++ b/www/src/components/BlogCard.astro @@ -0,0 +1,14 @@ +--- +const { post, prefix = '' } = Astro.props; +const href = `${prefix}/library/${post.data.slug}`.replace('//', '/'); +const readMore = { en: 'Read More', es: 'Leer Más', ar: 'اقرأ المزيد' }[post.data.lang] || 'Read More'; +--- +
+ {post.data.featuredImage && {post.data.alt} +
+

Rula Diab, Clinical Director, M.Ed, BCBA, LBA

+

{post.data.title}

+

{post.data.description}

+ {readMore} +
+
diff --git a/www/src/components/ConsultationCTA.astro b/www/src/components/ConsultationCTA.astro new file mode 100644 index 0000000..f4a8e6c --- /dev/null +++ b/www/src/components/ConsultationCTA.astro @@ -0,0 +1,6 @@ +
+
+

Start the conversation

Find the right support for your learner.

+ Schedule a Free Consultation +
+
diff --git a/www/src/components/FAQAccordion.astro b/www/src/components/FAQAccordion.astro new file mode 100644 index 0000000..f57e21c --- /dev/null +++ b/www/src/components/FAQAccordion.astro @@ -0,0 +1,4 @@ +--- +const { question, answer } = Astro.props; +--- +
{question}

{answer}

diff --git a/www/src/components/Footer.astro b/www/src/components/Footer.astro new file mode 100644 index 0000000..e2ead42 --- /dev/null +++ b/www/src/components/Footer.astro @@ -0,0 +1,44 @@ +--- +import site from '../data/site.json'; +const year = new Date().getFullYear(); +const { lang = 'en' } = Astro.props; +const labels = lang === 'es' + ? { about: 'Información', overview: 'Acerca de AIA', team: 'Equipo', careers: 'Carreras', giveback: 'Devolver', resources: 'Recursos', forms: 'Formularios', insurance: 'Seguros', referrals: 'Referencias', employee: 'Portal para empleados', contact: 'Contáctanos' } + : { about: 'About', overview: 'Overview', team: 'Team', careers: 'Careers', giveback: 'Giveback', resources: 'Resources', forms: 'Forms', insurance: 'Insurance', referrals: 'Referrals', employee: 'Employee Portal', contact: 'Get In Touch' }; +--- + diff --git a/www/src/components/FormShell.astro b/www/src/components/FormShell.astro new file mode 100644 index 0000000..81f291b --- /dev/null +++ b/www/src/components/FormShell.astro @@ -0,0 +1,19 @@ +--- +const { title = 'Schedule Your Free Consultation' } = Astro.props; +--- +
+
+

Get started

{title}

Tell our client advocates how we can help. Submission is disabled until a production form backend is selected.

+
+ + + + + + + + +

Online submission is not yet connected. Please call (480) 687-7099.

+
+
+
diff --git a/www/src/components/Header.astro b/www/src/components/Header.astro new file mode 100644 index 0000000..80c0166 --- /dev/null +++ b/www/src/components/Header.astro @@ -0,0 +1,26 @@ +--- +import LanguageSwitcher from './LanguageSwitcher.astro'; +import MainNav from './MainNav.astro'; +import MobileNav from './MobileNav.astro'; +const { lang = 'en' } = Astro.props; +const utility = lang === 'es' + ? { credit: 'Solicitar CareCredit', bill: 'Pagar mi factura' } + : { credit: 'Apply Care Credit', bill: 'Pay My Bill' }; +--- + diff --git a/www/src/components/Hero.astro b/www/src/components/Hero.astro new file mode 100644 index 0000000..008e0f6 --- /dev/null +++ b/www/src/components/Hero.astro @@ -0,0 +1,15 @@ +--- +interface Props { title: string; eyebrow?: string; description?: string; image?: string; alt?: string; } +const { title, eyebrow, description, image, alt = '' } = Astro.props; +--- +
+
+
+ {eyebrow &&

{eyebrow}

} +

{title}

+ {description &&

{description}

} + Get Started +
+ {image && {alt}} +
+
diff --git a/www/src/components/HomePage.astro b/www/src/components/HomePage.astro new file mode 100644 index 0000000..b0aeaa1 --- /dev/null +++ b/www/src/components/HomePage.astro @@ -0,0 +1,74 @@ +--- +import BaseLayout from '../layouts/BaseLayout.astro'; +const { lang = 'en' } = Astro.props; +const es = lang === 'es'; +const consultation = es ? '/es/client-consultation' : '/client-consultation'; +const title = es ? 'Terapia ABA cerca de mí | Arizona Institute for Autism | Scottsdale' : 'ABA Therapy Near Me | Arizona Institute for Autism | Scottsdale'; +const description = es + ? 'Arizona Institute for Autism: centro de servicios de salud conductual y educación ubicado en Scottsdale. Atendemos a personas con autismo y a sus familias.' + : 'Arizona Institute for Autism provides behavioral health and education services for individuals with autism and their families.'; +const canonical = `https://www.azinstitute4autism.com${es ? '/es' : '/'}`; +const services = es + ? ['Apoyo a la defensa del autismo', 'Apoyo a la evaluación y valoración', 'Servicios de Autismo para Niños', 'Servicios Comunitarios de Autismo', 'Servicios de Capacitación Familiar'] + : ['Autism Advocacy Support', 'Evaluation & Assessment Support', 'Children Autism Services', 'Community Autism Services', 'Family Training Services']; +const commitments = es + ? ['En el centro', 'En casa', 'Tratamiento de terapia integrada', 'Intervención temprana', 'Preparación Académica', 'Supervisión clínica', 'Consulta de padres'] + : ['In-Center', 'In-Home', 'Integrated Therapy Treatment', 'Early Intervention', 'Academic Readiness', 'Clinical Supervision', 'Parent Consultation']; +const skills = es + ? [['icon-Social_Engagement.png', 'Compromiso social'], ['icon-Eye_Contact.png', 'Contacto visual'], ['icon-Listening.png', 'Escuchar'], ['icon-Repetitive_Movement.png', 'Movimiento repetitivo'], ['icon-Playing.png', 'Jugando'], ['icon-Speach.png', 'Discurso']] + : [['icon-Social_Engagement.png', 'Social Engagement'], ['icon-Eye_Contact.png', 'Eye Contact'], ['icon-Listening.png', 'Listening'], ['icon-Repetitive_Movement.png', 'Repetitive Movement'], ['icon-Playing.png', 'Playing'], ['icon-Speach.png', 'Speech']]; +const process = es + ? [['learner-journey-step-1a.svg', 'Complete el formulario de información del estudiante'], ['learner-journey-step-2.svg', 'Hable con un Defensor del Cliente'], ['learner-journey-step-3.svg', 'Llenar y firmar un paquete de admisión de clientes'], ['learner-journey-step-4.svg', 'Verificar la información de facturación, seguro y beneficios'], ['learner-journey-step-5.svg', 'Programar una evaluación'], ['learner-journey-step-6.svg', 'Colaborar en un Plan de Cuidados']] + : [['learner-journey-step-1a.svg', 'Fill Out Learner Information Form'], ['learner-journey-step-2.svg', 'Speak with a Client Advocate'], ['learner-journey-step-3.svg', 'Fill and Sign a Client Intake Packet'], ['learner-journey-step-4.svg', 'Verify Billing and Insurance Information and Benefits'], ['learner-journey-step-5.svg', 'Schedule an Assessment'], ['learner-journey-step-6.svg', 'Collaborate on a Care Plan']]; +const logos = ['bluecrossblueshield-logo-1.webp', 'aetna.png', 'logo-optum.webp', 'logo-tricare-1.webp', 'logo-ahcccs.webp', 'united-healthcare-logo-1.webp']; +--- + +
+
+
+

{es ? 'Los principales expertos de Arizona' : "Arizona's Leading Experts"}

+

{es ? <>Salud Mental y
Educación Especial : <>Behavioral Health
& Special
Education}

+

{es ? 'Aquí en el Instituto de Autismo de Arizona (AIA), brindamos atención clínica experta para niños y adolescentes con diagnóstico de autismo. Actualmente atendemos a familias en las áreas metropolitanas de Scottsdale, Gilbert, Mesa, Tempe y Phoenix.' : 'Here at the Arizona Institute for Autism (AIA), we provide expert clinical care for children and teens who have an autism diagnosis. We currently serve families in Scottsdale, Gilbert, Mesa, Tempe, and Phoenix Metropolitan areas.'}

+ {es ? 'Empezar' : 'Get Started'} +
+ BCBA therapist with happy toddler +
+
+ +
+
+ {es +
+

{es ? 'Servicios de terapia ABA para niños y adolescentes diagnosticados con TEA' : 'ABA Therapy Services for Children and Teens Diagnosed with Autism Spectrum Disorder'}

+
    {services.map((item) =>
  • {item}
  • )}
+
+
+

{es ? 'Nuestro compromiso con el éxito de su estudiante' : "Our Commitment To Your Learner's Success"}

+
    {commitments.map((item) =>
  • {item}
  • )}
+ {es ? 'Programar una evaluación' : 'Schedule an Assessment'} +
+ {es +
+
+ +
+
+

{es ? 'Beneficios que van más allá de un proveedor de terapia integrada típico' : 'Benefits that go Beyond a Typical Integrated Therapy Provider'}

{es ? 'La Diferencia AIA' : 'The AIA Difference'}

    {(es ? ['Cuidado compasivo', 'Resultados individualizados', 'Salas sensoriales', 'Conveniente y asequible'] : ['Compassionate Care', 'Individualized Results', 'Sensory-Friendly Rooms', 'Convenient and Affordable']).map((item) =>
  • {item}
  • )}
+ {es +
+
+ +

{es ? '¿Su alumno tiene dificultades con estas habilidades?' : 'Does Your Learner Struggle With These Skills?'}

{skills.map(([icon, label]) =>
{label}
)}
+ +

{es ? 'Sí, aceptamos seguros.' : 'Yes, We Take Insurance'}

{es ? 'Un servicio integrado todo en uno para las necesidades de educación especial de su hijo, el Instituto de Autismo de Arizona (AIA) ofrece y acepta la mayoría de los planes de seguro que cubren la terapia ABA. Estos incluyen BCBS AZ, Aetna, Optum, Tricare, United Healthcare AHCCCS y UnitedHealth.' : 'An all-in-one integrated service for your kiddo’s special education needs, the Arizona Institute for Autism (AIA) offers and accepts most insurance plans that cover ABA therapy. These include BCBS AZ, Aetna, Optum, Tricare, United Healthcare AHCCCS, and UnitedHealth.'}

{logos.map((logo) => )}
+ +

{es ? 'Cuenta de Becas de Arizona (ESA)' : 'Arizona Scholarship Account (ESA)'}

{es ? 'Miles de estudiantes de Arizona son actualmente elegibles para la ESA financiada por el estado, que otorga entre $4,000 y $6,500 anualmente por estudiante para la matrícula de educación privada, educación en el hogar y otros servicios. El Instituto de Autismo de Arizona (AIA) está aprobado por el Departamento de Educación de Arizona como proveedor para padres con estudiantes que califican para la Beca de Empoderamiento. Si eres elegible para el programa ESA, puedes usar tus fondos para la matrícula de nuestros programas ABA.' : 'Thousands of Arizona learners are currently eligible for the state funded ESA, which awards $4,000 – $6,500 annually per student towards private education tuition, home based education, and other services. The Arizona Institute for Autism (AIA) is approved by the Arizona Department of Education as a vendor for parents with learners who qualify for the Empowerment Scholarship Award. If you are eligible for the ESA program, you can use your funds towards tuition for our ABA programs.'}

Arizona Department of Education
+ +

{es ? '¿Necesita ayuda para pagar su atención?' : 'Need Help Paying for Your Care?'}

{es ? 'El Instituto de Autismo de Arizona ofrece asistencia financiera flexible a las personas sin seguro. Obtén la atención que deseas o necesitas y paga a plazos.' : 'The Arizona Institute for Autism offers flexible financial assistance to the uninsured. Get the care you want or need and pay over time.'}

{es ? 'Solicitar cita' : 'Request an Appointment'}
+ +

{es ? 'Nuestro proceso' : 'Our Process'}

{process.map(([icon, label]) =>

{label}

)}
+ +
Rula Diab

{es ? 'Directora Clínica Rula Diab' : 'Clinical Director Rula Diab'}
BCBA, LBA, M.Ed.

{es ? 'Una extensión de tu familia' : 'An Extension of Your Family'}

{es ? '“En AIA, nos esforzamos por brindar atención excelente y compasiva a todas las comunidades a las que servimos. No podríamos lograr eso sin un personal y familias excelentes, apasionados y comprometidos. Esperamos con ansias nuestra colaboración con usted a medida que continuamos creciendo, sirviendo y apoyando a nuestros estudiantes en la búsqueda de su potencial individual.”' : '“At AIA, We strive to provide excellent and compassionate care to all communities we serve. We could not accomplish that without excellent, passionate, and committed staff and families. We look forward to our collaboration with you as we continue to grow, serve and support our Learners in the pursuit of their individual potential.”'}

Clinical Director Rula Diab
+ +

{es ? 'Lo que dicen los clientes' : 'What Clients Say'}

Claudia

Our son is an autistic kid. We struggled to find the correct place for him, that place where you can feel comfortable leaving your kid. We visited five companies, and no one gave us that confidence until we found AIA. You can see the dedication from each employee (Director, therapists, coordinators, etc.) to every kid. Their therapy rooms are huge and spacious; every kid can play and learn simultaneously in their own spaces. We are thankful to Arizona Institute for Autism for caring for Misael.

All of you are Amazing!!! Thank you

+
diff --git a/www/src/components/InsuranceStrip.astro b/www/src/components/InsuranceStrip.astro new file mode 100644 index 0000000..0753919 --- /dev/null +++ b/www/src/components/InsuranceStrip.astro @@ -0,0 +1,6 @@ +--- +const logos = ['aetna.png', 'bluecrossblueshield-logo-1.webp', 'logo-ahcccs.webp', 'logo-optum.webp', 'logo-tricare-1.webp', 'united-healthcare-logo-1.webp']; +--- +
+

Insurance partners

{logos.map((logo) => )}
+
diff --git a/www/src/components/LanguageSwitcher.astro b/www/src/components/LanguageSwitcher.astro new file mode 100644 index 0000000..e2a7116 --- /dev/null +++ b/www/src/components/LanguageSwitcher.astro @@ -0,0 +1,31 @@ +--- +import { getCollection } from 'astro:content'; +const pathname = Astro.url.pathname.replace(/\/$/, '') || '/'; +const bare = pathname.replace(/^\/(ar|es)(?=\/|$)/, '') || '/'; +const pages = await getCollection('pages', ({ data }) => !data.draft); +const posts = await getCollection('blog', ({ data }) => !data.draft); +const available = new Set(['/', '/library', '/es', '/es/library', '/ar', '/ar/library']); +for (const entry of pages) { + const prefix = entry.data.lang === 'en' ? '' : `/${entry.data.lang}`; + const route = entry.data.slug === 'index' + ? prefix || '/' + : entry.data.slug === 'library' + ? `${prefix}/library` + : `${prefix}/${entry.data.slug}`; + available.add(route); +} +for (const entry of posts) { + const prefix = entry.data.lang === 'en' ? '' : `/${entry.data.lang}`; + available.add(`${prefix}/library/${entry.data.slug}`); +} +const choices = [ + { code: 'en', label: 'EN', href: bare }, + { code: 'es', label: 'ES', href: `/es${bare === '/' ? '' : bare}` }, + { code: 'ar', label: 'ع', href: `/ar${bare === '/' ? '' : bare}` } +].filter(({ href }) => available.has(href)); +--- + diff --git a/www/src/components/LikeViewCounter.astro b/www/src/components/LikeViewCounter.astro new file mode 100644 index 0000000..d526359 --- /dev/null +++ b/www/src/components/LikeViewCounter.astro @@ -0,0 +1,98 @@ +--- +const { slug } = Astro.props; +--- +
+ + Views: +
+ diff --git a/www/src/components/LocationCard.astro b/www/src/components/LocationCard.astro new file mode 100644 index 0000000..1cb9cc5 --- /dev/null +++ b/www/src/components/LocationCard.astro @@ -0,0 +1,4 @@ +--- +const { title = 'Scottsdale', address = '8901 E Raintree Dr Ste 160, Scottsdale, AZ 85260' } = Astro.props; +--- +

{title}

{address}

Get directions
diff --git a/www/src/components/MainNav.astro b/www/src/components/MainNav.astro new file mode 100644 index 0000000..f00e910 --- /dev/null +++ b/www/src/components/MainNav.astro @@ -0,0 +1,24 @@ +--- +import en from '../data/navigation.en.json'; +import es from '../data/navigation.es.json'; +const { lang = 'en' } = Astro.props; +const nav = { en, es, ar: en }[lang as 'en' | 'es' | 'ar'] || en; +const aboutLinks = lang === 'es' + ? [['Equipo', '/team'], ['Carreras', '/careers'], ['Preguntas frecuentes', '/faqs']] + : [['Team', '/team'], ['Careers', '/careers'], ['FAQ', '/faqs']]; +--- + diff --git a/www/src/components/MobileNav.astro b/www/src/components/MobileNav.astro new file mode 100644 index 0000000..8bf1208 --- /dev/null +++ b/www/src/components/MobileNav.astro @@ -0,0 +1,8 @@ +--- +import MainNav from './MainNav.astro'; +const { lang = 'en' } = Astro.props; +--- +
+ Menu + +
diff --git a/www/src/components/Seo.astro b/www/src/components/Seo.astro new file mode 100644 index 0000000..c776d0e --- /dev/null +++ b/www/src/components/Seo.astro @@ -0,0 +1,24 @@ +--- +interface Props { + title: string; + description?: string; + canonical?: string; + image?: string; + lang?: string; + type?: 'website' | 'article'; +} +const { title, description = '', canonical, image, lang = 'en', type = 'website' } = Astro.props; +const absoluteImage = image ? new URL(image, Astro.site ?? Astro.url).href : undefined; +--- +{title} + +{canonical && } + + + +{canonical && } +{absoluteImage && } + + + + diff --git a/www/src/components/ServiceCard.astro b/www/src/components/ServiceCard.astro new file mode 100644 index 0000000..30332ec --- /dev/null +++ b/www/src/components/ServiceCard.astro @@ -0,0 +1,7 @@ +--- +const { title, description, href, image } = Astro.props; +--- +
+ {image && } +

{title}

{description}

Learn more
+
diff --git a/www/src/components/TeamPage.astro b/www/src/components/TeamPage.astro new file mode 100644 index 0000000..7779d5a --- /dev/null +++ b/www/src/components/TeamPage.astro @@ -0,0 +1,67 @@ +--- +const groups = [ + { + title: 'Board Certified Behavioral Analysts & Psychologists', + members: [ + ['team-rula-diab.webp', 'Rula Diab, BCBA, LBA, M.Ed', 'Clinical Director'], + ['team-jennifer-espinoza.webp', 'Jennifer Espinoza, MAOL/ABA', 'Clinical BCBA'], + ['team-timirah-clay.webp', 'Timirah Clay, M.Psy/ABA', 'Clinical BCBA'] + ] + }, + { + title: 'Clinical Support', + members: [ + ['team-carol-harrington.webp', 'Carol Harrington, A.A. Spec. Ed.', 'Clinical Manager'], + ['team-rachel-crosby.webp', 'Rachel Crosby', 'Clinical Administrator'], + ['team-jennifer-bonefont.webp', 'Jennifer Bonefont, B.A. Psy', 'Clinical Client Advocate Supervisor'] + ] + }, + { + title: 'Clinical Case Supervisors', + members: [['team-rachael-sanchez.webp', 'Rachael Sanchez, BS, M Psy/ABA', 'Clinical Supervisor']] + }, + { + title: 'Clinical Education Specialists', + members: [['team-mahima-bedi.webp', 'Mahima Bedi', 'Clinical Instructor']] + }, + { + title: 'ABA Clinic Management', + members: [ + ['team-mariah-marley.webp', 'Mariah Marley', 'Claims Billing'], + ['team-eney-garcia.webp', 'Eney Garcia, BA', 'Accounts Billing'], + ['team-ayah-shahbander.webp', 'Ayah Shahbander', 'Human Resources'], + ['team-barbara-samanich.webp', 'Barbara Samanich, BFA', 'Creative Marketing Developer'] + ] + } +]; +--- +
+
+

Our Clinical Team

+

Arizona Institute for Autism
Scottsdale, Arizona

+

AIA's clinical team consists of experienced professionals and paraprofessionals as well as Board Certified Behavior Analysts (BCBA) and Psychologists who have diverse experience and expertise.

+
+ {groups.map((group) => ( +
+

{group.title}

+
+ {group.members.map(([image, name, role]) => ( +
+ {name} +

{name}

+

{role}

+
+ ))} +
+
+ ))} +
+
+

Join the AIA Team!

+

Employment Opportunities

+

Apply online to join the AIA team! At the Arizona Institute for Autism (AIA) we are on a mission to improve special education and strengthen communities throughout Arizona.

+

Our talented and passionate employees are a critical piece to the high-quality ABA therapy we provide along with our commitment to behavioral health, school solutions, and community outreach.

+ View Open Positions +
+
+
diff --git a/www/src/content.config.ts b/www/src/content.config.ts new file mode 100644 index 0000000..19c2cb9 --- /dev/null +++ b/www/src/content.config.ts @@ -0,0 +1,58 @@ +import { defineCollection, z } from 'astro:content'; +import { glob } from 'astro/loaders'; + +const language = z.enum(['en', 'ar', 'es']); +const shared = { + title: z.string(), + description: z.string().default(''), + slug: z.string(), + canonical: z.string().url().optional(), + featuredImage: z.string().optional(), + alt: z.string().optional(), + lang: language, + translationKey: z.string().optional(), + draft: z.boolean().default(false) +}; + +const pages = defineCollection({ + loader: glob({ + pattern: '**/*.{md,mdx}', + base: './src/content/pages', + generateId: ({ entry }) => entry.replace(/\.(md|mdx)$/, '') + }), + schema: z.object(shared) +}); + +const blog = defineCollection({ + loader: glob({ + pattern: '**/*.{md,mdx}', + base: './src/content/blog', + generateId: ({ entry }) => entry.replace(/\.(md|mdx)$/, '') + }), + schema: z.object({ + ...shared, + date: z.coerce.date(), + updatedDate: z.coerce.date().optional(), + author: z.string(), + category: z.string().optional(), + tags: z.array(z.string()).default([]) + }) +}); + +const authors = defineCollection({ + loader: glob({ + pattern: '**/*.{md,mdx}', + base: './src/content/authors', + generateId: ({ entry }) => entry.replace(/\.(md|mdx)$/, '') + }), + schema: z.object({ + name: z.string(), + slug: z.string(), + description: z.string().optional(), + avatar: z.string().optional(), + lang: language, + translationKey: z.string().optional() + }) +}); + +export const collections = { pages, blog, authors }; diff --git a/www/src/content/authors/ar/rula-diab.md b/www/src/content/authors/ar/rula-diab.md new file mode 100644 index 0000000..fb8b7c7 --- /dev/null +++ b/www/src/content/authors/ar/rula-diab.md @@ -0,0 +1,8 @@ +--- +name: "Rula Diab" +slug: "rula-diab" +description: "Founder and clinical leader at Arizona Institute for Autism." +avatar: "/assets/images/rula-diab-avatar.jpg" +lang: "ar" +translationKey: "rula-diab" +--- diff --git a/www/src/content/authors/en/rula-diab.md b/www/src/content/authors/en/rula-diab.md new file mode 100644 index 0000000..08ffb63 --- /dev/null +++ b/www/src/content/authors/en/rula-diab.md @@ -0,0 +1,8 @@ +--- +name: "Rula Diab" +slug: "rula-diab" +description: "Founder and clinical leader at Arizona Institute for Autism." +avatar: "/assets/images/rula-diab-avatar.jpg" +lang: "en" +translationKey: "rula-diab" +--- diff --git a/www/src/content/authors/es/rula-diab.md b/www/src/content/authors/es/rula-diab.md new file mode 100644 index 0000000..c14464f --- /dev/null +++ b/www/src/content/authors/es/rula-diab.md @@ -0,0 +1,8 @@ +--- +name: "Rula Diab" +slug: "rula-diab" +description: "Founder and clinical leader at Arizona Institute for Autism." +avatar: "/assets/images/rula-diab-avatar.jpg" +lang: "es" +translationKey: "rula-diab" +--- diff --git a/www/src/content/blog/ar/aba-school-readiness-guide.md b/www/src/content/blog/ar/aba-school-readiness-guide.md new file mode 100644 index 0000000..1225bee --- /dev/null +++ b/www/src/content/blog/ar/aba-school-readiness-guide.md @@ -0,0 +1,75 @@ +--- +title: "العودة إلى المدرسة بسهولة | تدخلات ABA: تعزيز بالمقدمات والنتائج" +description: "خفّف توتر العودة إلى المدرسة وعزّز الاستعداد المدرسي باستراتيجيات بسيطة للمقدمات والنتائج، وتكتيكات ABA خطوة بخطوة يمكن لأي والد تطبيقها." +slug: "aba-school-readiness-guide" +canonical: "https://www.azinstitute4autism.com/ar/library/aba-school-readiness-guide" +lang: "ar" +translationKey: "aba-school-readiness-guide" +featuredImage: "/assets/images/hero-back-to-school.webp" +date: "2024-07-30" +author: "rula-diab" +category: "Library" +tags: [] +draft: false +--- +# العودة إلى المدرسة بسهولة | تدخلات السلوك التحليلية (ABA) من خلال المقدمات والنتائج + +![رولا دياب، المديرة الإكلينيكية، ماجستير في التربية، BCBA، LBA](/assets/images/rula-diab-avatar.jpg) + + رولا دياب، المديرة الإكلينيكية، ماجستير في التربية، BCBA، LBA + + 30 يوليو, 2024 + +![نصائح حول المقدمات والنتائج التي يحتاجها كل والد/ة مصاب/ة بالتوحد لتجهيز أطفالهم للمدرسة - صورة رئيسية](/assets/images/hero-back-to-school.webp) + +بالنسبة للعائلات التي لديها أطفال مصابون بالتوحد، يمكن أن تكون فترة العودة إلى المدرسة مليئة بالتحديات، نظرًا للتغييرات في الروتين والانتقال من بيئة إلى أخرى. ومع ذلك، فإن استخدام التدخلات التمهيدية (Antecedent) والنتائج (Consequence) في تحليل السلوك التطبيقي (ABA) يمكن أن يُقدّم دعمًا كبيرًا في تسهيل هذا الانتقال وجعله أكثر نجاحًا لطفلك. + +## ما هي التدخلات التمهيدية (Antecedent Interventions)؟ + +[التدخلات التمهيدية](https://specialconnections.ku.edu/behavior_plans/positive_behavior_support_interventions/teacher_tools/antecedent_interventions) هي استراتيجيات تهدف إلى تعديل البيئة قبل حدوث السلوك، وذلك بغرض منع [السلوك غير المناسب](https://www.merriam-webster.com/dictionary/maladaptive) وتشجيع السلوك الإيجابي. بعبارة أخرى، تهدف هذه التدخلات إلى تهيئة الظروف للنجاح من خلال معالجة المُحفزات قبل أن تحدث. + +### التقنيات الأساسية للتدخلات التمهيدية (Antecedent Intervention) + +- الجداول البصرية التي توضح الروتين اليومي تساعد الأطفال المصابين بالتوحد على فهم التوقعات لليوم والتنبؤ بما سيحدث لاحقًا، مما يقلل من الإحباط الناتج عن الانتقالات بين الأنشطة. يمكن استخدام الرموز أو الصور أو حتى الكلمات المكتوبة، حسب مستوى فهم الطفل، كتذكيرات بصرية ضمن الجدول. + +- إعطاء إشعار مُسبق للطفل حول الأحداث القادمة أو التغييرات في جدوله اليومي يساعده على الاستعداد والتكيف بشكل أفضل. + +- تعديل بيئة المنزل لتشبه بيئة المدرسة، مع ممارسة المهام المتعلقة بالمدرسة في بيئة مألوفة وداعمة، يعزز من استعداد الطفل للانتقال المدرسي. + +- توفير خيارات ضمن حدود مُنظمة يمنح الطفل شعورًا بالمشاركة والسيطرة على بيئته وروتينه اليومي، مما يُسهم في تقليل صعوبات الانتقال. + +- استخدام القصص الاجتماعية لشرح التغييرات القادمة في الجدول يساعد الطفل على فهم التغيير بشكل أفضل ويقلل من مقاومته لهذه التغييرات. + +## ما هي التدخلات القائمة على النتائج (العواقب)؟ + +[التدخلات القائمة على النتائج](https://specialconnections.ku.edu/behavior_plans/positive_behavior_support_interventions/teacher_tools/consequence_interventions) تركز على كيفية استجابتك لسلوك طفلك بهدف زيادة السلوكيات المرغوبة وتقليل السلوكيات غير المرغوبة. تُطبَّق استراتيجيات العواقب بعد حدوث السلوك. وتشمل بعض التدخلات الفعالة: + +- تقديم التعزيز الإيجابي لطفلك: مثل المديح، أو نشاط مفضل، أو عنصر ملموس أو بيئة محببة، مما يشجع الطفل على تكرار السلوك المرغوب فيه. تأكد من تنويع المعززات دائمًا وتعزيز السلوكيات البديلة المستهدفة والوظيفية. + +- الامتناع عن تقديم الانتباه للسلوك السلبي، وبدلاً من ذلك، تعزيز السلوكيات البديلة الإيجابية. التركيز على السلوكيات الإيجابية والبديلة الوظيفية، بدلاً من إعطاء الانتباه للسلوكيات السلبية فقط، سيقلل من تكرار السلوكيات غير المرغوبة مع مرور الوقت. + +- الاستمرارية في الاستجابة للسلوكيات المختلفة تساعد طفلك على فهم العلاقة بين أفعاله والنتائج المترتبة عليها. + +قد تكون التغييرات في الروتين اليومي صعبة وتحديًا كبيرًا، ولكن من خلال تنفيذ تدخلات مناسبة قائمة على المقدمات والنتائج، يمكن خلق بيئة داعمة، منظمة، ومحفزة لطفلك. + + Previous Post + +###### [إتقان إدارة السلوك: اكتشف الوظائف الأربع للسلوك](behavior-management-functions-guide) + + Next Post + +###### [دليل تعليم مهارات الدفاع عن النفس في ABA](autism-self-advocacy-skills-aba) + +### Similar Blog Posts + +![بطاقات](/assets/images/hero-first-then-cards.webp) + +#### [بطاقات "أولاً/ثم": تسهيل الانتقال بين الأنشطة للأطفال المصابين بالتوحّد](first-then-cards-autism-transitions) + +![دليل استراتيجيات تحليل السلوك التطبيقي الاستباقية والتفاعلية— الصورة الرئيسية](/assets/images/hero-proactive-reactive-strategies.webp) + +#### [إتقان تقنيات التحليل السلوكي الاستباقية والتفاعلية– احجز استشارتك الآن](proactive-reactive-aba-strategies-guide) + +![الصورة الرئيسية – استراتيجيات مهارات الوظائف التنفيذية للأطفال المصابين بالتوحّد](/assets/images/hero-executive-functioning-skills-autism.webp) + +#### [مهارات الوظائف التنفيذية والتوحّد](executive-functioning-skills-autism) diff --git a/www/src/content/blog/ar/autism-self-advocacy-skills-aba.md b/www/src/content/blog/ar/autism-self-advocacy-skills-aba.md new file mode 100644 index 0000000..1a6f49d --- /dev/null +++ b/www/src/content/blog/ar/autism-self-advocacy-skills-aba.md @@ -0,0 +1,103 @@ +--- +title: "دليل تعليم مهارات الدفاع عن النفس في ABA" +description: "مكّن طفلك بعلاج ABA فردي في معهد أريزونا للتوحّد. احجز استشارة مجانية اليوم وابدأ رعاية مخصّصة للتوحّد!" +slug: "autism-self-advocacy-skills-aba" +canonical: "https://www.azinstitute4autism.com/ar/library/autism-self-advocacy-skills-aba" +lang: "ar" +translationKey: "autism-self-advocacy-skills-aba" +featuredImage: "/assets/images/hero-teach-self-advocacy.webp" +date: "2024-12-02" +author: "rula-diab" +category: "Library" +tags: [] +draft: false +--- +# دليل تعليم مهارات الدفاع عن النفس في ABA + +![رولا دياب، المديرة الإكلينيكية، ماجستير في التربية، BCBA، LBA](/assets/images/rula-diab-avatar.jpg) + + رولا دياب، المديرة الإكلينيكية، ماجستير في التربية، BCBA، LBA + + 02 ديسمبر, 2024 + +![مهارات الدفاع عن النفس لدى الأطفال ذوي التوحّد عبر تحليل السلوك التطبيقي (ABA) – الصورة الرئيسية](/assets/images/hero-teach-self-advocacy.webp) + +الدفاع عن النفس هو مهارة حياتية أساسية تُمكّن الأفراد من التعبير عن أفكارهم واحتياجاتهم وتفضيلاتهم. بالنسبة للأطفال المصابين بالتوحّد أو الإعاقات النمائية، فإن تعلّم كيفية الدفاع عن أنفسهم يعزّز الاستقلالية، ويحسّن العلاقات، ويرفع من جودة حياتهم بشكل عام. ومن خلال تحليل السلوك التطبيقي (ABA)، يمكن تعليم مهارة الدفاع عن النفس بشكل منهجي وتعزيزها، مما يمنح الأطفال الأدوات التي تساعدهم على مواجهة العالم بثقة. + +## ما هو الدفاع عن النفس؟ + +يتضمن الدفاع عن النفس ما يلي: + +- التعرّف على الاحتياجات والحقوق الشخصية. + +- التواصل الفعّال لتوضيح هذه الاحتياجات للآخرين. + +- اتخاذ قرارات تتماشى مع التفضيلات والأهداف الشخصية. + +وعند تطبيق هذه المهارة على الأطفال المصابين بالتوحّد قد تبدو كالتالي: + +- طلب استراحة عند الشعور بالإرهاق. + +- الاختيار بين الأنشطة أو الأشياء. + +- قول «لا» لشيء لا يحبّونه أو يشعرون بعدم الارتياح تجاهه. + +يُمكّن تعليم الدفاع عن النفس الأطفال من: + +- بناء الاستقلالية : تقليل الاعتماد على الآخرين لتفسير احتياجاتهم. + +- تعزيز مهارات التواصل : تشجيع التواصل الواضح والمقصود. + +- رفع الثقة بالنفس : تعزيز ثقة الطفل بقدرته على التعبير عن نفسه. + +- تعزيز الأمان : مساعدة الأطفال على التعبير عندما يشعرون بعدم الأمان أو يحتاجون إلى المساعدة. + +## كيف يعلّم ABA الدفاع عن النفس؟ + +يوفّر تحليل السلوك التطبيقي (ABA) نهجاً منظّماً وفردياً لتعليم مهارات الدفاع عن النفس. فيما يلي بعض الاستراتيجيات الأساسية التي يستخدمها المختصون: + +- تدريب التواصل الوظيفي (FCT) : يعلّم الأطفال استخدام التواصل للتعبير عن احتياجاتهم بدلاً من الانخراط في سلوكيات صعبة. مثال: بدلاً من نوبة غضب عند الشعور بالإرهاق، يتعلّم الطفل قول «أحتاج استراحة» أو استخدام بطاقة الاستراحة. + +- إتاحة فرص الاختيار : تمكين الأطفال من اتخاذ قرارات في روتينهم اليومي. مثال: تقديم خيارات مثل «هل تريد العمل بالمكعبات أم اللعب بالألغاز؟» + +- تعليم مهارات الطلب (Manding) : التركيز على تعليم الأطفال طلب ما يحتاجونه أو يريدونه؛ مثل قول «أحتاج مساعدة» أو الضغط على زر في جهاز تواصل معزّز/بديل. + +- اللعب التمثيلي (Role-Playing) : تجهيز الأطفال للمواقف الحياتية من خلال ممارسة مهارات الدفاع عن النفس في بيئة آمنة وموجّهة. + +- تعزيز محاولات الدفاع عن النفس : تشجيع السلوك عبر مكافأة محاولات التعبير المناسبة. + +يلعب الوالدان دوراً محورياً في تعزيز مهارات الدفاع عن النفس التي يتعلمها الطفل في جلسات ABA. + +## نصائح لمقدمي الرعاية + +- تشجيع التواصل : حثّ الطفل على التعبير عن احتياجاته بدلاً من توقّعها أو تلبيتها مباشرة. + +- الاحتفال بالنجاح : تقدير ومكافأة حتى المحاولات الصغيرة في الدفاع عن النفس. + +- التحلّي بالصبر : تعلّم مهارات الدفاع عن النفس يحتاج إلى وقت وممارسة. + +- نمذجة الدفاع عن النفس : أظهروا كيف تدافعون عن احتياجاتكم أنتم لتقديم مثال حي. + +إن تعليم مهارات الدفاع عن النفس من خلال تحليل السلوك التطبيقي (ABA) يمنح الأطفال القدرة على السيطرة على احتياجاتهم وتفضيلاتهم واختياراتهم. ومن خلال تعزيز الاستقلالية وتطوير مهارات التواصل، يساعد ABA الأطفال على مواجهة بيئاتهم بثقة وكرامة. سواء في الجلسات العلاجية أو في المنزل، يبقى الدفاع عن النفس هدية ثمينة تُعِدّ الأطفال للنجاح مدى الحياة. + + Previous Post + +###### [العودة إلى المدرسة بسهولة | تدخلات السلوك التحليلية (ABA) من خلال المقدمات والنتائج](aba-school-readiness-guide) + + Next Post + +###### [مهارات الوظائف التنفيذية والتوحّد](executive-functioning-skills-autism) + +### Similar Blog Posts + +![الصورة الرئيسية – استراتيجيات مهارات الوظائف التنفيذية للأطفال المصابين بالتوحّد](/assets/images/hero-executive-functioning-skills-autism.webp) + +#### [مهارات الوظائف التنفيذية والتوحّد](executive-functioning-skills-autism) + +![دليل استراتيجيات تحليل السلوك التطبيقي الاستباقية والتفاعلية— الصورة الرئيسية](/assets/images/hero-proactive-reactive-strategies.webp) + +#### [إتقان تقنيات التحليل السلوكي الاستباقية والتفاعلية– احجز استشارتك الآن](proactive-reactive-aba-strategies-guide) + +![بطاقات](/assets/images/hero-first-then-cards.webp) + +#### [بطاقات "أولاً/ثم": تسهيل الانتقال بين الأنشطة للأطفال المصابين بالتوحّد](first-then-cards-autism-transitions) diff --git a/www/src/content/blog/ar/behavior-management-functions-guide.md b/www/src/content/blog/ar/behavior-management-functions-guide.md new file mode 100644 index 0000000..ff7926e --- /dev/null +++ b/www/src/content/blog/ar/behavior-management-functions-guide.md @@ -0,0 +1,71 @@ +--- +title: "إتقان إدارة السلوك: اكتشف الوظائف الأربع للسلوك" +description: "اكتشف لماذا تحدث السلوكيات وكيفية تعليم بدائل إيجابية عبر دليلنا المبسّط. بادر الآن لروتينات أكثر سلاسة وتعلّم أسعد!" +slug: "behavior-management-functions-guide" +canonical: "https://www.azinstitute4autism.com/ar/library/behavior-management-functions-guide" +lang: "ar" +translationKey: "behavior-management-functions-guide" +featuredImage: "/assets/images/hero-behavior-functions-management.webp" +date: "2024-06-28" +author: "rula-diab" +category: "Library" +tags: [] +draft: false +--- +# إتقان إدارة السلوك: اكتشف الوظائف الأربع للسلوك + +![رولا دياب، المديرة الإكلينيكية، ماجستير في التربية، BCBA، LBA](/assets/images/rula-diab-avatar.jpg) + + رولا دياب، المديرة الإكلينيكية، ماجستير في التربية، BCBA، LBA + + 28 يونيو, 2024 + +![أتقن إدارة السلوك: اكتشف الوظائف الأربع للسلوك – الصورة الرئيسية](/assets/images/hero-behavior-functions-management.webp) + +يُعد السلوك شكلاً من أشكال التواصل والتفاعل، وله دور محوري في تحليل السلوك التطبيقي. إن إدارة السلوك أمر أساسي لفهمه وتعديله من أجل تحقيق نتائج إيجابية وتعزيز الرفاهية العامة. ومن الجوانب المهمة لفهم السلوك تحديد وظائفه، أي الأسباب أو الدوافع الكامنة وراء الأفعال المحددة. + +تشمل إدارة السلوك مجموعة من الاستراتيجيات التي تهدف إلى: + +- تعزيز السلوكيات المرغوبة. + +- تقليل السلوكيات الصعبة أو غير التكيفية. + +- خلق بيئة داعمة لنمو الطفل وتطوره. + +## تحديد وظائف السلوك + +يؤدي السلوك وظائف مختلفة من خلالها يعبّر الطفل عن احتياجاته ورغباته. ومن خلال تحديد هذه الوظائف، يستطيع المختصون فهم المثيرات والدوافع وراء السلوكيات. + +الوظائف الأساسية للسلوك في تحليل السلوك التطبيقي (ABA): + +- الانتباه: بعض السلوكيات تهدف إلى جذب الانتباه أو التفاعل الاجتماعي. + +- الهروب/التجنّب: بعض السلوكيات تسعى للهروب من مطالب أو مواقف أو مثيرات غير مرغوبة. + +- الوصول إلى الملموسات: سلوكيات مدفوعة بالرغبة في الوصول إلى أنشطة أو أشياء أو بيئات مفضّلة. + +- التحفيز الحسي: سلوكيات ناتجة عن احتياجات حسية، مثل الاستثارة الذاتية أو تنظيم المدخلات الحسية. + +يستخدم محللو السلوك أدوات مثل تقييمات السلوك الوظيفي (FBA) لتحديد وظيفة السلوك. ثم يضعون خطط تدخل سلوكي فردية (BIPs) لمعالجة هذه الوظائف. + +إن فهم وظائف السلوك يمكّن المختصين من تصميم استراتيجيات إدارة السلوك بما يتناسب مع احتياجات الفرد ودوافعه. يركّز ممارسو ABA على تعديل المثيرات السابقة التي تؤدي إلى السلوكيات، وتقديم عواقب مناسبة تعالج الوظائف الأساسية للسلوك، وتعزيز سلوكيات بديلة إيجابية باستخدام التعزيز. + +ختامًا، تُعد إدارة السلوك المبنية على فهم وظائفه جوهرية لتحقيق نتائج إيجابية، وتعزيز النمو، وتحسين جودة حياة الأفراد المستفيدين من خدمات ABA. من خلال تحديد وظائف السلوك وتنفيذ تدخلات فردية، يمكن لمختصي السلوك تمكين الأفراد من تطوير مهارات جديدة والنجاح في بيئات متنوعة. + + Next Post + +###### [العودة إلى المدرسة بسهولة | تدخلات السلوك التحليلية (ABA) من خلال المقدمات والنتائج](aba-school-readiness-guide) + +### Similar Blog Posts + +![بطاقات](/assets/images/hero-first-then-cards.webp) + +#### [بطاقات "أولاً/ثم": تسهيل الانتقال بين الأنشطة للأطفال المصابين بالتوحّد](first-then-cards-autism-transitions) + +![نصائح حول المقدمات والنتائج التي يحتاجها كل والد/ة مصاب/ة بالتوحد لتجهيز أطفالهم للمدرسة - صورة رئيسية](/assets/images/hero-back-to-school.webp) + +#### [العودة إلى المدرسة بسهولة | تدخلات السلوك التحليلية (ABA) من خلال المقدمات والنتائج](aba-school-readiness-guide) + +![دليل استراتيجيات تحليل السلوك التطبيقي الاستباقية والتفاعلية— الصورة الرئيسية](/assets/images/hero-proactive-reactive-strategies.webp) + +#### [إتقان تقنيات التحليل السلوكي الاستباقية والتفاعلية– احجز استشارتك الآن](proactive-reactive-aba-strategies-guide) diff --git a/www/src/content/blog/ar/executive-functioning-skills-autism.md b/www/src/content/blog/ar/executive-functioning-skills-autism.md new file mode 100644 index 0000000..1d80666 --- /dev/null +++ b/www/src/content/blog/ar/executive-functioning-skills-autism.md @@ -0,0 +1,155 @@ +--- +title: "مهارات الوظائف التنفيذية والتوحّد" +description: "استراتيجيات وظائف تنفيذية قائمة على الأدلة للتوحّد: دعائم بصرية للتخطيط، وتنظيم الانفعالات، وضبط الاندفاع، وحلّ المشكلات." +slug: "executive-functioning-skills-autism" +canonical: "https://www.azinstitute4autism.com/ar/library/executive-functioning-skills-autism" +lang: "ar" +translationKey: "executive-functioning-skills-autism" +featuredImage: "/assets/images/hero-executive-functioning-skills-autism.webp" +date: "2025-05-01" +author: "rula-diab" +category: "Library" +tags: [] +draft: false +--- +# مهارات الوظائف التنفيذية والتوحّد + +![رولا دياب، المديرة الإكلينيكية، ماجستير في التربية، BCBA، LBA](/assets/images/rula-diab-avatar.jpg) + + رولا دياب، المديرة الإكلينيكية، ماجستير في التربية، BCBA، LBA + + 01 مايو, 2025 + +![الصورة الرئيسية – استراتيجيات مهارات الوظائف التنفيذية للأطفال المصابين بالتوحّد](/assets/images/hero-executive-functioning-skills-autism.webp) + +تشير الوظائف التنفيذية إلى مجموعة من المهارات الإدراكية الأساسية لحل المشكلات وإدارة المهام اليومية. تساعد هذه المهارات الأطفال على التخطيط والتنظيم وتنظيم عواطفهم وإكمال المهام بفعالية. + +بالنسبة للأطفال الذين يعانون من اضطراب طيف التوحّد (ASD)، قد تكون مهارات الوظائف التنفيذية تحدياً خاصاً، حيث تؤثر على قدرتهم في التعامل مع التفاعلات الاجتماعية، والتكيف مع التغيرات في الروتين، وإدارة العواطف. إن دعم تطوير هذه المهارات يُعد أمراً بالغ الأهمية لنجاحهم في المنزل والمدرسة والمجتمع. + +## المهارات التنفيذية الأساسية للأطفال المصابين بالتوحّد + +### 1. تنظيم الانفعالات (Emotional Regulation) + +التعريف: القدرة على إدارة الاستجابات العاطفية والتعامل معها بطريقة صحية وإيجابية وفعّالة. + +التحديات: غالباً ما يواجه الأطفال المصابون بالتوحّد حساسية عالية تجاه المثيرات الحسية وصعوبة في فهم عواطفهم أو التعبير عنها، مما قد يؤدي إلى نوبات غضب، قلق، أو صعوبة في الانتقال بين الأنشطة. + +الاستراتيجيات الأساسية: + +- تقنيات التنظيم الذاتي: تعليم استراتيجيات التهدئة مثل التنفس العميق، أخذ استراحة قصيرة، أو استخدام لعبة حسية (Fidget). + +- الدعم البصري: استخدام جداول المشاعر، عجلة المواجهة (Coping Wheel)، أو القصص الاجتماعية لمساعدة الأطفال على التعرف على عواطفهم وإدارتها. + +- الروتين الواضح: وضع جداول وروتين متوقّع باستخدام مخططات بصرية (لنصف يوم، يوم كامل، أو أسبوعي) لتقليل القلق. + +### 2. التخطيط والتنظيم (Planning and Organization) + +التعريف: القدرة على التخطيط وتحديد الأولويات، تقسيم المهام إلى خطوات أصغر، والمحافظة على التنظيم. + +التحديات: قد يواجه الأطفال المصابون بالتوحّد صعوبة في تنظيم يومهم، إدارة مهام متعددة، أو الاستعداد للأحداث القادمة، مما يؤثر على أدائهم الأكاديمي ومهارات حياتهم اليومية. + +الاستراتيجيات الأساسية: + +- الجداول البصرية: عرض أحداث اليوم بشكل واضح لتقليل القلق والارتباك. + +- تجزئة المهام: تقسيم المهام الكبيرة إلى خطوات أصغر وأكثر قابلية للإدارة باستخدام قوائم مرجعية بصرية. + +- المؤقّتات: مساعدة الأطفال على تعلّم إدارة وقتهم لكل مهمة. + +### 3. ضبط الاندفاع (Impulse Control) + +التعريف: القدرة على التوقّف، التفكير، والتحكّم في الاندفاعات قبل التصرف. + +التحديات: قد يتصرّف الأطفال المصابون بالتوحّد باندفاعية، أو ينخرطون في سلوكيات متكرّرة، غالباً من دون إدراك العواقب. + +الاستراتيجيات الأساسية: + +- السيناريوهات الاجتماعية (Social Scripts): تعليم السلوكيات الاجتماعية المتوقعة (مثل: "عذراً، هل يمكنني…") من خلال نصوص محدّدة. + +- التواصل: تعليم الأطفال طرقاً صحيحة ووظيفية للتعبير عن مشاعرهم شفهياً. + +- مخططات السلوك: تتبّع السلوكيات الإيجابية ومكافأة نجاح الطفل في ضبط اندفاعاته. + +- ممارسة التوقف: تشجيع الأطفال على "التوقف والتفكير" قبل الرد أو التصرف. + +### 4. التفكير النقدي وحل المشكلات (Critical Thinking and Problem Solving) + +التعريف: القدرة على التفكير النقدي، إدراك العلاقة بين السبب والنتيجة، وإيجاد حلول للمشكلات. + +التحديات: قد يواجه الأطفال المصابون بالتوحّد صعوبة في فهم العواقب، التكيف مع المشكلات الجديدة، أو ابتكار حلول في المواقف المتغيرة. + +الاستراتيجيات الأساسية: + +- القصص الاجتماعية: عرض كيفية التعامل مع مواقف حياتية حقيقية (مثل: عندما ينكسر أحد الألعاب أو عند مواجهة تحدٍ معيّن). + +- اللعب التمثيلي (Role-Playing): ممارسة اتخاذ القرارات وفهم وجهات نظر الآخرين من خلال اللعب المنظّم والمواقف الاجتماعية. + +- النماذج البصرية: تعليم استراتيجيات خطوة بخطوة مثل "توقف – فكر – تصرّف" لحل المشكلات. + +## المهارات التنفيذية عبر المراحل العمرية + +### الطفولة المبكرة (من 3–6 سنوات) + +في هذه المرحلة، يبدأ الأطفال ببناء مهارات الوظائف التنفيذية. قد يواجهون صعوبة في ضبط الاندفاع، اتباع التعليمات البسيطة، والتركيز. + +استراتيجيات الدعم: + +- الجداول البصرية للروتين: يجب أن تكون بسيطة وقصيرة لتجنّب الإرباك والإرهاق. + +- أنشطة السبب والنتيجة البسيطة. + +- التعلّم القائم على اللعب لتعزيز التنظيم الانفعالي. + +- تعزيز مهارات تبادل الأدوار وانتظار الدور. + +### الأعمار 7–11 سنوات + +مع تقدّم الأطفال في العمر، تصبح المهارات التنفيذية أكثر تطوّراً، لكنهم لا يزالون بحاجة إلى الدعم في التخطيط، تنظيم الانفعالات، واتخاذ القرارات الاجتماعية. + +استراتيجيات الدعم: + +- الجداول/التقويمات البصرية للواجبات والمهام. + +- تعليم تقنيات التنظيم الذاتي مثل التنفس العميق أو الانخراط في أنشطة مهدئة. + +- أنشطة وحالات منظّمة لحل المشكلات (مثل: "ماذا أفعل عندما…؟"). + +- ألعاب لعب الأدوار لممارسة المهارات الاجتماعية والانفعالية. + +### الأعمار 12–18 سنة + +يواصل المراهقون تطوير مهارات الوظائف التنفيذية، لكنهم يواجهون تعقيدات أكبر مرتبطة بالدراسة، الأنشطة الإضافية، والتوقعات الاجتماعية. + +استراتيجيات الدعم: + +- استخدام المخططات أو التطبيقات الرقمية لإدارة الدراسة والأنشطة. + +- تعليم كيفية تقسيم المشاريع الكبيرة إلى خطوات أصغر. + +- ممارسات اليقظة الذهنية (Mindfulness) لتنظيم الانفعالات. + +- التدريب على حل المشكلات الواقعية (مثل: إدارة مشاريع جماعية أو التعامل مع الخلافات). + +بناء مهارات الوظائف التنفيذية لدى الأطفال المصابين بالتوحّد هو عملية تدريجية وداعمة. ومن خلال استراتيجيات موجهة، وسائل بصرية، وروتين ثابت، يمكن للأطفال تطوير قدر أكبر من الاستقلالية والمرونة والقدرة على التحمّل الانفعالي. + + Previous Post + +###### [دليل تعليم مهارات الدفاع عن النفس في ABA](autism-self-advocacy-skills-aba) + + Next Post + +###### [إتقان تقنيات التحليل السلوكي الاستباقية والتفاعلية– احجز استشارتك الآن](proactive-reactive-aba-strategies-guide) + +### Similar Blog Posts + +![دليل استراتيجيات تحليل السلوك التطبيقي الاستباقية والتفاعلية— الصورة الرئيسية](/assets/images/hero-proactive-reactive-strategies.webp) + +#### [إتقان تقنيات التحليل السلوكي الاستباقية والتفاعلية– احجز استشارتك الآن](proactive-reactive-aba-strategies-guide) + +![نصائح حول المقدمات والنتائج التي يحتاجها كل والد/ة مصاب/ة بالتوحد لتجهيز أطفالهم للمدرسة - صورة رئيسية](/assets/images/hero-back-to-school.webp) + +#### [العودة إلى المدرسة بسهولة | تدخلات السلوك التحليلية (ABA) من خلال المقدمات والنتائج](aba-school-readiness-guide) + +![بطاقات](/assets/images/hero-first-then-cards.webp) + +#### [بطاقات "أولاً/ثم": تسهيل الانتقال بين الأنشطة للأطفال المصابين بالتوحّد](first-then-cards-autism-transitions) diff --git a/www/src/content/blog/ar/first-then-cards-autism-transitions.md b/www/src/content/blog/ar/first-then-cards-autism-transitions.md new file mode 100644 index 0000000..ad82086 --- /dev/null +++ b/www/src/content/blog/ar/first-then-cards-autism-transitions.md @@ -0,0 +1,121 @@ +--- +title: "بطاقات أولاً/ثم: تمكين الانتقالات للأطفال المصابين بالتوحد" +description: "تعرّف على كيفية دعم بطاقات أولاً/ثم للانتقال السلس والسلوكيات الإيجابية لدى الأطفال المصابين بالتوحد. اكتشف نصائح عملية وموارد محلية في أريزونا." +slug: "first-then-cards-autism-transitions" +canonical: "https://www.azinstitute4autism.com/ar/library/first-then-cards-autism-transitions" +lang: "ar" +translationKey: "first-then-cards-autism-transitions" +featuredImage: "/assets/images/hero-first-then-cards.webp" +date: "2025-09-01" +author: "rula-diab" +category: "Library" +tags: [] +draft: false +--- +# بطاقات "أولاً/ثم": تسهيل الانتقال بين الأنشطة للأطفال المصابين بالتوحّد + +![رولا دياب، المديرة الإكلينيكية، ماجستير في التربية، BCBA، LBA](/assets/images/rula-diab-avatar.jpg) + + رولا دياب، المديرة الإكلينيكية، ماجستير في التربية، BCBA، LBA + + 01 سبتمبر, 2025 + +![بطاقات](/assets/images/hero-first-then-cards.webp) + +تكون الانتقالات صعبة على العديد من الأطفال، وخاصة الأطفال ضمن طيف التوحد. بطاقات (أولاً/ثم) هي أداة بسيطة وفعّالة يمكن أن تساعد في تسهيل هذه الانتقالات، وتشجيع السلوكيات الإيجابية، ودعم الاستقلالية. + +## ما هي بطاقات "أولاً/ثم"؟ + +بطاقات "أولاً/ثم" هي وسائل بصرية توضّح تسلسل الأنشطة: + +- أولاً : المهمة أو النشاط الذي يجب إتمامه. + +- ثم : النشاط المفضل أو المكافأة التي تليه. + +على سبيل المثال: + +- أولاً : ربط حزام الأمان + +- ثم : مشاهدة الآيباد + +![first then cards](/assets/images/first-then-cards-seatbelt-ipad.png) + +يعتمد هذا الأسلوب على مبدأ بريماك (Premack Principle)، الذي يشير إلى أن النشاط الأكثر تفضيلاً يمكن أن يعزز أداء النشاط الأقل تفضيلاً. ومن خلال عرض التسلسل بشكل واضح، يستطيع الأطفال فهم التوقعات بشكل أفضل والشعور بمزيد من التحكم في روتينهم اليومي. + +## فوائد استخدام بطاقات "أولاً/ثم" + +- تقليل القلق : الجداول البصرية توفر القدرة على التنبؤ، مما يساعد في تقليل التوتر المرتبط بالانتقالات. + +- تعزيز التواصل : مفيدة بشكل خاص للأطفال غير الناطقين أو قليلي الكلام، حيث توفّر هذه البطاقات وسيلة واضحة لتوضيح التوقعات. + +- تعزيز الاستقلالية : يتعلم الأطفال اتباع الروتين مع تقليل الحاجة إلى التوجيه بمرور الوقت. + +- دعم السلوك الإيجابي : من خلال وضع توقعات واضحة وربطها بالمكافآت، يكون الأطفال أكثر ميلاً للانخراط في السلوكيات المرغوبة. + +## تطبيق بطاقات "أولاً/ثم" في المنزل + +- تحديد المهام والمكافآت : اختر مهمة يجب إتمامها ومكافأة محفّزة. + +- إنشاء الوسائل البصرية : استخدم صوراً أو رموزاً يفهمها طفلك. موارد. + +- تقديم البطاقة : اعرض البطاقة قبل البدء بالمهمة، مع شرح التسلسل. + +- الالتزام بالتنفيذ : تأكد من تقديم المكافأة مباشرة بعد إتمام المهمة لتعزيز السلوك. + +## أمثلة عملية + + المكان / الوقت + المهمة أول + ثم المكافأة + + الصباح + تنظيف الأسنان + مشاهدة الرسوم المتحركة + + المجتمع + التسوق من البقالة + زيارة الحديقة + + المدرسة + كتابة الاسم + اللعب بصندوق الحواس + + العيادة + إكمال النشاط + وقت الآي باد / الجهاز اللوحي + +## نصائح للنجاح + +- الاستمرارية هي الأساس : استخدم البطاقات بشكل منتظم لترسيخ الروتين. + +- تخصيص حسب طفلك : صمّم الصور والمكافآت بما يتناسب مع تفضيلات طفلك وفهمه. + +- ابدأ بالبساطة : ابدأ بمهام سهلة وزد مستوى الصعوبة تدريجياً مع ازدياد راحة الطفل باستخدام البطاقات. + +## الموارد المحلية في أريزونا + +يقع معهد أريزونا للتوحّد (AIA) في سكوتسديل في فينيكس، ويقدّم الدعم والموارد للأسر. + +- استشارات مجانية : يمكنك حجز [استشارة مجانية](../../client-consultation) لمناقشة استراتيجيات مخصّصة لطفلك. + +- العلاج المنزلي : متاح لتقديم الدعم داخل بيئة الطفل الطبيعية. + +- متجر AIA القادم : قريباً ستتمكّن من الوصول إلى مجموعة متنوعة من أدوات الدعم البصري، بما في ذلك بطاقات "أولاً/ثم" ومجموعات PECS، عبر متجرنا الإلكتروني. ترقّبوا التحديثات. + + Previous Post + +###### [التعزيز الإيجابي في علاج تحليل السلوك التطبيقي (ABA) لتشجيع تطوير المهارات](positive-reinforcement-techniques) + +### Similar Blog Posts + +![أتقن إدارة السلوك: اكتشف الوظائف الأربع للسلوك – الصورة الرئيسية](/assets/images/hero-behavior-functions-management.webp) + +#### [إتقان إدارة السلوك: اكتشف الوظائف الأربع للسلوك](behavior-management-functions-guide) + +![الصورة الرئيسية – استراتيجيات مهارات الوظائف التنفيذية للأطفال المصابين بالتوحّد](/assets/images/hero-executive-functioning-skills-autism.webp) + +#### [مهارات الوظائف التنفيذية والتوحّد](executive-functioning-skills-autism) + +![دليل استراتيجيات تحليل السلوك التطبيقي الاستباقية والتفاعلية— الصورة الرئيسية](/assets/images/hero-proactive-reactive-strategies.webp) + +#### [إتقان تقنيات التحليل السلوكي الاستباقية والتفاعلية– احجز استشارتك الآن](proactive-reactive-aba-strategies-guide) diff --git a/www/src/content/blog/ar/positive-reinforcement-techniques.md b/www/src/content/blog/ar/positive-reinforcement-techniques.md new file mode 100644 index 0000000..2caad26 --- /dev/null +++ b/www/src/content/blog/ar/positive-reinforcement-techniques.md @@ -0,0 +1,217 @@ +--- +title: "التعزيز الإيجابي في علاج تحليل السلوك التطبيقي (ABA) لتشجيع تطوير المهارات" +description: "تعلّم أساليب التعزيز الإيجابي الفعّالة لتشجيع السلوكيات المرغوبة لدى الأطفال. اكتشف نصائح وأدوات مرئية وأفضل الممارسات للآباء." +slug: "positive-reinforcement-techniques" +canonical: "https://www.azinstitute4autism.com/ar/library/positive-reinforcement-techniques" +lang: "ar" +translationKey: "positive-reinforcement-techniques" +featuredImage: "/assets/images/hero-positive-reinforcement-techniques.webp" +date: "2025-08-05" +author: "rula-diab" +category: "Library" +tags: [] +draft: false +--- +# التعزيز الإيجابي في علاج تحليل السلوك التطبيقي (ABA) لتشجيع تطوير المهارات + +![رولا دياب، المديرة الإكلينيكية، ماجستير في التربية، BCBA، LBA](/assets/images/rula-diab-avatar.jpg) + + رولا دياب، المديرة الإكلينيكية، ماجستير في التربية، BCBA، LBA + + 05 أغسطس, 2025 + +![العلاج السلوكي المعرفي (ABA) التعزيز الإيجابي](/assets/images/hero-positive-reinforcement-techniques.webp) + +يُعد التعزيز الإيجابي أحد أقوى الأدوات في تحليل السلوك التطبيقي (ABA)، وهو فعّال بشكل خاص في دعم الأطفال المصابين بالتوحد. بدلاً من التركيز على الأخطاء، يحتفي التعزيز الإيجابي بكل خطوة في الاتجاه الصحيح—مما يعزز الدافعية، والثقة بالنفس، ويقوي الروابط الأسرية. + +في هذا المقال، ستتعرف على: + +- ماذا يعني التعزيز الإيجابي في علاج ABA + +- الفوائد الرئيسية للأطفال ومقدمي الرعاية + +- دليل خطوة بخطوة للوالدين + +- الأخطاء الشائعة وكيفية تجنبها + +- نصائح للحفاظ على تفاعل طفلك + +سواء كنت تتعامل مع الروتين اليومي، أو تُعلّم مهارات جديدة، أو تسعى ببساطة لتقليل السلوكيات الصعبة، فإن هذه الاستراتيجيات المستندة إلى الأدلة ستمنحك أنت وطفلك القوة والدعم. + +## ما هو التعزيز الإيجابي؟ + +يحدث التعزيز الإيجابي عندما يتبع السلوك نتيجة مرغوبة مباشرة، مما يزيد من احتمال تكرار هذا السلوك في المستقبل. في تحليل السلوك التطبيقي (ABA)، قد يعني ذلك تقديم مدح، لعبة مفضلة، وقت إضافي أمام الشاشة، أو وجبة خفيفة مميزة مباشرة بعد أن يُكمل الطفل مهمة معينة. + +⚙️ هل كنت تعلم؟ تُظهر الأبحاث في مجال ABA أن التعزيز الفوري يقوي الصلة بين السلوك والمكافأة أكثر من المكافآت المتأخرة. + +## لماذا يُعتبر التعزيز الإيجابي مهماً في تحليل السلوك التطبيقي (ABA) + +- يبني الدافعية والثقة بالنفس: يتعلم الأطفال بشكل أسرع عندما يعلمون أنهم سيحصلون على مكافأة مقابل مجهودهم. + +- يعزز العلاقات: التفاعلات الإيجابية تبني الثقة بينك وبين طفلك. + +- يقلل من السلوكيات الصعبة: مع زيادة السلوكيات المرغوبة، تنخفض السلوكيات غير المرغوبة بشكل طبيعي. + +- يعزز تنظيم المشاعر: المكافآت تساعد الأطفال على ربط المشاعر الإيجابية بالتحكم الذاتي. + +⚙️ نصيحة: يكون التعزيز أكثر فعالية عندما يكون صادقًا وشخصيًا. استخدم مديحًا محددًا مثل: "أحببت كيف وضعت حذاءك في مكانه!" بدلاً من قول عام مثل: "عمل رائع!" + +## الفوائد الرئيسية للأطفال المصابين بالتوحد من التعزيز الإيجابي + + الفائدة + كيف تساعد + + التعاون واتباع الروتين + يساعد الطفل على توقّع النتائج والشعور بالأمان + + تقدير الذات + التجارب الناجحة تعزز الثقة بالنفس + + مهارات التواصل والتفاعل الاجتماعي + يشجّع الطفل على التفاعل مع مقدمي الرعاية + + إدارة الانتقال بين الأنشطة + يقلل من القلق المصاحب للتغيرات أو التنقلات في الروتين + + اكتساب المهارات + يُقسّم المهام المعقدة إلى خطوات بسيطة يمكن تعلمها بشكل تدريجي وفعّال + +## دليل خطوة بخطوة للوالدين + +### 1. تحديد السلوك المستهدف بشكل واضح + +- غير واضح: "كن جيدًا." + +- واضح: "ضع ألعابك في الصندوق بعد الانتهاء من اللعب." + +### 2. اختيار المعزز المناسب + +راقب ما يفضله طفلك فعليًا، مثل: + +- ملصقات أو لوحات الرموز (Token Boards) + +- بضع دقائق من وقت الشاشة المفضل + +- وجبة خفيفة محببة أو نشاط ممتع + +⚙️ نصيحة: قم بالتناوب بين 3 إلى 5 معززات لتجنّب الملل أو الإشباع الزائد (السأم من المعزز). + +### 3. تقديم التعزيز فورًا + +- قَدِّم التعزيز خلال 1 إلى 3 ثوانٍ بعد حدوث السلوك. + +- استخدم المديح اللفظي الحماسي (مثال: "عمل رائع في تنظيف أسنانك!") بالإضافة إلى المعزز المختار. + +### 4. استخدام الوسائل البصرية الداعمة + +- جداول السلوك: تتبّع التقدّم باستخدام الملصقات. + +- بطاقات "أولًا/ثمّ" (First/Then): "أولًا أنهِ واجبك، ثمّ العب في الخارج." + +- مثال على جدول "أولًا / ثمّ" (First / Then) أولًا... ثمّ... ارتدي بيجامتك اختر قصة قبل النوم أنهِ 5 مسائل رياضيات 5 دقائق من استخدام التابلت + +### 5. تعزيز السلوك الإيجابي: عزز الجهد، وليس فقط النتائج + +- احتفل بالمحاولات والتحسّن التدريجي حتى وإن لم تكن مثالية: + +- "لاحظت كيف حاولت مشاركة لعبتك. هذا رائع!" + +## الأخطاء الشائعة وكيفية تجنبها + + الخطأ + الحل + + تأخير المكافآت + استخدم مؤقتًا لتحديد اللحظة المناسبة + + تعزيز السلوك غير المرغوب فيه + قدّم المكافأة فقط بعد السلوك الصحيح + + استخدام الرشوة + خطط للمكافآت مسبقًا، ولا تنتظر نوبات الغضب + + استخدام مكافأة واحدة بشكل مفرط + بدّل المكافآت ضمن "قائمة تعزيز" + + التعليمات الغامضة + كن دقيقًا وقابلًا للملاحظة في التعليمات + + عدم الاستمرارية في التطبيق + استخدم جداول أو تذكيرات لنفسك + +## الفرق بين التعزيز والرشوة + +التعزيز مُخطط له ومتسق ويتبع السلوكيات المرغوبة. أما الرشوة، فهي رد فعل يُقدم لوقف السلوك السيئ. + + التعزيز + الرشوة + + "أنهيت واجبك، لذا الآن يمكنك اللعب!" + "توقف عن الصراخ وسأعطيك حلوى." + + يزيد من الدافعية على المدى الطويل + يُقلل من الثقة والمكاسب طويلة الأمد + +## متى تُراجع استراتيجيتك؟ + +إذا لم تلاحظ تحسّنًا: + +- تحقق من الفهم: هل يفهم الطفل ما يُطلب منه؟ + +- عدّل المكافآت: اختر شيئًا أكثر تحفيزًا. + +- قم بتشكيل السلوك: عزز الخطوات الصغيرة نحو الهدف. + +- راجع البيئة: قلّل من المشتتات والتعب والتعليمات غير الواضحة. + +- استعن بخبير: تواصل مع معالج AIA للحصول على استراتيجيات مخصصة. + +## استراتيجيات متقدمة: جداول التعزيز والتقليل التدريجي + +- جدول النسبة الثابتة (FR): مكافأة بعد عدد معين من الاستجابات (مثلاً: كل 3 مرات). + +- جدول النسبة المتغيرة (VR): مكافأة بشكل غير متوقع (كما في ماكينات الحظ). + +- التقليل التدريجي للمكافآت: زد الجهد المطلوب أو قلل حجم المكافأة تدريجيًا لتعزيز الاستقلالية. + +جدول سريع: + + نوع الجدول + مثال + متى يُستخدم + + FR2 + مكافأة بعد كل خطوتين صحيحتين + لبناء المهارات الجديدة + + VR3 + مكافأة في المتوسط كل 3 مرات + للحفاظ على السلوك المُكتسب + +## تحفيز الاستقلالية: الخطوات التالية + +التعزيز الإيجابي في ABA ليس مجرد تقنية، بل وسيلة لبناء الدافعية طويلة الأمد، والتنظيم العاطفي، والاستقلالية لدى الأطفال ذوي التوحد. من خلال تحديد السلوكيات بوضوح، واختيار مكافآت ذات معنى، وتقديمها بسرعة وبشكل ثابت، ستخلق بيئة تعليمية داعمة في المنزل وخارجه. + +للحصول على دعم شخصي واستشارة مجانية، تواصل مع معهد أريزونا للتوحد اليوم. دعونا نحتفل بكل نجاح معًا! + + Previous Post + +###### [إتقان تقنيات التحليل السلوكي الاستباقية والتفاعلية– احجز استشارتك الآن](proactive-reactive-aba-strategies-guide) + + Next Post + +###### [بطاقات "أولاً/ثم": تسهيل الانتقال بين الأنشطة للأطفال المصابين بالتوحّد](first-then-cards-autism-transitions) + +### Similar Blog Posts + +![دليل استراتيجيات تحليل السلوك التطبيقي الاستباقية والتفاعلية— الصورة الرئيسية](/assets/images/hero-proactive-reactive-strategies.webp) + +#### [إتقان تقنيات التحليل السلوكي الاستباقية والتفاعلية– احجز استشارتك الآن](proactive-reactive-aba-strategies-guide) + +![نصائح حول المقدمات والنتائج التي يحتاجها كل والد/ة مصاب/ة بالتوحد لتجهيز أطفالهم للمدرسة - صورة رئيسية](/assets/images/hero-back-to-school.webp) + +#### [العودة إلى المدرسة بسهولة | تدخلات السلوك التحليلية (ABA) من خلال المقدمات والنتائج](aba-school-readiness-guide) + +![الصورة الرئيسية – استراتيجيات مهارات الوظائف التنفيذية للأطفال المصابين بالتوحّد](/assets/images/hero-executive-functioning-skills-autism.webp) + +#### [مهارات الوظائف التنفيذية والتوحّد](executive-functioning-skills-autism) diff --git a/www/src/content/blog/ar/proactive-reactive-aba-strategies-guide.md b/www/src/content/blog/ar/proactive-reactive-aba-strategies-guide.md new file mode 100644 index 0000000..b2f01ea --- /dev/null +++ b/www/src/content/blog/ar/proactive-reactive-aba-strategies-guide.md @@ -0,0 +1,85 @@ +--- +title: "إتقان تقنيات التحليل السلوكي الاستباقية والتفاعلية– احجز استشارتك الآن" +description: "تعلم استراتيجيات الـ ABA الاستباقية والتفاعلية لخفض السلوكيات المشكلية وتعزيز النجاح. اقرأ الآن وحدد موعد استشارة مع معهد أريزونا للتوحد." +slug: "proactive-reactive-aba-strategies-guide" +canonical: "https://www.azinstitute4autism.com/ar/library/proactive-reactive-aba-strategies-guide" +lang: "ar" +translationKey: "proactive-reactive-aba-strategies-guide" +featuredImage: "/assets/images/hero-proactive-reactive-strategies.webp" +date: "2025-07-19" +author: "rula-diab" +category: "Library" +tags: [] +draft: false +--- +# إتقان تقنيات التحليل السلوكي الاستباقية والتفاعلية– احجز استشارتك الآن + +![رولا دياب، المديرة الإكلينيكية، ماجستير في التربية، BCBA، LBA](/assets/images/rula-diab-avatar.jpg) + + رولا دياب، المديرة الإكلينيكية، ماجستير في التربية، BCBA، LBA + + 19 يوليو, 2025 + +![دليل استراتيجيات تحليل السلوك التطبيقي الاستباقية والتفاعلية— الصورة الرئيسية](/assets/images/hero-proactive-reactive-strategies.webp) + +تُعد الاستراتيجيات الاستباقية والتفاعلية أدوات أساسية في تحليل السلوك التطبيقي (ABA) لدعم الأفراد المصابين بالتوحد. تهدف هذه الاستراتيجيات إلى خلق بيئة إيجابية وداعمة تعزز السلوكيات المرغوبة وتقلل من احتمالية حدوث السلوكيات الصعبة. في هذه المدونة، سنستعرض كل من الاستراتيجيات الاستباقية والتفاعلية، مع تسليط الضوء على أهميتها في نجاح العلاج السلوكي التطبيقي. + +## ما هي الاستراتيجيات الاستباقية؟ + +[الاستراتيجيات الاستباقية](https://pubmed.ncbi.nlm.nih.gov/34997368/) تهدف إلى منع السلوكيات الصعبة قبل حدوثها، من خلال معالجة المحفزات المحتملة، وتلبية احتياجات الفرد بطرق إيجابية، وتعليم المهارات المستهدفة. تساعد هذه الاستراتيجيات في خلق بيئة تشجع على التفاعل الإيجابي وتقلل من العوامل التي قد تؤدي إلى سلوكيات غير مرغوب فيها. + +من خلال التركيز على الوقاية واكتساب المهارات، تُكسب الاستراتيجيات الاستباقية الأفراد الأدوات اللازمة للنجاح وتقلل من احتمالية ظهور السلوكيات الإشكالية. ومن أهم الاستراتيجيات الاستباقية في ABA: + +- تعديلات في البيئة: تعديل البيئة المادية لتقليل المشتتات أو المحفزات المحتملة للسلوك الصعب. + +- وضع روتين ثابت ومتوقع لمساعدة الأفراد على فهم ما يمكن توقعه، مما يقلل من مشاعر القلق وعدم اليقين. + +- تدخلات سابقة للسلوك (السوابق): تعديل المهام الصعبة أو غير المحببة لجعلها أكثر قابلية للإدارة. يمكن أن يشمل ذلك تقسيم المهام إلى خطوات أصغر، أو تقديم دعم إضافي، أو ضبط مستوى الصعوبة ليناسب قدرات الفرد. + +- تقديم خيارات يعطي الأفراد إحساسًا بالتحكم، مما قد يقلل من المقاومة. على سبيل المثال، السماح للطفل بالاختيار بين مهمتين أو تحديد ترتيب الأنشطة. + +- تعليم سلوكيات بديلة: تعليم الأفراد تطبيق سلوكيات بديلة أكثر ملاءمة يساعد في استبدال السلوكيات الصعبة. + +- تعليم التواصل الوظيفي لتمكين الأفراد من التعبير عن احتياجاتهم بطريقة مناسبة، مثل استخدام الكلمات، أو [نظام PECS](https://www.iidc.indiana.edu/irca/articles/what-is-the-picture-exchange-communication-system-or-pecs)، أو جهاز تواصل. + +- تعزيز السلوكيات البديلة: التعزيز عنصر أساسي للحفاظ على السلوكيات الجديدة. من خلال توفير التعزيز الإيجابي بشكل متسق، تزداد احتمالية ثبات السلوك الجديد. + +- تحديد المحفزات ومعالجتها: تحديد المحفزات التي تؤثر في السلوك ومعالجتها يمكن أن يمنع حدوث السلوكيات الصعبة. + +- وضع توقعات واضحة: توفير دعم بصري لتعزيز السلوكيات المتوقعة. تشمل الأدوات الفعالة الجداول المصورة، المؤقتات، والانتقالات المنظمة بين الأنشطة. + +- التعزيز الإيجابي المنتظم: تقديم التعزيز الإيجابي باستمرار للسلوكيات المرغوبة يعزز استمراريتها ويقلل من احتمالية ظهور السلوكيات الصعبة. + +## ما هي الاستراتيجيات التفاعلية؟ + +[الاستراتيجيات التفاعلية](https://www.ncbi.nlm.nih.gov/books/NBK355364/) تُستخدم عند حدوث سلوك مشكل، وتهدف إلى التعامل مع هذه السلوكيات وتعديلها بشكل فعال، مع دعم الفرد خلال تلك اللحظات. + +- إدارة الأزمات: تطبيق تقنيات تهدئة لخفض التصعيد ومساعدة الأفراد على الهدوء، والتعامل مع السلوك العدواني أو المزعج في اللحظة. + +- خطط التدخل السلوكي (BIPs): اتباع خطط تدخل سلوكية فردية يتم تطويرها بواسطة محلل السلوك، وتستند إلى احتياجات الفرد ونقاط قوته وتحدياته. توفّر هذه الخطط إرشادات واضحة حول كيفية الاستجابة للسلوكيات الصعبة بفعالية. + +تلعب كل من [الاستراتيجيات الاستباقية والتفاعلية](https://www.ncbi.nlm.nih.gov/pmc/articles/PMC7473487/) دورًا حاسمًا في جلسات تحليل السلوك التطبيقي. فبينما تسهم الاستراتيجيات الاستباقية في خلق بيئة مشجعة للسلوك الإيجابي وتقلل من احتمالية السلوكيات الصعبة، توفّر الاستراتيجيات التفاعلية إطارًا للتعامل الفعّال عند ظهور هذه السلوكيات. + +في معهد أريزونا للتوحد، نحن ملتزمون بتطبيق هذه الاستراتيجيات بكفاءة لدعم الأفراد الذين نعمل معهم وتعزيز جودة حياتهم. + + Previous Post + +###### [مهارات الوظائف التنفيذية والتوحّد](executive-functioning-skills-autism) + + Next Post + +###### [التعزيز الإيجابي في علاج تحليل السلوك التطبيقي (ABA) لتشجيع تطوير المهارات](positive-reinforcement-techniques) + +### Similar Blog Posts + +![الصورة الرئيسية – استراتيجيات مهارات الوظائف التنفيذية للأطفال المصابين بالتوحّد](/assets/images/hero-executive-functioning-skills-autism.webp) + +#### [مهارات الوظائف التنفيذية والتوحّد](executive-functioning-skills-autism) + +![بطاقات](/assets/images/hero-first-then-cards.webp) + +#### [بطاقات "أولاً/ثم": تسهيل الانتقال بين الأنشطة للأطفال المصابين بالتوحّد](first-then-cards-autism-transitions) + +![مهارات الدفاع عن النفس لدى الأطفال ذوي التوحّد عبر تحليل السلوك التطبيقي (ABA) – الصورة الرئيسية](/assets/images/hero-teach-self-advocacy.webp) + +#### [دليل تعليم مهارات الدفاع عن النفس في ABA](autism-self-advocacy-skills-aba) diff --git a/www/src/content/blog/en/aac-visual-supports-autism.md b/www/src/content/blog/en/aac-visual-supports-autism.md new file mode 100644 index 0000000..cc82b04 --- /dev/null +++ b/www/src/content/blog/en/aac-visual-supports-autism.md @@ -0,0 +1,153 @@ +--- +title: "AAC and Visual Supports 101: Helping Your Child Be Heard" +description: "Learn how AAC and visual supports help autistic children communicate, reduce frustration, and build routines at home, school, and ABA therapy." +slug: "aac-visual-supports-autism" +canonical: "https://www.azinstitute4autism.com/library/aac-visual-supports-autism" +lang: "en" +translationKey: "aac-visual-supports-autism" +featuredImage: "/assets/images/visual-supports-aac-communication.png" +date: "2026-05-28" +author: "rula-diab" +category: "Library" +tags: [] +draft: false +--- +# AAC and Visual Supports 101: Helping Your Child Be Heard + +![Rula Diab, Clinical Director, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) + + Rula Diab, Clinical Director, M.Ed, BCBA, LBA + + 28 May, 2026 + +![child pointing to a picture on a digital AAC tablet during play](/assets/images/visual-supports-aac-communication.png) + +Navigating an autism diagnosis often means learning a whole new vocabulary. Among the most important (and sometimes overwhelming) terms you will encounter are "augmentative and alternative communication" (AAC) and "visual supports." + +As a parent, your primary goal is to understand your child and help them be understood. This guide will walk you through what these tools are, how they empower your child to communicate effectively, and why introducing them will not hinder their spoken language development. + +What you need to know: AAC (Augmentative and Alternative Communication) and visual supports are tools that help autistic children understand their world and express their needs. From simple picture cards to high-tech speech tablets, these supports reduce anxiety, promote independence, and empower children who communicate differently. + +## What Are AAC and Visual Supports? + +Communication is much more than just spoken words. Gestures, facial expressions, and pointing are all valid ways we share information. For autistic children, processing spoken language can sometimes be overwhelming. Visual supports and AAC provide a concrete, permanent way to process information at their own pace. They help to reduce anxiety by making expectations clear and predictable. + +Visual supports are any visual item used to communicate a message. This includes physical objects, photographs, or drawings. AAC is a broader term that encompasses any tool or method used to supplement or replace spoken language. When combined, these resources empower children to express their wants, needs, and feelings safely and effectively. For a deeper dive into how we foster these connections, you can explore our comprehensive guide on [Building Communication & Social Skills in Autistic Children](communication-social-skills-autistic-children-guide). + +A Note for Parents: Finding the right communication tool is a journey. Your child might use a mix of gestures, vocalizations, and visual supports throughout the day. Every form of communication is valid and worth celebrating. + +## The Big Myth: Will AAC Stop My Child From Talking? + +One of the most common fears parents express is that introducing a communication device or picture exchange system will make their child stop trying to speak verbally. It is completely natural to worry about this. However, this is a widespread myth that is not supported by clinical research. + +Using augmentative and alternative communication devices actually supports speech development. When a child is struggling to communicate, the resulting frustration often blocks learning. By providing a reliable way to communicate, AAC lowers anxiety and removes the pressure to perform verbally. This relaxed state makes it easier for many children to attempt vocalizations. + +Furthermore, high-tech devices provide consistent auditory feedback. When a child presses a button and hears the word spoken aloud, it reinforces the connection between the concept and the sound. Far from hindering speech, visual supports and AAC give children the foundational language skills they need to thrive. + +## Types of Visual Supports and AAC Systems + +The world of AAC is incredibly diverse. It ranges from very simple tools, such as cards and lists, to advanced digital technology. Understanding the types of visual schedules and devices available will help you collaborate effectively with your child's care team. + +Generally, these tools are categorized into three main levels. Low-tech options require no batteries or electronics. Mid-tech options might include simple battery-operated buttons that play a recorded message. High-tech options involve sophisticated software, including context-aware AI solutions. + +Comparing Low-Tech and High-Tech Options + + Feature + Low-Tech Visual Supports + High-Tech AAC Devices + + Examples + Picture cards, choice boards, First/Then boards + Tablets with specialized software, speech-generating devices + + Cost + Very low (often just the cost of printing and laminating) + High (though often covered by insurance) + + Customization + Requires physical printing and cutting to update + Instantly customizable with thousands of digital vocabulary words + + Portability + Easy to carry, immune to water damage or dead batteries + Requires charging and careful handling + + Best For + Establishing basic routines, offering immediate choices + Building complex sentences, robust expressive language + +No single option is universally better than another. The most appropriate communication system depends on the child’s individual needs, strengths, and current skill levels. Many families find that a hybrid approach works best, allowing the child to use different communication supports across settings and situations. + +## Using Visual Supports in Everyday Life + +Integrating visual tools into your daily routine can transform your home environment. Children with autism often crave predictability. When they do not know what is coming next, they may experience severe distress or meltdowns. Visual supports serve as a map for the day, guiding them safely from one activity to another. + +Morning routines are a perfect place to start. A visual schedule in the bathroom can show step-by-step pictures of using the toilet, washing hands, and brushing teeth. Because the pictures do not disappear like spoken words do, your child can reference them as many times as they need without feeling rushed. + +Mealtime and errands are other common areas where visuals shine. You can use choice boards to let your child select their snack, giving them a sense of control and reducing mealtime battles. If you are heading to the grocery store, a First/Then board can clearly communicate the plan. Showing a picture of the grocery store (First) followed by a picture of the park (Then) helps your child understand that a preferred activity is coming soon. You can read more about practical transition strategies in our article covering [First/Then Cards: Empowering Transitions for Autistic Children](first-then-cards-autism-transitions). + +## How ABA Therapy Integrates AAC and Visuals + +At the Arizona Institute for Autism, we believe that communication is the foundation of all learning. Applied Behavior Analysis (ABA) therapy is highly effective for teaching children how to use AAC and visual supports in a natural, engaging way. We do not view behavior as something to simply be stopped; we view it as communication. + +Our therapists use visual supports to clarify expectations during sessions. If a child is nonverbal or currently lacks the expressive language to ask for a break, we teach them how to use their AAC device to advocate for themselves. By reinforcing their attempts to communicate, we help them realize that their voice (whether spoken, signed, or digital) has power. + +Collaboration is key to this process. We frequently coordinate with speech-language pathologists to ensure consistency across all environments. We also work closely with families to ensure the tools used in the clinic are practical for use at home. Understanding your child's unique sensory profile also plays a role in how we design these supports, a topic we explore further in our guide on [Understanding Sensory Processing in the Context of ABA Therapy](sensory-processing). + + Frequently Asked Questions + +## About AAC and Visual Supports + +### What does AAC stand for? + +AAC stands for Augmentative and Alternative Communication. It includes all the ways we share our ideas and feelings without talking, such as pointing, using picture boards, or typing on a digital device. + +### Will using AAC stop my child from learning to speak? + +No. Extensive research shows that AAC does not hinder speech development. In fact, it often encourages vocalizations by removing the pressure and frustration associated with communication. + +### How do I know if my child needs visual supports? + +If your child struggles with transitions, experiences frequent meltdowns, or has difficulty understanding spoken instructions, visual supports like schedules and First/Then boards can provide much-needed predictability. + +### What is a First/Then board? + +A First/Then board is a simple visual tool showing a less preferred activity followed by a highly preferred one (for example, 'First wash hands, Then eat snack'). It helps children understand expectations and transitions. + +### Are visual supports only for nonverbal children? + +Not at all. Even highly verbal autistic children can benefit from visual supports, especially during moments of high stress or sensory overload when processing spoken language becomes difficult. + +### How expensive are AAC devices? + +The cost varies widely. Low-tech options like printed picture cards are nearly free. High-tech speech-generating tablets can be expensive, but they are often covered by health insurance after an evaluation by a speech-language pathologist. + +### Can I use visual supports at home? + +Yes, visual supports are incredibly effective at home. You can use them to outline bedtime routines, mealtime expectations, or steps for getting dressed. + +### How does ABA therapy use AAC? + +ABA therapy incorporates AAC to help children build functional communication skills, reduce frustration-based behaviors, and practice self-advocacy in a supportive environment. + + Previous Post + +###### [Autism Guide for Parents and Caregivers](parents-guide-to-autism-and-aba) + + Next Post + +###### [Supporting Friendships and Social Play for Children with Autism](autism-friendships-social-play-support) + +### Similar Blog Posts + +![A parent and an autistic child smiling while using a picture communication board during playtime.](/assets/images/communication-skills-autistic-children-hero_img.png) + +#### [Building Communication & Social Skills in Autistic Children: A Practical Guide for Families](communication-social-skills-autistic-children-guide) + +![Parent and autistic child using visual supports, structured play, and calm routines together](/assets/images/family-guide-to-autism-aba-at-home_hero.png) + +#### [Autism Guide for Parents and Caregivers](parents-guide-to-autism-and-aba) + +![Three children engaging happily in parallel play on a colorful rug.](/assets/images/parallel-players-hero.png) + +#### [Supporting Friendships and Social Play for Children with Autism](autism-friendships-social-play-support) diff --git a/www/src/content/blog/en/aba-school-readiness-arizona.md b/www/src/content/blog/en/aba-school-readiness-arizona.md new file mode 100644 index 0000000..0f6d7ff --- /dev/null +++ b/www/src/content/blog/en/aba-school-readiness-arizona.md @@ -0,0 +1,163 @@ +--- +title: "ABA School Readiness in Arizona | AIA Preparatory Academy (Ages 2–6)" +description: "Early school readiness program mixing ABA methods with an accredited curriculum to help children ages 2–6 with academic, social, and communication skills." +slug: "aba-school-readiness-arizona" +canonical: "https://www.azinstitute4autism.com/library/aba-school-readiness-arizona" +lang: "en" +translationKey: "aba-school-readiness-arizona" +featuredImage: "/assets/images/hero-aba-preschool-az_800x.jpg" +date: "2025-08-21" +author: "rula-diab" +category: "Library" +tags: [] +draft: false +--- +# Now Enrolling: AIA Preparatory Academy for Children Ages 2–6 + +![Rula Diab, Clinical Director, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) + + Rula Diab, Clinical Director, M.Ed, BCBA, LBA + + 21 August, 2025 + +![teaching academic, social, communications, and independence skills](/assets/images/hero-aba-preschool-az_800x.jpg) + +At the Arizona Institute for Autism (AIA), children ages 2–6 are welcomed into the AIA Preparatory Academy, a unique program that combines accredited curriculum with Applied Behavior Analysis (ABA). Our goal is to create a structured, nurturing, and supportive learning environment where every child can develop the skills they need for long-term success in school and life. + +## Our Unique Approach to Early Childhood Development + +Traditional education systems may not provide the individualized support some children need to thrive. AIA Preparatory Academy uses evidence-based behavioral strategies within an academic setting to strengthen social, emotional, communication, and foundational academic skills. This approach is especially beneficial for children with autism or developmental differences, as it builds independence while preparing them for future classroom transitions. + +## Who Teaches at AIA Preparatory Academy? + +Our team of highly trained professionals ensures that children receive the best balance of academic learning and individualized care: + +- Registered Behavior Technicians (RBTs): Provide one-on-one and small group support to keep children engaged. + +- Master’s-Level Clinical Instructors: Lead instruction, oversee case planning, and ensure data-driven decisions guide progress. + +- Collaborative Team Support: Every classroom maintains low ratios so that children benefit from consistent attention and personalized teaching. + +## What Makes Our Program Stand Out? + +Unlike traditional preschools, AIA Preparatory Academy embeds ABA strategies throughout the day. Key program features include: + +- Accredited early childhood curriculum tailored to developmental needs + +- Play-based learning balanced with structured routines + +- Group instruction covering language, communication, social skills, early academics, and self-help independence + +- Structured circle time and learning centers for peer interaction + +- Ongoing assessments for tiered placement and readiness for transition + +## Transition-Ready Learning + +Children are placed in one of two tiers based on their readiness: + +- Intensive 1:1 Learning for children new to structured environments. + +- Small Group Learning where children begin following group instructions and routines, preparing them to enter mainstream kindergarten or early elementary settings. + +Each child’s customized plan is tailored to their developmental goals while encouraging progress in group settings. Whether a child is just starting to attend intensive 1:1 learning or ready to follow group instructions, we meet them where they are and help them grow. + +## Supporting the Whole Child + +AIA Preparatory Academy is ideal for children who may benefit from: + +- A structured classroom with consistent ABA support + +- Exposure to group learning and social opportunities + +- Early skill-building in communication, play, life skills and independence + +- Preparation for long-term academic success + +## Enroll Today in AIA Preparatory Academy program + +If your child is between the ages of 2 and 6 and could benefit from a program that integrates ABA therapy with accredited education, we invite you to enroll at AIA Preparatory Academy. Together, we can create the foundation for confident, capable learners. + +## Comparison: Traditional preschool vs AIA Preparatory Academy + + Feature + Traditional Preschool + AIA Preparatory Academy + + Curriculum + General early childhood curriculum + Accredited curriculum with ABA integration + + Individualized Support + Limited, often 1:10+ ratios + Low ratios with 1:1 and small group instruction + + Behavioral Strategies + Not consistently embedded + ABA principles woven into every activity + + Social Skills Development + Play and peer interaction + Peer interaction with guided skill-building + + Progress Monitoring + Periodic teacher assessments + Continuous data-driven progress evaluation + + Transition Readiness + General kindergarten prep + Tiered learning paths for smooth transitions + + Frequently Asked Questions + +## AIA Preparatory Academy Tips + +### What is AIA Preparatory Academy? + +ABA Preparatory Academy combines traditional early education with Applied Behavior Analysis strategies, helping children build communication, social, life skills and academic skills in a structured environment. + +### Who benefits most from AIA Preparatory Academy? + +AIA Preparatory Academy is especially effective for children with autism or developmental delays, but any child who thrives in structured, individualized settings may benefit. + +### How does Our school readiness program prepare children for kindergarten? + +Through tiered placement, children gradually transition from one-on-one learning to small group instruction, building confidence and independence before moving to a traditional school environment. + +### Is the AIA Preparatory Academy accredited? + +Our program integrates an accredited curriculum aligned with Arizona early education standards while incorporating ABA practices. + +### How are progress and outcomes measured? + +Progress is tracked continuously by BCBA, using data collection and analysis, ensuring that every child’s goals are personalized and updated as they grow. + +### What age group does AIA Preparatory Academy serve? + +We currently serve children ages 2 to 6 who are in their most critical years of early development. + +### How do I enroll my child? + +Families can contact the Arizona Institute for Autism directly to schedule a consultation and learn more about the enrollment process. + + Previous Post + +###### [Positive Reinforcement in ABA Therapy to Encourage Skill Development](positive-reinforcement-techniques) + + Next Post + +###### [Autism and Fall Break: How to Keep Routines Calm and Predictable](autism-fall-break-routine-tips-halloween-thanksgiving) + +### Similar Blog Posts + +![November AIA Update - hero image](/assets/images/hero-november-2022-aia-update_800x.jpg) + +#### [November AIA Update](november-2022-aia-update) + +![Critical Thinking Skills for Children with Autism - hero image](/assets/images/hero-critical-thinking-skills_800x.jpg) + +#### [Critical Thinking Skills for Children with Autism](critical-thinking-skills) + +![proactive reactive aba strategies guide - hero image](/assets/images/hero-proactive-reactive-strategies.webp) + +#### [Master Proactive & Reactive ABA Techniques – Schedule a Consultation](proactive-reactive-aba-strategies-guide) diff --git a/www/src/content/blog/en/aba-school-readiness-guide.md b/www/src/content/blog/en/aba-school-readiness-guide.md new file mode 100644 index 0000000..16c8ffe --- /dev/null +++ b/www/src/content/blog/en/aba-school-readiness-guide.md @@ -0,0 +1,75 @@ +--- +title: "Ease Back-to-School Time | ABA Antecedent & Consequence Interventions" +description: "Ease back-to-school stress and unlock school readiness with simple antecedent and consequence strategies and step‑by‑step ABA tactics any parent can apply." +slug: "aba-school-readiness-guide" +canonical: "https://www.azinstitute4autism.com/library/aba-school-readiness-guide" +lang: "en" +translationKey: "aba-school-readiness-guide" +featuredImage: "/assets/images/hero-back-to-school.webp" +date: "2024-07-30" +author: "rula-diab" +category: "Library" +tags: [] +draft: false +--- +# Ease Back-to-School Time | ABA Antecedent & Consequence Interventions + +![Rula Diab, Clinical Director, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) + + Rula Diab, Clinical Director, M.Ed, BCBA, LBA + + 30 July, 2024 + +![Antecedent & Consequence Hacks Every Autism Parent Needs to Unlock School Readiness - hero image](/assets/images/hero-back-to-school.webp) + +For families with children with autism, navigating back to school period can be particularly challenging, given the transitions and changes in routine. However, utilizing Antecedent and Consequence Interventions can provide significant support in making this transition smoother and more successful for your child. + +## What are Antecedent Interventions? + +[Antecedent interventions](https://specialconnections.ku.edu/behavior_plans/positive_behavior_support_interventions/teacher_tools/antecedent_interventions) are strategies that modify the environment before a behavior occurs, with the intention of preventing [maladaptive](https://www.merriam-webster.com/dictionary/maladaptive) behavior and encouraging positive behavior. Essentially, these interventions aim to set the stage for success by addressing triggers before they happen. + +### Key Antecedent Intervention Techniques + +- Visual Schedules that outline the daily routine help children with autism to understand expectations for their day and anticipate what will happen next, reducing frustration about transitions. Usually symbols, pictures, or even written words, depending on your child’s level of comprehension, can be used as visual reminders on the schedule. + +- Providing your child an advance notice about upcoming events or changes to their schedule is helpful. + +- Adjust the home environment to have similar aspects of the school setting and practice school-related tasks in a setting that feels familiar and supportive. + +- Providing your child with choices, within structured options, allow them to have a sense of engagement and control over their environment and daily routine and result in reducing challenge with transitions. + +- Using social stories to illustrate coming changes in their schedule reduces resistance to schedule change. + +## What are Consequence Interventions? + +[Consequence interventions](https://specialconnections.ku.edu/behavior_plans/positive_behavior_support_interventions/teacher_tools/consequence_interventions) focus on how you respond to your child’s behavior to increase desirable behaviors, and decrease any undesirable ones. The consequence strategies are applied after the behavior occurs. Some effective consequence interventions include: + +- Provide your child with positive reinforcement; praise, a preferred activity, and a tangible item or setting, which encourages a child to repeat the desired behavior. Ensure to differentiate reinforcers and always reinforce replacement targeted functional behaviors. + +- Withhold attention for a negative behavior, and instead, reinforce the positive replacement behaviors. Focusing on positive and replacement functional behaviors, rather than just giving attention to the negative ones will reduce occurrence of the undesired behaviors over time. + +- Consistency in your response to different behaviors helps your child to understand the connection between their actions and outcomes. + +Changes in daily routines can be difficult and challenging, However Implementing appropriate antecedent and consequence interventions can create a supportive, structured, and motivated environment for your child. + + Previous Post + +###### [Master Behavior Management: Discover the Four Functions of Behavior](behavior-management-functions-guide) + + Next Post + +###### [Master Proactive & Reactive ABA Techniques – Schedule a Consultation](proactive-reactive-aba-strategies-guide) + +### Similar Blog Posts + +![teaching academic, social, communications, and independence skills](/assets/images/hero-aba-preschool-az_800x.jpg) + +#### [Now Enrolling: AIA Preparatory Academy for Children Ages 2–6](aba-school-readiness-arizona) + +![Pediatrician performing a toddler](/assets/images/autism_evaluation_arizona_hero.jpg) + +#### [Autism Evaluation in Arizona: A Parent's Step-by-Step Guide](autism-evaluation-diagnosis-arizona-parent-guide) + +![rapport strategies for effective aba therapy - hero image](/assets/images/hero-rapport-strategies.webp) + +#### [Learn the Secrets to Effective Rapport Building in ABA Therapy](autism-therapy-rapport-strategies) diff --git a/www/src/content/blog/en/aba-therapy-benefits.md b/www/src/content/blog/en/aba-therapy-benefits.md new file mode 100644 index 0000000..04aec5a --- /dev/null +++ b/www/src/content/blog/en/aba-therapy-benefits.md @@ -0,0 +1,55 @@ +--- +title: "The Benefits of ABA Therapy for Children with Autism" +description: "Discover how ABA therapy, tailored to each child" +slug: "aba-therapy-benefits" +canonical: "https://www.azinstitute4autism.com/library/aba-therapy-benefits" +lang: "en" +translationKey: "aba-therapy-benefits" +featuredImage: "/assets/images/hero-aba-therapy-benefits_800x.jpg" +date: "2023-09-19" +author: "rula-diab" +category: "Library" +tags: [] +draft: false +--- +# The Benefits of ABA Therapy for Children with Autism + +![Rula Diab, Clinical Director, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) + + Rula Diab, Clinical Director, M.Ed, BCBA, LBA + + 19 September, 2023 + +![Benefits of ABA Therapy for Children with Autism - hero image](/assets/images/hero-aba-therapy-benefits_800x.jpg) + +Applied Behavior Analysis (ABA) is an evidence-based approach that utilizes the principles of behavior analysis to modify maladaptive behaviors and enhance socially significant behaviors. It is often employed for children with Autism Spectrum Disorder (ASD). ABA aims to teach a variety of skills, such as communication, social interactions, and daily skills, all within a safe, engaging, and fun environment conducive to therapeutic success. It also helps children minimize disruptive behaviors that may impede their learning, while prioritizing the child's individual autonomy. + +ABA therapy is highly beneficial for children with an autism diagnosis because it is tailored to each child's unique needs, optimizing outcomes. Skills are taught in a manner that maximizes the child's receptivity; this is achieved by breaking the skills into smaller, achievable targets. Furthermore, skills are generalized by teaching them across different settings and individuals. When a child begins receiving ABA therapy, progress is continuously monitored through ongoing data collection. This data is analyzed to ensure the efficacy of the intervention, and observations are made to guarantee that the child is learning effectively. An essential goal of ABA is not just short-term behavioral modification, but also the generalization and maintenance of learned skills over time. ABA therapy provides tools for managing challenging behaviors such as aggression, self-injury, or disruption. By understanding the function of these behaviors, suitable replacements can be taught, aiding the child's overall improvement. + +Parental participation is a critical component of ABA Therapy. Parents and caregivers are trained to apply ABA principles at home, thereby offering a unified and consistent learning environment. Parental involvement not only helps children apply learned skills in various settings, but also empowers parents to better manage challenging behaviors, supporting long-term progress of their child. + +At the Arizona Institute for Autism, our focus is on the learner. Our services are designed to meet individual needs, working collaboratively with a team of clinicians and parents. This approach aims to improve the quality of life for children with autism and their families. + +For more information on ABA therapy services offered by AIA, or to book your free consultation, visit us at [https://www.azinstitute4autism.com](../index), contact us at [(480) 687-7099](tel:+14806877099), or email [info@azinstitute4autism.com](mailto:info@azinstitute4autism.com). If you are looking for more applied behavioral analysis and ASD diagnosis tips, check out [more articles](../library) from AIA’s clinical director, Rula Diab! + + Previous Post + +###### [ASD Sensory-Friendly Recipes: Pancakes](asd-sensory-friendly-recipes-pancakes) + + Next Post + +###### [Meet Rula Diab | Board Certified Behavior Analyst (BCBA)](meet-rula-diab-bcba) + +### Similar Blog Posts + +![Repetitive Behaviors with Children Diagnosed with Autism - hero image](/assets/images/hero-repetetive-behaviors.webp) + +#### [Repetitive Behaviors with Children Diagnosed with Autism](repetitive-behavior) + +![asd sensory-friendly pancake recipe - hero image](/assets/images/hero-asd-sensory-friendly-recipe-pancakes_800x.jpg) + +#### [ASD Sensory-Friendly Recipes: Pancakes](asd-sensory-friendly-recipes-pancakes) + +![2024 new year reflection and planning for autism support and awareness - hero image](/assets/images/hero-new-year-goals-2024.webp) + +#### [New Year 2024: Holiday Tips for Autism Support & Awareness](new-year-2024-autism-holiday-tips) diff --git a/www/src/content/blog/en/aba-therapy-dtt-net-guide.md b/www/src/content/blog/en/aba-therapy-dtt-net-guide.md new file mode 100644 index 0000000..3fb40c1 --- /dev/null +++ b/www/src/content/blog/en/aba-therapy-dtt-net-guide.md @@ -0,0 +1,63 @@ +--- +title: "Learn About DTT and NET Methods for More Effective ABA Therapy" +description: "Learn how Discrete Trial Training (DTT) and Natural Environment Training (NET) help to create comprehensive ABA therapy plans tailored to individual needs." +slug: "aba-therapy-dtt-net-guide" +canonical: "https://www.azinstitute4autism.com/library/aba-therapy-dtt-net-guide" +lang: "en" +translationKey: "aba-therapy-dtt-net-guide" +featuredImage: "/assets/images/hero-learn-dtt-net-methods.webp" +date: "2024-02-29" +author: "rula-diab" +category: "Library" +tags: [] +draft: false +--- +# Learn About DTT and NET Methods for More Effective ABA Therapy + +![Rula Diab, Clinical Director, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) + + Rula Diab, Clinical Director, M.Ed, BCBA, LBA + + 29 February, 2024 + +![Learn About DTT and NET Methods for More Effective ABA Therapy - hero image](/assets/images/hero-learn-dtt-net-methods.webp) + +In the dynamic realm of Applied Behavior Analysis (ABA) therapy, we continuously seek the most impactful strategies to cater to our learners' diverse needs. This month, I want to delve into two foundational methodologies within ABA: Discrete Trial Training (DTT) and Natural Environment Training (NET). These approaches are integral to our ABA therapeutic framework,addressing various aspects of learning, development and growth. + +At the Arizona Institute for Autism, we utilize the structured nature of DTT to lay the groundwork for foundational skills. This foundation paves the way for the enrichment and generalization of these skills through the engaging approaches of NET. + +### Insight into Discrete Trial Training (DTT): + +Discrete Trial Training (DTT) is a structured technique that breaks down learning skills into small, achievable steps. By simplifying complex skills into smaller benchmarks, DTT facilitates easier learning and mastery of new skills.The hallmark of DTT lies in its structured teaching environment, enabling concentrated learning sessions with minimal distractions. DTT allows opportunities for immediate and consistent feedback, optimizing each learning opportunity. This method is especially beneficial for children who thrive on structured routines or are in the early stages of skill acquisition. DTT can be tailored to meet each learner's specific developmental needs. + +### Exploring Natural Environment Training (NET): + +On the other hand, Natural Environment Training (NET) emphasizes learning within everyday natural context, making learning experience more relevant and impactful for the child. It fosters dynamic interaction between the therapist and the learner, creating a learning environment that adapts to the natural flow of engagement. NET leverages the learner's motivation and interests as the cornerstone for learning, promoting spontaneous skill use and generalization.This approach is particularly effective for enhancing social skills,communication, and any learning objectives that benefit from real-world contexts. It facilitates the generalization of the learned skills into other settings, due to the skills being taught in the context of the natural environment, making NET an effective approach for teaching functional life skills. + +### Combining Strengths for Comprehensive Development: + +Integrating DTT and NET allows us to create a comprehensive therapeutic experience that meets the diverse needs of our learners. By employing both methodologies ensure not only the efficacy of learning, but also extend and apply the acquired skills across various settings. + +In Summary, leveraging the combined strengths of DTT and NET enhances our therapeutic practices, amplifying our capability to foster significant and lasting development. + + Previous Post + +###### [Understanding Sensory Processing in the Context of ABA Therapy](sensory-processing) + + Next Post + +###### [Benefits of Prompting & Parenting in ABA Therapy](aba-therapy-prompting-parenting-benefits) + +### Similar Blog Posts + +![potty train children with autism using simple aba techniques - hero image](/assets/images/hero-aba-toilet-training-child-autism.webp) + +#### [Guide: Simple ABA Techniques for Toilet Training Children with Autism](aba-toilet-training-child-autism) + +![2024 new year reflection and planning for autism support and awareness - hero image](/assets/images/hero-new-year-goals-2024.webp) + +#### [New Year 2024: Holiday Tips for Autism Support & Awareness](new-year-2024-autism-holiday-tips) + +![Benefits of ABA Therapy for Children with Autism - hero image](/assets/images/hero-aba-therapy-benefits_800x.jpg) + +#### [The Benefits of ABA Therapy for Children with Autism](aba-therapy-benefits) diff --git a/www/src/content/blog/en/aba-therapy-prompting-parenting-benefits.md b/www/src/content/blog/en/aba-therapy-prompting-parenting-benefits.md new file mode 100644 index 0000000..57f2089 --- /dev/null +++ b/www/src/content/blog/en/aba-therapy-prompting-parenting-benefits.md @@ -0,0 +1,51 @@ +--- +title: "Benefits of Prompting & Parenting in ABA Therapy" +description: "Empower yourself as a parent and enhance your child’s ABA therapy journey. Learn to implement prompting strategies for better results and faster progress." +slug: "aba-therapy-prompting-parenting-benefits" +canonical: "https://www.azinstitute4autism.com/library/aba-therapy-prompting-parenting-benefits" +lang: "en" +translationKey: "aba-therapy-prompting-parenting-benefits" +featuredImage: "/assets/images/hero-prompting-parenting-benefits.webp" +date: "2024-04-02" +author: "rula-diab" +category: "Library" +tags: [] +draft: false +--- +# Benefits of Prompting & Parenting in ABA Therapy + +![Rula Diab, Clinical Director, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) + + Rula Diab, Clinical Director, M.Ed, BCBA, LBA + + 02 April, 2024 + +![Benefits of Prompting & Parenting in ABA Therapy - hero image](/assets/images/hero-prompting-parenting-benefits.webp) + +In the field of Applied Behavior Analysis (ABA), the use of prompting as a teaching strategy is recognized for its effectiveness in helping learners achieve desired behaviors and develop new skills independently. + +Prompting involves providing learners with assistance to elicit a specific response while they are learning a new skill. Different types of prompts are utilized in ABA, and interventions should be personalized to meet each learner's unique needs and abilities. During therapy sessions, it is recommended that therapists follow a hierarchy of prompts, starting with less intrusive prompts and increasing the level of support as necessary. It is essential to consider the learner's abilities and provide the appropriate level of support to facilitate skill mastery and independence. + +Additionally, planning for prompt fading is crucial, as this process involves gradually reducing the intensity of prompts to promote independent skill performance. + + Previous Post + +###### [Learn About DTT and NET Methods for More Effective ABA Therapy](aba-therapy-dtt-net-guide) + + Next Post + +###### [Learn the Secrets to Effective Rapport Building in ABA Therapy](autism-therapy-rapport-strategies) + +### Similar Blog Posts + +![aba therapy positive reinforcement](/assets/images/hero-positive-reinforcement-techniques.webp) + +#### [Positive Reinforcement in ABA Therapy to Encourage Skill Development](positive-reinforcement-techniques) + +![Play and Leisure Skills for Children with Autism - hero image](/assets/images/hero-play-leisure-skills-children-autism_800x.jpg) + +#### [Play and Leisure Skills for Children with Autism](play-leisure-skills) + +![2024 new year reflection and planning for autism support and awareness - hero image](/assets/images/hero-new-year-goals-2024.webp) + +#### [New Year 2024: Holiday Tips for Autism Support & Awareness](new-year-2024-autism-holiday-tips) diff --git a/www/src/content/blog/en/aba-therapy-summer-routine-tips.md b/www/src/content/blog/en/aba-therapy-summer-routine-tips.md new file mode 100644 index 0000000..87f5ff0 --- /dev/null +++ b/www/src/content/blog/en/aba-therapy-summer-routine-tips.md @@ -0,0 +1,214 @@ +--- +title: "How to Support ABA Therapy Over Summer Break" +description: "Help your child thrive this summer with structured ABA routines, reinforcement tips, and support from the Arizona Institute for Autism." +slug: "aba-therapy-summer-routine-tips" +canonical: "https://www.azinstitute4autism.com/library/aba-therapy-summer-routine-tips" +lang: "en" +translationKey: "aba-therapy-summer-routine-tips" +featuredImage: "/assets/images/hero-summer-aba.webp" +date: "2025-07-01" +author: "rula-diab" +category: "Library" +tags: [] +draft: false +--- +# How to Support ABA Therapy Over Summer Break + +![Rula Diab, Clinical Director, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) + + Rula Diab, Clinical Director, M.Ed, BCBA, LBA + + 01 July, 2025 + +![aba therapy summer time tips for parents and caregivers](/assets/images/hero-summer-aba.webp) + +Summer break can bring much-needed relaxation, but for children with autism, the sudden lack of structure can present real challenges. When applied consistently, ABA therapy is a powerful tool for helping children maintain and build on progress year-round. Without routine reinforcement, even mastered skills may begin to fade. + +At the Arizona Institute for Autism (AIA) , we support families throughout the summer with structured programming, in-home support strategies, and resources tailored for children ages 2–17. And in Arizona, where summer heat often limits outdoor activities, staying indoors with a predictable schedule becomes even more important. + +## Why Summer Disruptions Can Impact ABA Progress + +When routines are interrupted: + +- Regression in mastered skills can occur + +- Children may face increased anxiety and behavioral outbursts + +- Transitions back to school in the fall become more difficult + +- Sleep disturbances and resistance to daily activities may increase + +ABA therapy relies on consistency, repetition, and reinforcement across settings —clinic, home, and community. By keeping routines intact during summer, you can protect your child’s progress and create opportunities for continued growth. + +## ABA Summer Tips for Parents + +### 1. Stick to a Predictable Summer Routine + +Even if school is out, your child can benefit from a modified daily schedule. Set regular times for: + +- Waking up + +- Meals and snacks + +- ABA sessions + +- Play or leisure + +- Bedtime + +Use visual schedules with icons or photos to help your child anticipate what’s next. Tools like First/Then boards (e.g., First brush teeth, Then TV ) are especially helpful. + +![pecs-first-brush-teeth-then-screen-time](/assets/images/pecs-first-brush-teeth-then-screen-time.webp) + +### 2. Continue ABA Sessions Whenever Possible + +Whether you're staying home, heading on vacation, or enrolling in summer camp: + +- Keep your ABA schedule intact as much as possible + +- Coordinate with your BCBA to adjust goals or settings for generalization + +- Consider telehealth ABA sessions for travel days (if appropriate for your child) + +Therapy doesn’t need to stop; just adapt. + +### 3. Reinforce Skills at Home + +Even small, everyday activities can become functional learning opportunities: + +- Practice waiting in line at the grocery store + +- Encourage turn-taking and sharing during sibling play + +- Reinforce communication goals during snack time + +📋 Tip: Use consistent reinforcement strategies at home that your ABA team uses in-clinic. This creates a seamless experience for your child. + +### 4. Make Summer Activities Purposeful + +Try turning common summer events into learning opportunities: + + Activity + Skills Practiced + + Water park + Waiting, sensory regulation + + Zoo visit + Labeling, requesting, transitions + + Cooking at home + Following directions, counting + + Video calls with family + Social interaction, greetings + +When Arizona heat limits outdoor play, indoor activities like structured board games, crafts, or cooking can still encourage growth. + +![indoor-activity-painting](/assets/images/indoor-activity-painting.webp) + +### 5. Protect Sleep Routines + +Sleep plays a critical role in behavior and learning. A consistent bedtime helps regulate your child’s: + +- Mood + +- Attention + +- Impulse control + +Stick to a similar routine every night, even if bedtime is slightly later than during the school year. + +### 6. Stay in Touch With Your ABA Team + +Open communication helps your team: + +- Adjust programs for vacation or travel + +- Create generalization goals for community settings + +- Offer tips for home-based reinforcement + +If you're new to ABA, this is also a great time to start services. A structured summer program can ease transitions into preschool, kindergarten, or back to school in the fall. + +## You're Not Alone—We’re Here to Help + +Summer can be a time of joy, growth, and connection. With the right support system that includes consistent ABA strategies and professional guidance, your child can continue to thrive. + +At the Arizona Institute for Autism , we provide: + +- In-clinic ABA therapy for children ages 2–8 + +- In-clinic Social Learners Club for ages 8-17 + +- Summer enrichment support + +- Free consultations to help families explore their options + +🌞 Whether you're in Scottsdale , Glendale , Tempe , or anywhere else in Arizona's Greater Phoenix Valley , our team is ready to help you make the most of summer. [Schedule a free consultation](../client-consultation) to find out how. + + Frequently Asked Questions + +## Summertime ABA Therapy Tips + +### How can I create a flexible summer schedule while maintaining structure for my child? + +A flexible schedule doesn't mean a lack of structure. You can still have a predictable routine, but allow for some variation in activities. For instance, set regular times for therapy, meals, and sleep, but leave the afternoon open for fun, unstructured activities like playing outside or attending a family outing. The key is keeping certain routines consistent, like waking up and going to bed at the same time, and using visual schedules so your child knows what to expect each day. + +### How can I maintain therapy progress if my child is attending a summer camp? + +If your child is attending summer camp, coordinate with your BCBA to ensure therapy goals are incorporated into the camp activities. For example, if your child's communication skills are a target, talk to camp staff about reinforcing language opportunities throughout the day. Your BCBA may also provide strategies or activities to use at camp to help continue progress in social skills, or communication. + +### What if my child struggles with transitions during the summer, like going from playtime to therapy? + +Transitions can be tricky, but consistency is key. Use visual schedules to give your child a heads-up before transitioning to a new activity. For example, 5 minutes before transitioning to therapy, tell your child “In 5 minutes, we are going to therapy.” You can also use transition warnings and a first/then board (e.g., “First we finish playtime, then we work with the therapist”). This helps manage expectations and reduce anxiety during transitions. + +### How can I involve my child's ABA therapist in creating a summer routine? + +Work closely with your child's therapist to develop a summer routine that integrates ABA therapy goals with fun summer activities. Your therapist can help you balance structure with flexibility, ensuring your child is getting the right amount of therapy while still enjoying summer activities. They can also offer guidance on maintaining reinforcement systems and behavior management strategies that work best for your child. + +### What are some fun ways to reinforce behavior at home during the summer? + +Summer provides a great opportunity to use natural environments for reinforcement. For example, if your child enjoys playing outside, you can reinforce appropriate social behavior (like sharing or waiting for a turn) by offering praise or preferred activities as a reward. You can also use activities like first/then boards or token systems to keep them motivated during daily routines, such as helping with chores or transitioning between activities. + +### How can I make summer outings, like going to the grocery store, beneficial for my child's learning? + +Summer outings are an excellent opportunity to practice ABA skills in real-world environments. Use outings like grocery shopping, park visits, or trips to the zoo to practice communication (e.g., asking for items), waiting skills (e.g., standing in line), social skills (e.g., interacting with peers), and following instructions (e.g., listening to directions while walking). Incorporating these activities into your child's day helps them generalize skills from therapy to everyday life. + +### How do I handle meltdowns or difficult behavior when routines change during the summer? + +Meltdowns can happen when routines change, but consistency and preparation can help reduce their frequency. Keep the routine predictable with a visual schedule and offer plenty of positive reinforcement for good behavior. When meltdowns occur, use calming techniques and ensure that transitions are well-managed with clear warnings (e.g., “In 10 minutes, we will clean up and go to park”). Reducing the amount of unstructured time or sudden changes to the schedule can also help minimize frustration. + +### How can I reinforce skills during playdates or family gatherings? + +Use playdates and family gatherings as opportunities to reinforce social skills and communication. Set specific goals for the playdate, like practicing turn-taking, asking for help, or sharing toys. You can also work with the ABA team to identify skills that are important to practice in these settings and reinforce them with positive feedback or small rewards. + +### What should I do if my child experiences sleep disturbances during the summer? + +Sleep disturbances are common during the summer, especially if routines shift. Try to maintain a consistent bedtime routine, even if it's more relaxed on weekends. Keep the sleep environment calm and comfortable, and limit screen time before bed. If sleep disturbances continue, it might be helpful to consult with your child's BCBA to determine if there are any behavior interventions that can help with sleep hygiene or relaxation techniques. + +## We're Here For You + +If you're new to ABA or considering additional summer support for your child, don't hesitate to reach out to us at Arizona Institute for Autism. Our team is here for you every step of the way to help ensure your child continues to make meaningful progress during the summer months. + + Previous Post + +###### [First/Then Cards: Empowering Transitions for Autistic Children](first-then-cards-autism-transitions) + + Next Post + +###### [Positive Reinforcement in ABA Therapy to Encourage Skill Development](positive-reinforcement-techniques) + +### Similar Blog Posts + +![teaching academic, social, communications, and independence skills](/assets/images/hero-aba-preschool-az_800x.jpg) + +#### [Now Enrolling: AIA Preparatory Academy for Children Ages 2–6](aba-school-readiness-arizona) + +![Parent and autistic child using visual supports, structured play, and calm routines together](/assets/images/family-guide-to-autism-aba-at-home_hero.png) + +#### [Autism Guide for Parents and Caregivers](parents-guide-to-autism-and-aba) + +![hero image - executive functioning skills strategies for autistic children](/assets/images/hero-executive-functioning-skills-autism.webp) + +#### [Executive Functioning Skills and Autism](executive-functioning-skills-autism) diff --git a/www/src/content/blog/en/aba-toilet-training-child-autism.md b/www/src/content/blog/en/aba-toilet-training-child-autism.md new file mode 100644 index 0000000..785d86d --- /dev/null +++ b/www/src/content/blog/en/aba-toilet-training-child-autism.md @@ -0,0 +1,95 @@ +--- +title: "Guide: Simple ABA Techniques for Toilet Training Children with Autism" +description: "Empower your autistic child to achieve confidence and independence in their daily routines by using these simple ABA-based potty training methods." +slug: "aba-toilet-training-child-autism" +canonical: "https://www.azinstitute4autism.com/library/aba-toilet-training-child-autism" +lang: "en" +translationKey: "aba-toilet-training-child-autism" +featuredImage: "/assets/images/hero-aba-toilet-training-child-autism.webp" +date: "2023-11-20" +author: "rula-diab" +category: "Library" +tags: [] +draft: false +--- +# Guide: Simple ABA Techniques for Toilet Training Children with Autism + +![Rula Diab, Clinical Director, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) + + Rula Diab, Clinical Director, M.Ed, BCBA, LBA + + 20 November, 2023 + +![potty train children with autism using simple aba techniques - hero image](/assets/images/hero-aba-toilet-training-child-autism.webp) + +Toilet training a child with autism can be a complex process that requires patience, consistency, and tailored strategies. Applied Behavior Analysis (ABA) offers effective techniques to support this journey. Here's a structured approach to facilitate toilet training for children with autism: + +## 1. Assess Readiness + +Begin by evaluating whether your child is prepared for toilet training. Traditional indicators like recognizing the need to use the bathroom or the ability to manage clothing may not be present in children with autism. Instead, focus on: + +- ### Physical Readiness: Can your child sit on a toilet and get up independently? + +- ### Health Considerations: Address any gastrointestinal issues, such as constipation or diarrhea, before starting training. + +## 2. Establish a Routine + +Consistency is crucial. Develop a regular schedule for bathroom visits, such as: + +- ### Timed Intervals: Encourage toilet use at set times throughout the day (e.g., every 1-2 hours). + +- ### Post-Meal Visits: Schedule trips to the bathroom after meals, leveraging natural digestive rhythms. + +## 3. Create a Supportive Environment + +Make the bathroom a comfortable and engaging space: + +- ### Comfortable Seating: Ensure the toilet seat is comfortable; consider using padded seats or adaptive equipment if necessary. + +- ### Engaging Activities: Provide books, toys, or even a small screen to keep your child occupied while sitting on the toilet. + +## 4. Use Positive Reinforcement + +Reinforce successful attempts with rewards to encourage desired behavior: + +- ### Immediate Praise: Offer verbal affirmations immediately after successful toilet use. + +- ### Tangible Rewards: Provide small treats or privileges to motivate your child. + +## 5. Address Specific Challenges + +Tailor your approach to meet individual needs: + +- ### Bowel Movements: If your child is hesitant to have bowel movements in the toilet, investigate potential causes like discomfort or fear of the flushing sound. Gradually desensitize them to these aspects. + +- ### Accidents: Respond calmly to accidents, avoiding negative reactions. Reinforce the routine and continue encouragement. + +## 6. Collaborate with Professionals + +Engage with therapists or specialists experienced in ABA to develop and refine your toilet training plan. Their expertise can provide valuable insights and support tailored to your child's unique needs. + +By implementing these strategies with patience and consistency, you can support your child with autism in achieving successful toilet training. + +For more information about ABA therapy services offered by AIA or to book your free consultation, visit our Arizona Institute for Autism website at [www.azinstitute4autism.com](../index), call [(480) 687-7099](tel:+14806877099), or email info@azinstitute4autism.com. If you are looking for more applied behavioral analysis and ASD diagnosis and treatment tips, check out more [blog posts](../library) from AIA’s clinical director, Rula Diab! + + Previous Post + +###### [ASD Sensory-Friendly Thanksgiving Recipe: Pumpkin Dump Cake](asd-sensory-friendly-recipe-thanksgiving-pumpkin-cake) + + Next Post + +###### [New Year 2024: Holiday Tips for Autism Support & Awareness](new-year-2024-autism-holiday-tips) + +### Similar Blog Posts + +![2024 new year reflection and planning for autism support and awareness - hero image](/assets/images/hero-new-year-goals-2024.webp) + +#### [New Year 2024: Holiday Tips for Autism Support & Awareness](new-year-2024-autism-holiday-tips) + +![Benefits of ABA Therapy for Children with Autism - hero image](/assets/images/hero-aba-therapy-benefits_800x.jpg) + +#### [The Benefits of ABA Therapy for Children with Autism](aba-therapy-benefits) + +![Repetitive Behaviors with Children Diagnosed with Autism - hero image](/assets/images/hero-repetetive-behaviors.webp) + +#### [Repetitive Behaviors with Children Diagnosed with Autism](repetitive-behavior) diff --git a/www/src/content/blog/en/aia-world-autism-community-day-celebration.md b/www/src/content/blog/en/aia-world-autism-community-day-celebration.md new file mode 100644 index 0000000..47a466b --- /dev/null +++ b/www/src/content/blog/en/aia-world-autism-community-day-celebration.md @@ -0,0 +1,79 @@ +--- +title: "AIA’s World Autism Community Day of Celebration" +description: "Join AIA on April 1st at Scottsdale Ranch Park to celebrate World Autism Month and support neurodiversity. Learn about the event and how to participate." +slug: "aia-world-autism-community-day-celebration" +canonical: "https://www.azinstitute4autism.com/library/aia-world-autism-community-day-celebration" +lang: "en" +translationKey: "aia-world-autism-community-day-celebration" +featuredImage: "/assets/images/hero-aia-world-autism-community-day-celebration_800x.jpg" +date: "2023-01-30" +author: "rula-diab" +category: "Library" +tags: [] +draft: false +--- +# AIA’s World Autism Community Day of Celebration + +![Rula Diab, Clinical Director, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) + + Rula Diab, Clinical Director, M.Ed, BCBA, LBA + + 30 January, 2023 + +![aia world autism community day of celebration - hero image](/assets/images/hero-aia-world-autism-community-day-celebration_800x.jpg) + +Hello AIA families, + +Happy April, a.k.a World Autism Month! + +While April 2nd is the United Nations-sanctioned World Autism Awareness Day, the entire month of April is [World Autism Month](https://www.autismspeaks.org/world-autism-month-faq). + +## What is World Autism Month? + +Throughout the month of April, there is a worldwide effort to spread Autism awareness, acceptance, and inclusion. April is a month of empowering others, fostering understanding, and igniting change to help individuals with Autism reach their full potential and achieve a world characterized by a genuine appreciation of the unique aspects of all people. + +### How can you celebrate World Autism Month? + +- Join us on April 1st at Scottsdale Ranch Park to celebrate and support neurodiversity! More information is below. + +- Learn about the [history of Autism](https://pmc.ncbi.nlm.nih.gov/articles/PMC3757918/). + +- Wear blue to raise awareness and show support for Autism. + +- Spread kindness. Encourage acceptance. Promote inclusion. + +- Read, watch, or listen to something created by someone with Autism. + +- Donate to empower people with Autism by providing them with access to vital resources and support. + +- Watch a [sensory-friendly film](https://www.amctheatres.com/programs/sensory-friendly-films) offered on the second and fourth Saturday (family-friendly) and Wednesday evening (mature audience) at AMC Theaters! Check your local theater listings for specific showtimes. + +### AIA's World Autism Community Day of Celebration + +Celebrate and support neurodiversity and inclusion with our AIA family by attending '[World Autism Community Day of Celebration](https://www.eventbrite.com/e/free-world-autism-community-day-of-celebration-tickets-516975356207),' a free community event hosted by the Parent Advisory Committee in honor of April being Autism Awareness Month. From 10 AM to 2 PM at Scottsdale Ranch Park, we will have free special education resources for learners of all ages, recreational crafts, face painting, special education booths, and more. So grab a blanket, chair, and your family & friends, and arrive early to get a good seat and enjoy a fun-filled day in the community! + +## Additional questions? + +If you have questions about AIA's World Autism Community Day of Celebration or are interested in providing a sensory-friendly booth, contact kelly@azinstitute4autism.com. + + Previous Post + +###### [New Year Goals for Our Children with Autism](new-year-goals-2023) + + Next Post + +###### [The Ultimate Guide to Behavior Modification Techniques & Reinforcement Theory](behavior-modification-techniques-reinforcement-theory) + +### Similar Blog Posts + +![asd sensory-friendly pancake recipe - hero image](/assets/images/hero-asd-sensory-friendly-recipe-pancakes_800x.jpg) + +#### [ASD Sensory-Friendly Recipes: Pancakes](asd-sensory-friendly-recipes-pancakes) + +![New Year Goals for Our Children with Autism - hero image](/assets/images/hero-new-year-goals-2023_800x.jpg) + +#### [New Year Goals for Our Children with Autism](new-year-goals-2023) + +![Antecedent & Consequence Hacks Every Autism Parent Needs to Unlock School Readiness - hero image](/assets/images/hero-back-to-school.webp) + +#### [Ease Back-to-School Time | ABA Antecedent & Consequence Interventions](aba-school-readiness-guide) diff --git a/www/src/content/blog/en/asd-sensory-friendly-recipe-thanksgiving-pumpkin-cake.md b/www/src/content/blog/en/asd-sensory-friendly-recipe-thanksgiving-pumpkin-cake.md new file mode 100644 index 0000000..07dc193 --- /dev/null +++ b/www/src/content/blog/en/asd-sensory-friendly-recipe-thanksgiving-pumpkin-cake.md @@ -0,0 +1,107 @@ +--- +title: "ASD Sensory-Friendly Thanksgiving Recipe: Pumpkin Dump Cake" +description: "Our Thanksgiving recipe is crafted for sensory sensitivities, ensuring a delightful meal for individuals with ASD. Celebrate inclusively and deliciously." +slug: "asd-sensory-friendly-recipe-thanksgiving-pumpkin-cake" +canonical: "https://www.azinstitute4autism.com/library/asd-sensory-friendly-recipe-thanksgiving-pumpkin-cake" +lang: "en" +translationKey: "asd-sensory-friendly-recipe-thanksgiving-pumpkin-cake" +featuredImage: "/assets/images/hero-asd-sensory-friendly-recipe-thanksgiving-pumpkin-cake_800x.jpg" +date: "2023-11-15" +author: "rula-diab" +category: "Library" +tags: [] +draft: false +--- +# ASD Sensory-Friendly Thanksgiving Recipe: Pumpkin Dump Cake + +![Rula Diab, Clinical Director, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) + + Rula Diab, Clinical Director, M.Ed, BCBA, LBA + + 15 November, 2023 + +![asd sensory-friendly pumpkin dump cake thanksgiving recipe](/assets/images/hero-asd-sensory-friendly-recipe-thanksgiving-pumpkin-cake_800x.jpg) + +As a parent of a child diagnosed with [autism spectrum disorder](https://www.autismspeaks.org/what-autism), you may experience challenges when it comes to mealtime. Many children on the spectrum struggle with [sensory and food sensitivities](https://www.eatright.org/health/health-conditions/intellectual-and-developmental-disabilities/nutrition-for-your-child-with-autism-spectrum-disorder-asd), making it difficult to find foods that they prefer. With Thanksgiving quickly approaching, you may be wondering if there are any recipes that your child may enjoy for the holiday. Well good news- you are in the right place! For this month’s blog, I will be sharing an easy, delicious Thanksgiving recipe that you and your child will both enjoy- Pumpkin Dump Cake! This recipe is a great twist on the classic pumpkin pie. + +This recipe is super easy to follow, and the best part is that your child can help you! Being able to help prepare their food often makes it more enticing for them to eat. It also teaches your child [fundamental life skills](https://www.purdueglobal.edu/blog/psychology/cooking-activities-help-children-autism/), such as how to cook, make decisions, and how to follow directions, as well as strengthening their fine motor skills. Giving your child the opportunity to help you with this recipe can make it more enjoyable for the both of you! + +## For this recipe, you will need the following ingredients + +- ½ cup of whole milk + +- 1 cup of melted unsalted butter + +- 12 oz evaporated milk + +- 4 large eggs, room temperature + +- 1 tbsp vanilla extract + +- (2) 15 oz cans of pumpkin puree + +- 15.25 oz spice cake mix + +- 2 tsp cinnamon + +- 1 tbsp pumpkin pie spice + +- 1½ cup of granulated sugar + +- Optional: 1½ cup pecans or walnuts (nuts may be non-preferred for some children, so it’s okay to leave this out) + +## How to make Pumpkin Dump Cake + +- Preheat the oven to 350 degrees and spray a 9x13-inch cake pan with baking spray and set aside. + +- In a large mixing bowl, whisk together the pumpkin puree, eggs, evaporated milk, and sugar. Do this by hand, not with a mixer. + +- Add in the vanilla extract, pumpkin pie spice, and cinnamon. Mix until well combined. + +- Pour the pumpkin mixture into the cake pan and spread evenly. + +- In a medium mixing bowl, stir together the dry cake mix and nuts (nuts optional). + +- Sprinkle the cake mix evenly over the top of the pumpkin mixture. + +- In a medium bowl, stir together the melted butter and whole milk. + +- Slowly pour the butter and milk mixture over the top of the dry cake mix layer. + +- For best results, make sure as much as the cake mix is submerged under the butter as possible, do not leave large pockets of the cake mix showing. + +- Bake for one hour or until the top is golden and the center has set. + +## How to best enjoy your cake + +Once the cake has been removed from the oven and is warm (not hot!), you are ready to enjoy it! This recipe is best served with vanilla ice cream, whipped cream, or Cool Whip on top. Feel free to add caramel drizzle and sprinkle some cinnamon on top as well! + +## Storage + +If you have any leftovers, they can be stored for up to 4 days in the fridge or 3 months in the freezer. + +This recipe is simple, easy, and delicious! We hope that you encourage your child to help you prepare the cake and have a great time while doing it. Enjoy! + +For more information on aba therapy services offered by AIA or to book your free consultation, visit us at [https://www.azinstitute4autism.com](../index), contact us at (480) 707-2195, or email info@azinstitute4autism.com. If you are looking for more applied behavioral analysis and asd diagnosis tips, check out AIA’s clinical director, Rula Diab, monthly [blog posts](../library)! + + Previous Post + +###### [Community Highlights: Meet Rula Diab of Arizona Institute for Autism](community-highlight-meet-rula-diab) + + Next Post + +###### [Guide: Simple ABA Techniques for Toilet Training Children with Autism](aba-toilet-training-child-autism) + +### Similar Blog Posts + +![potty train children with autism using simple aba techniques - hero image](/assets/images/hero-aba-toilet-training-child-autism.webp) + +#### [Guide: Simple ABA Techniques for Toilet Training Children with Autism](aba-toilet-training-child-autism) + +![Benefits of ABA Therapy for Children with Autism - hero image](/assets/images/hero-aba-therapy-benefits_800x.jpg) + +#### [The Benefits of ABA Therapy for Children with Autism](aba-therapy-benefits) + +![asd sensory-friendly pancake recipe - hero image](/assets/images/hero-asd-sensory-friendly-recipe-pancakes_800x.jpg) + +#### [ASD Sensory-Friendly Recipes: Pancakes](asd-sensory-friendly-recipes-pancakes) diff --git a/www/src/content/blog/en/asd-sensory-friendly-recipes-pancakes.md b/www/src/content/blog/en/asd-sensory-friendly-recipes-pancakes.md new file mode 100644 index 0000000..53c66d4 --- /dev/null +++ b/www/src/content/blog/en/asd-sensory-friendly-recipes-pancakes.md @@ -0,0 +1,123 @@ +--- +title: "ASD Sensory-Friendly Recipes: Pancakes" +description: "Discover sensory-friendly pancake recipes tailored for children with autism, including chocolate chip and blueberry variations, to make mealtime enjoyable." +slug: "asd-sensory-friendly-recipes-pancakes" +canonical: "https://www.azinstitute4autism.com/library/asd-sensory-friendly-recipes-pancakes" +lang: "en" +translationKey: "asd-sensory-friendly-recipes-pancakes" +featuredImage: "/assets/images/hero-asd-sensory-friendly-recipe-pancakes_800x.jpg" +date: "2023-09-12" +author: "rula-diab" +category: "Library" +tags: [] +draft: false +--- +# ASD Sensory-Friendly Recipes: Pancakes + +![Rula Diab, Clinical Director, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) + + Rula Diab, Clinical Director, M.Ed, BCBA, LBA + + 12 September, 2023 + +![asd sensory-friendly pancake recipe - hero image](/assets/images/hero-asd-sensory-friendly-recipe-pancakes_800x.jpg) + +If you are the parent of a child with autism spectrum disorder, you probably know how difficult mealtime can be. Many children with an autism diagnosis tend to have sensory processing disorder, which can make it difficult for them to enjoy certain foods due to the texture, consistency, temperature, etc. Your child may only prefer a small variety of foods, which often leaves their diet lacking the essential nutrients they need. In this blog series, I will be sharing sensory-friendly recipes and tips to hopefully make mealtime easy and fun for your kiddo! These recipes will help broaden your child’s horizons when it comes to food and nutrition. + +For this blog, I will be sharing an easy recipe that most kids love- Pancakes! This recipe can be modified to your child’s liking, as it’s important to gradually introduce new foods and ingredients. Use ingredients that your child prefers in order to make it more enticing and enjoyable! + +## Sensory-Friendly Pancakes Recipe + +### Ingredients + +- 1 ½ cups of all purpose or baking flour + +- 4 tsp baking powder - baking powder gives the pancakes their light and fluffy texture. + +- ½ tsp of salt - only add if you are using unsalted butter. + +- 3 tbsp sugar - this is to sweeten the pancakes a little extra, but it is optional. + +- 1 egg - room temperature is best for this. + +- 1 ¼ cups of milk - whole milk, almond, soy, or oat, whichever you prefer. + +- 4 tbsp melted butter + +- ½ tsp vanilla extract + +### Fluffy Pancake Directions + +- In a medium sized mixing bowl, add the flour, salt, and sugar. Combine the ingredients together using a wooden spoon or whisk for best results, then set the bowl aside. + +- Now onto the wet ingredients. In a separate, smaller bowl, whisk together the egg, milk, melted butter, and vanilla extract with a fork until well combined. + +- Add the wet ingredients into the bowl with the dry ingredients and whisk them together to form the batter. Scrape the bowl to make sure everything is combined, but don't over mix! + +- Our next step is to heat a frypan or cast-iron skillet over medium low heat. Add about a ½ tsp of butter. Once butter is melted, add about ⅓ cup of the pancake batter. + +- Cook the pancake for 2-3 minutes or until the edges are set. Use a spatula to flip the pancake over and cook the other side for another 1-2 minutes. + +- The first pancake will show you if you need to adjust the heat up or down, so adjust as needed. + +Voila! You have now made a fluffy pancake! This recipe makes around 8 pancakes (depending on the size you make them). Feel free to double or triple the recipe if needed. + +### Tips + +- For fluffier pancakes, it’s important to add the 4 tsp of baking powder. It helps them to rise up, making them soft, light, and fluffy. + +- Don’t over mix! Over mixing will cause the pancakes to be more tough and rubbery as opposed to soft and fluffy. It’s important to stop mixing as soon as you no longer see dry flour, it’s okay if the batter is a little lumpy. + +### Variations and Toppings + +Your kiddo may not want plain pancakes, which is perfectly fine! There are a few different ways you can vary the recipe to add in more sweetness. This is also a great opportunity to get your child to try different toppings or get a serving of fruit! + +#### Toppings + +- Butter and maple syrup + +- Banana + +- Bacon + +- Fresh berries + +- Caramel or strawberry sauce + +- Whipped Cream + +#### Variations + +- Chocolate Chip Pancakes - Add ½ cup of chocolate chips to the dry ingredients. + +- Blueberry Pancakes - Add 1 cup of fresh blueberries to the pancake batter. + +- Lemon Pancakes - Add lemon zest to the wet ingredients. + +- Strawberry Pancakes - Add ½ cup to 1 cup of fresh strawberries to pancake batter. + +Feel free to vary the recipe however you want and give your kiddo the opportunity to choose which toppings or fillings they want. Mealtime should be fun and enjoyable, so allowing your child to help you or pick their preferred ingredients can make eating more enticing for them. I hope you and your child enjoy this sensory-friendly pancake recipe! + +For more information on aba therapy services offered by AIA or to book your free consultation, visit our [contact page](../contact), call us at [(480) 687-7099](tel:+14806877099), or email [info@azinstitute4autism.com](mailto:info@azinstitute4autism.com). If you are looking for more applied behavioral analysis and asd diagnosis tips, check out AIA’s clinical director, Rula Diab, monthly blog posts! + + Previous Post + +###### [Repetitive Behaviors with Children Diagnosed with Autism](repetitive-behavior) + + Next Post + +###### [The Benefits of ABA Therapy for Children with Autism](aba-therapy-benefits) + +### Similar Blog Posts + +![2024 new year reflection and planning for autism support and awareness - hero image](/assets/images/hero-new-year-goals-2024.webp) + +#### [New Year 2024: Holiday Tips for Autism Support & Awareness](new-year-2024-autism-holiday-tips) + +![Repetitive Behaviors with Children Diagnosed with Autism - hero image](/assets/images/hero-repetetive-behaviors.webp) + +#### [Repetitive Behaviors with Children Diagnosed with Autism](repetitive-behavior) + +![Benefits of ABA Therapy for Children with Autism - hero image](/assets/images/hero-aba-therapy-benefits_800x.jpg) + +#### [The Benefits of ABA Therapy for Children with Autism](aba-therapy-benefits) diff --git a/www/src/content/blog/en/autism-evaluation-diagnosis-arizona-parent-guide.md b/www/src/content/blog/en/autism-evaluation-diagnosis-arizona-parent-guide.md new file mode 100644 index 0000000..8b7876a --- /dev/null +++ b/www/src/content/blog/en/autism-evaluation-diagnosis-arizona-parent-guide.md @@ -0,0 +1,227 @@ +--- +title: "Autism Evaluation in Arizona: A Parent's Step-by-Step Guide" +description: "Learn autism signs by age, who can diagnose in Arizona, and next steps after diagnosis. Get ABA, speech, and OT support. Schedule a free consultation." +slug: "autism-evaluation-diagnosis-arizona-parent-guide" +canonical: "https://www.azinstitute4autism.com/library/autism-evaluation-diagnosis-arizona-parent-guide" +lang: "en" +translationKey: "autism-evaluation-diagnosis-arizona-parent-guide" +featuredImage: "/assets/images/autism_evaluation_arizona_hero.jpg" +date: "2026-01-01" +author: "rula-diab" +category: "Library" +tags: [] +draft: false +--- +# Autism Evaluation in Arizona: A Parent's Step-by-Step Guide + +![Rula Diab, Clinical Director, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) + + Rula Diab, Clinical Director, M.Ed, BCBA, LBA + + 01 January, 2026 + +![Pediatrician performing a toddler](/assets/images/autism_evaluation_arizona_hero.jpg) + +If you are here, you may be seeing patterns that make you pause. Maybe your child is not using many words. Maybe eye contact is brief, or routines feel non-negotiable. You are not alone in wondering, Could this be autism, and what should I do next. + +This guide explains early signs by age, the difference between screening and diagnosis, who can diagnose in Arizona, and how to move forward with confidence. + +## What autism is + +Autism is a neurodevelopmental condition that affects communication, social interaction, and behavior. It looks different from child to child. + +Some children speak early yet struggle with back-and-forth conversation. Others use few words but navigate familiar routines well. Some love lining up toys or watching spinning objects. Others prefer quiet play with adults rather than peers. + +Autism is a spectrum, not a single presentation. + +## Early signs by age + +Every child develops at their own pace. What matters most is patterns that repeat over time, not one moment or one behavior. + + Age range + Social communication + Play and behavior + Sensory examples + + 6-12 months + Limited eye contact or smiling back, reduced response to name + - + Strong reactions to sound, difficulty calming, minimal tracking of faces or toys + + 12-24 months + Few gestures such as pointing or waving, delayed words + Lines up toys, fixates on parts of objects, distress with change + Covers ears, picky textures, watches fans or wheels + + 2-4 years + Scripted or repetitive phrases, limited back-and-forth conversation + Prefers solo play, limited pretend play, rigid routines, repetitive movements + Avoids certain clothing, strong reactions to light or noise, seeks deep pressure + +Note: No single sign confirms autism. Patterns over weeks and months are more informative than isolated moments. + +## Screening versus diagnosis + +Screening and diagnosis are related, but they are not the same. Screening is a quick check that looks for possible traits. Diagnosis is a formal evaluation that confirms or rules out autism and opens doors to services. + +At a glance + + Topic + Screening + Diagnosis + + Purpose + Brief check for possible traits + Formal confirmation or rule-out + + Profession + Pediatrician or care team + Psychologist, developmental pediatrician, neurologist, or psychiatrist + + Tools + Parent questionnaires such as M-CHAT, developmental checklists + Parent interview, observation, standardized tools such as ADOS-2 + + Outcome + Refer for evaluation if flagged + Diagnostic report, treatment recommendations, insurance and school guidance + +If a screening suggests risk, ask your pediatrician to provide a referral for a comprehensive evaluation. You do not need all the answers before you ask for help. + +## Who can diagnose autism in Arizona + +- Licensed psychologist with training in autism assessment + +- Developmental pediatrician + +- Child neurologist or psychiatrist + +If you are unsure where to start, request a referral from your pediatrician and contact the Arizona Institute for Autism for guidance. You can visit our [Library](../library) for foundational articles and parent guides. + +## Step-by-step: how to get an evaluation + +- Write down patterns you notice : Keep brief notes for one to two weeks. Examples include response to name, use of pointing or gestures, play style, and reactions to change or noise. + +- Talk with your pediatrician : Share your notes and ask for an autism evaluation referral. You can mention prior screenings if you have completed the M-CHAT or similar tools. + +- Schedule the evaluation : When you receive referral options, ask about wait times, languages, and whether the clinician uses standardized tools such as ADOS-2. + +- Prepare a small packet : Include teacher comments, Individualized Education Program documents if any, previous evaluations, insurance cards, and a short video of typical play if available. + +- Attend the evaluation : Expect a family interview, direct observation, and structured activities that feel like play. Bring familiar snacks and comfort items. + +- Review results and plan next steps : The report will outline findings and recommendations. If autism is diagnosed, it should include therapy suggestions and medical or school referrals. + +### Quick prep checklist + +- Notes on behaviors and triggers + +- Teacher or caregiver reports + +- Past evaluations or therapy notes + +- Insurance information + +- Short video from home or preschool + +- Favorite toy and snack + +## After diagnosis: therapies that support growth + +Many children benefit from a coordinated plan that can include multiple therapies. Your diagnostic report will guide which to start first. + + Therapy + Focus + What it looks like + + ABA therapy + Communication, receptive skills, functional play, daily living, social skills, executive functioning + Fun, play-based sessions that teach new skills and reduce barriers to learning + + Speech-language therapy + Expressive and receptive language, social pragmatics, AAC + Modeling words, gestures, pictures, or devices to build communication + + Occupational therapy + Sensory processing, fine motor, self-care, regulation + Sensory-informed activities that build regulation and independence + +Learn more in our articles on ABA basics and positive behavior supports in the [AIA Library](../library). + +Ready to talk through referrals, insurance coverage, and therapy options? [Schedule a free consultation](../schedule-consultation) and our team will guide your next steps. + +## Why patterns matter + +A single behavior rarely tells the whole story. A child who talks late may be adventurous in motor skills. Another who speaks in long sentences may prefer routines that feel predictable. Watching patterns across communication, play, flexibility, and sensory reactions gives your pediatrician and the evaluator a clear path to the right supports. + +## What to say at the pediatric visit + +Use simple observations. Medical language is not required. + +- He does not point to ask for things. + +- She lines up toys and gets upset if I move them. + +- He uses words, but not to request or answer simple questions. + +- She has a hard time when the routine changes. + +Short journal entries such as "did not look when name called" or "cried when schedule changed" add valuable context. These notes help the professional select the right assessments and recommend appropriate therapies. + +## Gentle reminders + +- Early conversations open doors to support. + +- An evaluation can confirm autism, rule it out, or suggest other pathways such as language delay. + +- You know your child best. Your observations guide the process. + + Frequently Asked Questions + +## Autism Evaluation Tips for Arizona + +### What is the difference between an autism screening and an autism diagnosis? + +Screening is a quick check that flags possible traits. Diagnosis is a formal clinical evaluation by a qualified professional that confirms or rules out autism. + +### Who can diagnose autism in Arizona? + +Licensed psychologists, developmental pediatricians, child neurologists, and psychiatrists can complete a formal diagnostic evaluation in Arizona. + +### When should I ask for an evaluation? + +If you notice patterns in social communication, play, or flexibility that persist over time, speak with your pediatrician. Early conversation opens access to support. + +### What happens during an autism evaluation? + +Expect a parent interview, direct observation, and standardized tools such as ADOS-2. Results guide treatment recommendations and school or insurance supports. + +### Do I need a diagnosis to start ABA therapy in Arizona? + +Insurance plans typically require a formal diagnosis and a referral. AIA can help you understand your coverage and next steps. + +### What should I bring to the first appointment? + +Bring notes on behaviors and triggers, teacher reports, previous evaluations, insurance information, and a short video of typical play or routines if available. + + Previous Post + +###### [Why My Child Can Talk but Still Struggles Socially](social-pragmatic-communication-autism) + + Next Post + +###### [Early Signs of Autism by Age: 12 Months to 4 Years](early-signs-autism-by-age) + +### Similar Blog Posts + +![sensory processing challenges in aba therapy - hero image](/assets/images/hero-sensory-processing.webp) + +#### [Understanding Sensory Processing in the Context of ABA Therapy](sensory-processing) + +![Parent and child meeting with a clinician in a calm, play-based autism evaluation setting](/assets/images/autism-evaluation-expectations_hero.png) + +#### [What to Expect at Your Child’s First Autism Evaluation](autism-evaluation-what-to-expect) + +![Parent and autistic child using visual supports, structured play, and calm routines together](/assets/images/family-guide-to-autism-aba-at-home_hero.png) + +#### [Autism Guide for Parents and Caregivers](parents-guide-to-autism-and-aba) diff --git a/www/src/content/blog/en/autism-evaluation-what-to-expect.md b/www/src/content/blog/en/autism-evaluation-what-to-expect.md new file mode 100644 index 0000000..5211d25 --- /dev/null +++ b/www/src/content/blog/en/autism-evaluation-what-to-expect.md @@ -0,0 +1,201 @@ +--- +title: "What to Expect at Your Child’s First Autism Evaluation" +description: "Learn what happens before, during, and after a child’s autism evaluation. See who you’ll meet, how long it takes, and how results guide next steps." +slug: "autism-evaluation-what-to-expect" +canonical: "https://www.azinstitute4autism.com/library/autism-evaluation-what-to-expect" +lang: "en" +translationKey: "autism-evaluation-what-to-expect" +featuredImage: "/assets/images/autism-evaluation-expectations_hero.png" +date: "2026-03-01" +author: "rula-diab" +category: "Library" +tags: [] +draft: false +--- +# What to Expect at Your Child’s First Autism Evaluation + +![Rula Diab, Clinical Director, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) + + Rula Diab, Clinical Director, M.Ed, BCBA, LBA + + 01 March, 2026 + +![Parent and child meeting with a clinician in a calm, play-based autism evaluation setting](/assets/images/autism-evaluation-expectations_hero.png) + +When a referral for an autism evaluation lands in your inbox, it can feel like a lot. You may be relieved that you are taking action, and also anxious about what the appointment will look like. Both reactions are normal. + +A child autism evaluation is not a test your child passes or fails. It is a structured way for trained clinicians to understand your child’s communication, social connection, play, and support needs so you can move forward with a plan. + +A child autism evaluation usually includes parent questionnaires, a caregiver interview, and play-based observation. Many clinicians also use standardized tools to understand communication, social interaction, behavior patterns, and sensory needs. The goal is not to pass or fail, it is to get clear recommendations for supports at home, school, and therapy. + +## What happens before, during, and after an autism evaluation + +Most evaluations follow the same basic rhythm, even though the exact tools and timeline can vary by clinic. + +- Before the visit: you complete paperwork and gather records. + +- During the visit: the clinician interviews you and observes your child, often through play-based activities. + +- After the visit: you receive feedback, a written report, and recommendations for next steps. + +Quick reassurance: Clinicians look for patterns across time and settings. A shy day, a tired day, or a loud waiting room does not "ruin" an evaluation. + +## Screening vs. evaluation vs. diagnosis + +Parents often hear these words used together. The differences matter because they explain why your pediatrician may start with a screening and then refer you out for a full evaluation. + + Term + What it means + Common examples + + Screening + A brief check that flags whether more evaluation is recommended + Parent questionnaires used at well visits, such as M-CHAT-R/F (see CDC guidance ) + + Evaluation + A comprehensive assessment that gathers enough information to answer key questions + Interview, observation, and sometimes standardized tools + + Diagnosis + A formal clinical determination based on diagnostic criteria + A written diagnostic report that supports access to services + +If your child recently had a screening, remember that a positive screen is a reason to learn more, not a conclusion. + +## Paperwork and what to bring + +Questionnaires can feel long, especially if you are already tired. They are long because they help the evaluator understand what your child is like on an average day, not just in a clinical environment. + +Bring what you have, and do not stress about being "perfect." Helpful items often include: + +- prior evaluations (speech, OT, school testing) + +- school or preschool notes, including an IEP or 504 if you have one + +- key medical history (sleep, hearing concerns, GI issues, seizures, major illnesses) + +- comfort items for your child (favorite toy, chewy, headphones, snack) + +- your top 2–3 questions, written down + +After you gather materials, pick one simple goal: write down what you most want clarity on. That keeps the feedback conversation focused on your family’s next steps. + +## Who you might meet + +A formal diagnosis is made by a qualified, licensed clinician. Many evaluations are led by a psychologist or developmental pediatrician, and sometimes involve a broader team depending on your child’s needs. + +You may also interact with specialists who help clarify language, sensory, motor, learning, or behavior questions, like speech-language pathologists, occupational therapists, or behavior professionals. If you are unsure why a certain provider is involved, it is okay to ask what question they are trying to answer. + +## What your child will do during the evaluation + +For young children, much of the appointment looks like play. The clinician is watching how your child communicates, initiates, responds, and regulates across both structured and unstructured moments. + +Your child might be invited to: + +- play with toys and engage in functional or pretend play + +- try simple social games (turn-taking, imitation, shared attention) + +- transition between activities + +- show how they request help or share interests + +- participate in age-appropriate tasks + +Some clinicians use standardized tools that include structured prompts. These tools are not "tests" in the school sense. They help organize observations so the clinician can explain results clearly. If you want, you can ask what tools are used and what they measure. + +If your child uses AAC , gestures, or picture supports: bring what they use most. + +## How long it takes + +Some evaluations happen in one longer visit, while others are split across multiple appointments. Timing is influenced by your child’s age, the questions being answered, and whether additional testing is needed. + +Ask the clinic two practical questions up front: how many appointments to expect, and when you should receive the written report. + +## How results are explained, and what happens next + +A strong evaluation ends with clarity. You should understand what the clinician observed, what those observations mean, and what to do next. + +Typically, you will have a feedback conversation, and you will receive a written report you can share with your pediatrician, school team, and therapy providers. Recommendations may include supports like speech therapy, occupational therapy, school evaluations, early intervention, or ABA therapy, depending on your child’s profile and needs. + +If ABA is recommended, you may find it helpful to read how AIA approaches individualized planning in "[Individualized ABA Therapy Plans](individualized-aba-therapy)" and how we think about collaboration in "[An Integrated ABA Model](integrated-aba-model-announcement)". + +## How to prepare your child for a calmer day + +Preparation does not need to be complicated. Simple supports often help more than big speeches. + +Consider: + +- using a short social story or a "first, then" statement (First we go in, then we play) + +- building in extra time for transitions + +- packing sensory supports and preferred snacks + +- asking about a quieter waiting option if your child is noise-sensitive + +If you are looking for a screener that your pediatrician may reference, the official M-CHAT-R/F site is here: [M-CHAT-R/F](https://www.mchatscreen.com/). A screener is not a diagnosis, but it can help guide next steps. + +## If you are in Arizona, AIA can help with next steps + +If you are still figuring out where to start, our Arizona-focused guide, "[Autism Evaluation and Diagnosis in Arizona: A Parent’s Step-by-Step Guide](autism-evaluation-diagnosis-arizona-parent-guide)," walks through who can diagnose, what to expect, and how to take the first steps with less overwhelm. + +After an evaluation, families often want help turning recommendations into a real plan. If you are exploring ABA services, you can review AIA’s intake steps in "[Starting ABA Therapy Step-by-Step Guide](../aba-therapy-intake-process)." If you would rather talk it through first, you can [schedule a free consultation](../client-consultation) with our team. + + Frequently Asked Questions + +## Help with First Autism Evaluation Expectations + +### How is an autism screening different from an autism evaluation? + +A screening is a brief check that flags possible autism traits and signals whether a full evaluation is recommended. An evaluation is a comprehensive process that includes interviews and observation, and may include standardized tools, to answer whether autism criteria are met and what supports are recommended. + +### Who can diagnose autism in Arizona? + +Autism is typically diagnosed by licensed psychologists with autism assessment training, developmental pediatricians, and in some cases child neurologists or psychiatrists. Your pediatrician can help with referrals. + +### What should I bring to the evaluation appointment? + +Bring prior evaluations, school notes (IEP or 504 if applicable), a list of questions, and comfort items for your child. If it helps, bring a short video clip of typical play or routines at home. + +### How long does it take to get results? + +Some clinics share impressions the same day, but many schedule feedback after the clinician reviews all information. Ask up front when the written report will be ready. + +### Will my child be asked to talk or follow directions? + +The clinician adapts expectations to your child’s developmental level. Many activities are play-based and focus on communication in whatever form your child uses. + +### Can an evaluation be done by telehealth? + +Caregiver interviews and questionnaires may be done remotely. Direct observation is often best in person for younger children, but practices vary. Ask what is recommended for your child. + +### What happens if my child does not meet criteria for autism? + +You should still receive a clear explanation and recommendations. Sometimes the evaluation points to another need, like a language delay, anxiety, ADHD, or a different developmental profile. + +### Do we need a diagnosis to start ABA therapy? + +Insurance commonly requires a formal diagnosis and documentation to authorize ABA services. AIA can help Arizona families understand next steps for intake and coverage. + + Previous Post + +###### [Early Signs of Autism by Age: 12 Months to 4 Years](early-signs-autism-by-age) + + Next Post + +###### [Building Communication & Social Skills in Autistic Children: A Practical Guide for Families](communication-social-skills-autistic-children-guide) + +### Similar Blog Posts + +![Pediatrician performing a toddler](/assets/images/autism_evaluation_arizona_hero.jpg) + +#### [Autism Evaluation in Arizona: A Parent's Step-by-Step Guide](autism-evaluation-diagnosis-arizona-parent-guide) + +![Parent and autistic child using visual supports, structured play, and calm routines together](/assets/images/family-guide-to-autism-aba-at-home_hero.png) + +#### [Autism Guide for Parents and Caregivers](parents-guide-to-autism-and-aba) + +![Parent and toddler playing with blocks, sharing eye contact and pointing during play.](/assets/images/early_signs_autism_by_age_hero.png) + +#### [Early Signs of Autism by Age: 12 Months to 4 Years](early-signs-autism-by-age) diff --git a/www/src/content/blog/en/autism-fall-break-routine-tips-halloween-thanksgiving.md b/www/src/content/blog/en/autism-fall-break-routine-tips-halloween-thanksgiving.md new file mode 100644 index 0000000..366bf22 --- /dev/null +++ b/www/src/content/blog/en/autism-fall-break-routine-tips-halloween-thanksgiving.md @@ -0,0 +1,215 @@ +--- +title: "Autism and Fall Break: Routines, Halloween, and Thanksgiving Tips" +description: "Help your child with autism enjoy fall break. Use visual schedules, First/Then cards, and sensory supports for Halloween and Thanksgiving without stress." +slug: "autism-fall-break-routine-tips-halloween-thanksgiving" +canonical: "https://www.azinstitute4autism.com/library/autism-fall-break-routine-tips-halloween-thanksgiving" +lang: "en" +translationKey: "autism-fall-break-routine-tips-halloween-thanksgiving" +featuredImage: "/assets/images/hero-autumn-break-autism-routines-1.jpg" +date: "2025-10-01" +author: "rula-diab" +category: "Library" +tags: [] +draft: false +--- +# Autism and Fall Break: How to Keep Routines Calm and Predictable + +![Rula Diab, Clinical Director, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) + + Rula Diab, Clinical Director, M.Ed, BCBA, LBA + + 01 October, 2025 + +![visual schedule and sensory tools help keep routines during fall break - hero image](/assets/images/hero-autumn-break-autism-routines-1.jpg) + +Fall break brings new energy to Arizona families. School pauses. Days feel different. That change can be exciting. It can also be stressful for children with autism who rely on predictable routines. The good news is that a little planning reduces surprises and gives your child clear steps to follow. + +In this guide, we share practical strategies that help your child enjoy fall break, Halloween, and Thanksgiving. You will find visual tools, sensory supports, and small adjustments that make a big difference. If you would like personalized coaching, the Arizona Institute for Autism can help you build a calm plan that fits your family. + +Quick win for today: Print a one-page visual schedule for tomorrow. Add two or three anchor activities you know will happen. Review it with your child at bedtime and again in the morning. + +## Why breaks feel hard for autistic learners + +School days are consistent. Fall break interrupts the pattern. When predictability goes down, anxiety often goes up. Common challenges include: + +- Sudden routine changes that create uncertainty + +- Sensory overload from crowds, lights, and loud events + +- Social demands with unclear rules or expectations + +- Fatigue from later bedtimes or travel days + +A simple way to reintroduce predictability is to show the day in pictures. A [First/Then board](first-then-cards-autism-transitions) or a two to five step visual schedule tells your child what is happening now and what comes next. + +### Matching supports to triggers + + Likely trigger during fall break + What your child may feel + Simple support you can try + + No school bell or bus + Uncertainty, restlessness + Mini schedule with 3–5 steps and timers + + Costumes or masks + Itchy skin, face discomfort + Soft or tagless costumes, trial wear at home + + Crowds and noise + Overload, shutdown + Noise-reducing headphones, short routes, breaks + + New foods at gatherings + Refusal, worry + Bring familiar foods and a safe seat at the table + + Unclear social rules + Confusion + Social story with photos of your street or family + +## Build a calm fall-break routine + +You do not need to recreate a full school day. Aim for a light structure that protects sleep and meals, then add predictable anchors. + +- Set your anchors Keep regular wake time, meals, quiet time, and bedtime. Arizona days can still be warm in October, so plan outdoor play in the morning or evening. + +- Create a mini schedule Use pictures or simple words. Review the plan at breakfast and after lunch. Time Plan Visual idea Morning Chores, reading, park Icons for each task Midday Lunch, quiet time Plate icon, headphones icon Afternoon Craft or game, free play Scissors icon, blocks icon Evening Dinner, bath, story, bed Sequence cards in order + +- Use First/Then for transitions First homework page, then scooter ride. First put on shoes, then car. + +- Balance input and rest Follow a busy event with a quiet activity. Think of it as inhale and exhale for the nervous system. + +Arizona family info: Many schools here schedule fall break in October. Hydration and breathable fabrics help if your child wears a costume outside. Keep sunscreen and a hat in your go-bag. + +## Halloween strategies that reduce overload + +Halloween can be fun when you plan for comfort, pick a calm route, and bring a few sensory supports. A little practice ahead of time goes a long way. + +Costumes and comfort : Let your child wear the costume for short trials at home so it feels familiar. Snip itchy tags and add leggings or a soft base layer. If masks feel claustrophobic, try face paint instead. + +Social story and practice : Create a quick photo story with your porch, your street, and a neighbor's door to show what to expect. Rehearse knocking, saying hello, and dropping candy into a bucket. + +Choose the right route : Opt for one or two quiet blocks instead of a crowded event. Go early, enjoy a few houses, then head home for a movie or an indoor candy hunt. + +Sensory supports : Pack headphones, a small fidget, and a water bottle. Use a simple First/Then card at each stop—first walk to the door, then ring the bell. + +Food rules with clarity : Bring safe snacks if candy is restricted or needs checking. When you're home, sort treats together into a “yes today” bowl and a “later” bowl. + +## ![trick-or-treat-porch-800x](/assets/images/trick-or-treat-porch-800x.jpg) Thanksgiving without pressure + +Big gatherings change the usual sensory mix, so lower demands and offer more choices. A little structure can help everyone relax. + +Prepare the day : Share a simple picture schedule that shows travel, greetings, the meal, and break times. Point out where the quiet room will be before things get busy. + +Protect regulation : Set up a calm spot with a blanket, books, and headphones. Offer a break card your child can hand you when the room gets loud. + +Food and table expectations : Bring familiar foods so there's a safe plate on the table—that alone can reduce anxiety and boost participation. Let your child choose a preferred seat and keep table time short, praising small steps. + +Coach your support circle : Tell family how to greet your child—try “Hi! Want a wave or a fist bump?”—and share any dietary or sensory needs before the visit. Clear guidance helps everyone be supportive from the start. + +Caregiver tip: Progress is progress. If your child sat at the table for three minutes this year, celebrate it. Try for four next time. + +## Sensory-friendly outings for fall break + +Aim for one planned outing every other day. Examples include: + +- Nature walk on a quiet trail in the morning + +- Library visit during low-traffic hours + +- Children’s museum during sensory friendly times if available + +- Backyard scavenger hunt with five items and a picture list + +![quiet-nature-walk-800x](/assets/images/quiet-nature-walk-800x.jpg) + +Pack a regulation go-bag + +- Headphones, sunglasses, chewy or crunchy snack + +- Water bottle, small fidget, wet wipes + +- Visual schedule or First/Then cards + +- Lightweight blanket for floor breaks + +## When plans change + +Even with a plan, surprises happen. Use calm scripts and keep choices simple. + +- “You are safe. We will take a break. Then we will choose what to do next.” + +- Offer two options. “Quiet room or headphones.” + +- Reduce language during overload. Model deep breaths. + +- After recovery, update the visual plan together. + +## Work with your ABA team + +Your Board Certified Behavior Analyst can help you: + +- Break down holiday tasks into teachable steps + +- Create social stories with your photos + +- Select sensory supports that match your child + +- Practice greetings, waiting, and flexible thinking + +## Conclusion & Next Steps + +Fall break and the holidays don’t have to derail progress or well-being. With a combination of visual schedules, sensory supports, ABA-informed strategies, and clear communication, you can create a calm, predictable experience for your child with autism. Start by introducing one new tool at a time. Build confidence, celebrate successes, and adjust as needed. + +Ready to deepen your ABA toolkit? Schedule a [free consultation](../client-consultation) with the Arizona Institute for Autism to develop personalized strategies and support your family through every season. + + Frequently Asked Questions + +## Fall Break Tips for Children with Autism + +### How do I keep structure without a full school schedule? + +Pick four to six anchors that will not move. Wake time, meals, quiet time, and bedtime are the most powerful. Add two small activities per block and show them with pictures. + +### What if my child refuses a costume? + +Costume comfort comes first. Try themed pajamas or a favorite T-shirt with a small accessory. Join one or two friendly doorsteps and end on a success. + +### How do I reduce sensory overload during trick-or-treating? + +Go early, choose a short and quiet route, and pack headphones. Use First/Then cards for each step. Take frequent breaks and finish before your child is exhausted. + +### My family does not understand our child’s needs. What should I say? + +Send a short note before the visit. Include how to greet your child, what foods are safe, and that breaks help participation. Offer one positive way relatives can connect. + +### What if the meal is very different from what my child eats? + +Bring a familiar plate. Allow a small taste of a new food if your child is ready. Celebrate sitting at the table and using polite language. Pressure is not required. + +### What should I put in a sensory go-bag for the holidays? + +Noise-reducing headphones, a small fidget, sunglasses, chewy or crunchy snacks, water, wipes, and visual supports. Add one comfort item that always helps your child regulate. + + Previous Post + +###### [Now Enrolling: AIA Preparatory Academy for Children Ages 2–6](aba-school-readiness-arizona) + + Next Post + +###### [Why Emotional Regulation Should Be the Heart of Every ABA Program](emotional-regulation-aba) + +### Similar Blog Posts + +![teaching academic, social, communications, and independence skills](/assets/images/hero-aba-preschool-az_800x.jpg) + +#### [Now Enrolling: AIA Preparatory Academy for Children Ages 2–6](aba-school-readiness-arizona) + +![aba therapy summer time tips for parents and caregivers](/assets/images/hero-summer-aba.webp) + +#### [How to Support ABA Therapy Over Summer Break](aba-therapy-summer-routine-tips) + +![child taking emotional regulation timeout in shopping cart - hero](/assets/images/child-shopping-cart-tired-cranky.jpg) + +#### [Why Emotional Regulation Should Be the Heart of Every ABA Program](emotional-regulation-aba) diff --git a/www/src/content/blog/en/autism-family-self-care-tips.md b/www/src/content/blog/en/autism-family-self-care-tips.md new file mode 100644 index 0000000..3f09d5c --- /dev/null +++ b/www/src/content/blog/en/autism-family-self-care-tips.md @@ -0,0 +1,73 @@ +--- +title: "Discover Self‑Care Hacks for Parents of Children with Autism" +description: "Take charge of your wellness as an autism caregiver. Explore simple strategies to reduce stress, improve mental health, and thrive in your role." +slug: "autism-family-self-care-tips" +canonical: "https://www.azinstitute4autism.com/library/autism-family-self-care-tips" +lang: "en" +translationKey: "autism-family-self-care-tips" +featuredImage: "/assets/images/hero-self-care-priority.webp" +date: "2024-11-01" +author: "rula-diab" +category: "Library" +tags: [] +draft: false +--- +# Discover Self‑Care Hacks for Parents of Children with Autism + +![Rula Diab, Clinical Director, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) + + Rula Diab, Clinical Director, M.Ed, BCBA, LBA + + 01 November, 2024 + +![autism family self care tips - hero image](/assets/images/hero-self-care-priority.webp) + +As a [clinician](../team) who is deeply connected with the [autism](https://www.psychiatry.org/patients-families/autism/what-is-autism-spectrum-disorder) community, I see firsthand the dedication and resilience that parents of children on the autism spectrum display every day. Your role is invaluable, but it’s also one that requires immense emotional and physical energy. While every parent wants to give their best, this constant dedication can often lead to burnout or feelings of being overwhelmed. + +One thing I’ve observed, time and again, is the importance of self-care — not just for your own well-being, but for the benefit of your child as well. When you take time to recharge, you can approach challenges with more patience, creativity, and resilience. You are your child’s greatest advocate and support system, but to be the best version of yourself, you must take care of your own needs, too. + +## Why Self-Care Matters for Autism Families + +Parenting a child with autism comes with unique joys and challenges. From navigating therapy sessions to managing daily routines, it’s easy to put your needs last. However, when constant dedication and neglecting self-care, it can lead to burnout, stress, and fatigue, which can ultimately affect your ability to provide the level of care your child needs. + +### Simple Ways to Practice Self-Care + +[Self-care](https://www.autismparentingmagazine.com/ways-reducing-stress-gain-clarity/) is about finding small moments in your day to refresh and focus on your mental, emotional, and physical health. Here are a few suggestions that may help: + +- Prioritize Small Breaks : Even short breaks throughout the day can make a difference. Whether it’s sitting in a quiet room for five minutes or stepping outside for fresh air, taking time to pause helps clear your mind and reset your energy. Even a few minutes of mindfulness each day can make a significant difference in how you manage the demands of parenting. + +- Build Your Support System: Surround yourself with friends, family, or support groups who understand your journey. Talking with other parents of children with autism can provide comfort and reassurance, and remind you that you are not alone. Sharing experiences and tips can lighten the emotional load. + +- Ask for Help When You Need It: Don’t hesitate to reach out for support. Whether it’s coordinating with therapists, using [respite care](https://www.helpguide.org/family/caregiving/respite-care), or asking family members for help, relying on your network allows you to have moments to yourself without feeling guilty. Taking a break is necessary to maintain your own health. + +- Do Something You Love: Engage in an activity that brings you joy or relaxation. Whether it’s reading, gardening, or exercising, nurturing your own hobbies will give you a mental break from caregiving and remind you that your happiness matters. + +- Celebrate Small Wins: Take time to acknowledge the little victories, whether it’s a new skill your child mastered or a peaceful family moment. Celebrating these successes, however small, helps build positivity and motivates you for the future. + +## Remember: You Deserve Care, Too + +At the [Arizona Institute for Autism](../index), we understand that caring for a child with autism is a journey that requires balance. We believe that the well-being of autism parents is just as important as the therapies we provide to children. You are your child’s greatest advocate and most constant source of support. To continue being that pillar of strength, it’s essential to prioritize your health, happiness, and peace of mind. + +We’re here to support, not only your child’s development, but also your journey as a parent during parent consultation sessions. If you ever feel overwhelmed, know that you’re not alone. Lean on your support network, practice self-care, and take it one day at a time. + + Previous Post + +###### [Individualized Care Plans in ABA Therapy](individualized-aba-therapy) + + Next Post + +###### [Guide to Teaching Self‑Advocacy in ABA](autism-self-advocacy-skills-aba) + +### Similar Blog Posts + +![proactive reactive aba strategies guide - hero image](/assets/images/hero-proactive-reactive-strategies.webp) + +#### [Master Proactive & Reactive ABA Techniques – Schedule a Consultation](proactive-reactive-aba-strategies-guide) + +![Benefits of Prompting & Parenting in ABA Therapy - hero image](/assets/images/hero-prompting-parenting-benefits.webp) + +#### [Benefits of Prompting & Parenting in ABA Therapy](aba-therapy-prompting-parenting-benefits) + +![talking child has trouble socializing - hero](/assets/images/talk-not-social.jpg) + +#### [Why My Child Can Talk but Still Struggles Socially](social-pragmatic-communication-autism) diff --git a/www/src/content/blog/en/autism-friendships-social-play-support.md b/www/src/content/blog/en/autism-friendships-social-play-support.md new file mode 100644 index 0000000..da42d00 --- /dev/null +++ b/www/src/content/blog/en/autism-friendships-social-play-support.md @@ -0,0 +1,159 @@ +--- +title: "Supporting Friendships and Social Play for Children with Autism" +description: "Learn how to support friendships and social play for autistic children. Discover practical tips for playdates, leveraging special interests, and ABA therapy." +slug: "autism-friendships-social-play-support" +canonical: "https://www.azinstitute4autism.com/library/autism-friendships-social-play-support" +lang: "en" +translationKey: "autism-friendships-social-play-support" +featuredImage: "/assets/images/parallel-players-hero.png" +date: "2026-06-01" +author: "rula-diab" +category: "Library" +tags: [] +draft: false +--- +# Supporting Friendships and Social Play for Children with Autism + +![Rula Diab, Clinical Director, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) + + Rula Diab, Clinical Director, M.Ed, BCBA, LBA + + 01 June, 2026 + +![Three children engaging happily in parallel play on a colorful rug.](/assets/images/parallel-players-hero.png) + +Watching your child navigate the social world is a profound experience for any parent. For parents of autistic children, it can also be a source of anxiety. You might notice your child prefers to play alone, struggles to initiate conversations, or seems overwhelmed in group settings. It is easy to worry that they are lonely or missing out on the joy of childhood friendships. + +However, supporting friendships and social play for children with autism is rarely about teaching them to act like everyone else. Instead, it is about understanding their unique social language and creating environments where they feel safe enough to connect. + +Autistic children desire connection just as much as neurotypical children do, but the way they express and experience that connection often looks different. By shifting our perspective, we can help our children build authentic, fulfilling relationships without the exhausting burden of masking their true selves. + +At a Glance: Supporting friendships and social play for autistic children involves redefining social success. Rather than forcing neurotypical play styles, parents can foster authentic connections through parallel play, shared special interests, and structured, sensory-friendly playdates. ABA therapy can further support foundational skills like turn-taking and self-advocacy. + +## What “Friendship” Can Look Like for Autistic Children + +In neurotypical development, friendship is often defined by constant verbal communication, sustained eye contact, and cooperative play. For an autistic child, friendship might be sitting in the same room in silence while reading comic books. This is known as parallel play, and it is a deeply valid form of social connection. + +Recognizing these different play styles is the first step in supporting your child. When we expect an autistic child to socialize exactly like their neurotypical peers, we risk pushing them into social burnout. They may become exhausted from trying to read unfamiliar social cues or maintaining eye contact, leaving them with no energy to actually enjoy the interaction. + +Instead of looking for traditional signs of friendship, observe how your child acts around certain people. Do they seem relaxed? Do they enthusiastically share facts about their favorite topics? Do they willingly share their space? These are all indicators of connection and trust. + +### Autistic vs. Neurotypical Play Expressions + + Feature + Neurotypical Play Expectation + Autistic Play Reality + + Interaction + Cooperative, reciprocal back-and-forth. + Parallel play; sharing space without demanding interaction. + + Communication + High verbal exchange, small talk. + Info-dumping about passions, or comfortable silence. + + Eye Contact + Expected to show attention. + Often avoided; attention is shown through physical proximity. + + Activity Focus + Frequently changing games or rules. + Deeply focused on predictable routines or specific shared activities. + +Understanding these realities allows parents to celebrate social milestones that might otherwise go unnoticed, paving the way for deeper, more meaningful support. For more foundational knowledge on how communication styles differ, read our guide on [Building Communication & Social Skills in Autistic Children](communication-social-skills-autistic-children-guide). + +## Setting Up Successful Playdates: Timing, Environment, and Activities + +Organizing a playdate for an autistic child requires a bit more strategic planning than simply opening the front door and letting kids run wild. The goal is to set your child up for success by minimizing anxiety and sensory overload, allowing their natural social abilities to shine. + +Preparation is crucial. Unexpected changes are notoriously difficult for many autistic individuals, so outlining the plan beforehand can dramatically reduce stress. Let your child know who is coming over, what activities are available, and exactly when the guest will be leaving. Predictable routines make the social environment feel safe. + +When planning the logistics of the playdate, keeping boundaries firm but supportive will help protect your child's social battery and ensure the experience ends on a high note. + +- Keep it brief: Start with highly structured, short playdates, perhaps just 30 to 45 minutes. It is always better to end a playdate while both children are still having fun than to wait until someone is overwhelmed and melting down. + +- Control the environment: Host the playdate in a familiar, sensory-friendly space. Minimize loud background noises, dim harsh lighting if necessary, and ensure your child has a "safe zone" they can retreat to if they need a break. + +- Structure the activities: Unstructured free time can be paralyzing. Have specific, shared activities ready, such as building a LEGO set, completing a puzzle, or watching a favorite movie. + +After the playdate, give your child plenty of downtime to decompress. Socializing requires significant cognitive effort, and quiet recovery time is essential. + +## Coaching Siblings and Peers in Inclusive Play + +Friendship is a two-way street. While therapies often focus on teaching the autistic child how to navigate a neurotypical world, it is equally important to teach neurotypical peers and siblings how to step into the autistic child's world. + +Children are naturally curious and generally very accepting when things are explained to them in plain, age-appropriate language. You do not need to deliver a clinical lecture on autism. Instead, explain your child's specific behaviors as simple facts. For example, you might say, "Sometimes Leo covers his ears because loud noises hurt, but he still likes you being here," or, "Maya shows she likes you by sitting next to you, even if she isn't talking." + +Encourage siblings and peers to meet your child where they are. If your child is engaged in repetitive play, like lining up toy cars, show the peer how they can join in by adding a car to the line, rather than trying to force the child to crash the cars together. This mutual adaptation fosters genuine respect and reduces frustration on both sides. + +![parent instructing child in parallel-play with autistic sibling](/assets/images/sibling-parallel-play-instruction.png) + +## The Role of Special Interests in Social Connection + +If there is a golden key to unlocking social play for autistic children, it is their special interests. Whether it is a deep fascination with dinosaurs, transit maps, outer space, or a specific video game, these intense passions are not barriers to friendship; they are the bridge. + +When an autistic child is engaged in their special interest, their anxiety drops, and their confidence soars. They become eager to share their knowledge. Finding peers who share these interests, or at least appreciate them, provides a natural, comfortable framework for interaction. The focus shifts away from the pressure of "making conversation" and onto the shared subject matter. + +Look for local clubs, structured classes, or online communities centered around your child’s passions. An autistic teen might struggle immensely at a loud, unstructured school dance, but thrive in a quiet room playing Dungeons & Dragons, where the rules of interaction are clear and based entirely on a shared activity. You can learn more about translating these interests into hobbies in our article on [Play and Leisure Skills for Children with Autism](play-leisure-skills). + +## How AIA Targets Social Skills Within ABA Programs + +At the Arizona Institute for Autism, our approach to Applied Behavior Analysis (ABA) is rooted in empowering the child, not fundamentally changing who they are. We recognize that effective social skills training must respect the child's neurodivergence while teaching them the tools they need to navigate the world safely and happily. + +Our integrated ABA programs focus on functional, meaningful skills. We work on turn-taking, self-advocacy, and emotional regulation. We help children learn how to express their boundaries, such as saying "no" or "I need a break," which is a vital social skill often overlooked in traditional etiquette training. + +Furthermore, we utilize the child's natural environment and interests to shape these skills. By embedding social goals into preferred activities, therapy feels like play. We also work closely with families to ensure that the strategies practiced in the clinic translate to home life and the community. Developing these skills frequently ties into broader developmental milestones, which you can explore further in our breakdown of [Executive Functioning Skills and Autism](executive-functioning-skills-autism). + + Frequently Asked Questions + +## About Autism & Play + +### Why does my autistic child ignore other children at the park? + +They are likely not ignoring them; they may simply be overwhelmed by the sensory environment or unsure how to initiate contact. They may also be perfectly content observing from a distance, which is a valid form of social processing. + +### Is it okay if my child only wants to play with adults? + +Yes. Adults are generally more predictable, patient, and willing to adapt to the child's rules of play than peers are. This is a common stepping stone to peer relationships. + +### What is parallel play, and is it normal for older children? + +Parallel play is when children play adjacent to each other without directly interacting. While neurotypical children usually outgrow this in toddlerhood, it remains a comfortable and normal social baseline for many autistic individuals throughout their lives. + +### How do I stop my child from info-dumping on peers? + +Instead of stopping them, teach them to check for social cues. ABA therapy can help teach a child how to ask, "Do you want to hear more about this?" giving them a tool to share their passion without overwhelming the listener. + +### Should I force my child to make eye contact during playdates? + +No. Forcing eye contact can be physically uncomfortable and deeply distracting for autistic children, taking their focus away from the actual play and conversation. + +### How can I tell if my child is lonely or just prefers to be alone? + +Look for signs of distress. If they seem happy and relaxed while alone, they are likely recharging. If they express sadness about not having friends, or hover around groups without knowing how to join, they may need support. + +### Can AAC devices be used during playdates? + +Absolutely. Augmentative and Alternative Communication (AAC) devices are fantastic tools for play. Ensure the peer is introduced to the device so they understand how your child communicates. + +### How does ABA help with play if it's mostly structured learning? + +Modern ABA therapy heavily incorporates naturalistic, play-based learning. Therapists use games, toys, and the child's specific interests to naturally reinforce social behaviors like sharing, waiting, and self-advocating. + + Previous Post + +###### [AAC and Visual Supports 101: Helping Your Child Be Heard](aac-visual-supports-autism) + +### Similar Blog Posts + +![autism play and leisure skills for children with autism](/assets/images/hero-play-leisure-skills-children-autism_800x.jpg) + +#### [Autism Play: Helping Autistic Children Build Play and Leisure Skills](play-leisure-skills) + +![child pointing to a picture on a digital AAC tablet during play](/assets/images/visual-supports-aac-communication.png) + +#### [AAC and Visual Supports 101: Helping Your Child Be Heard](aac-visual-supports-autism) + +![A parent and an autistic child smiling while using a picture communication board during playtime.](/assets/images/communication-skills-autistic-children-hero_img.png) + +#### [Building Communication & Social Skills in Autistic Children: A Practical Guide for Families](communication-social-skills-autistic-children-guide) diff --git a/www/src/content/blog/en/autism-self-advocacy-skills-aba.md b/www/src/content/blog/en/autism-self-advocacy-skills-aba.md new file mode 100644 index 0000000..50390dc --- /dev/null +++ b/www/src/content/blog/en/autism-self-advocacy-skills-aba.md @@ -0,0 +1,103 @@ +--- +title: "Unlock Independence for Children with Autism Through ABA Self‑Advocacy" +description: "Empower your child with individualized ABA therapy at Arizona Institute for Autism. Book a free consultation and kickstart personalized autism care today!" +slug: "autism-self-advocacy-skills-aba" +canonical: "https://www.azinstitute4autism.com/library/autism-self-advocacy-skills-aba" +lang: "en" +translationKey: "autism-self-advocacy-skills-aba" +featuredImage: "/assets/images/hero-teach-self-advocacy.webp" +date: "2024-12-02" +author: "rula-diab" +category: "Library" +tags: [] +draft: false +--- +# Guide to Teaching Self‑Advocacy in ABA + +![Rula Diab, Clinical Director, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) + + Rula Diab, Clinical Director, M.Ed, BCBA, LBA + + 02 December, 2024 + +![autism self-advocacy skills through aba - hero image](/assets/images/hero-teach-self-advocacy.webp) + +Self-advocacy is an essential life skill that allows individuals to express their thoughts, needs, and preferences. For children with autism or developmental disabilities, learning to advocate for themselves can foster independence, improve relationships, and enhance their overall quality of life. Through Applied Behavior Analysis (ABA), self-advocacy can be systematically taught and reinforced, providing children with the tools to navigate their world confidently. + +## What is Self-Advocacy? + +Self-advocacy involves: + +- Recognizing one’s needs and rights. + +- Effectively communicating those needs to others. + +- Making decisions that align with personal preferences and goals. + +Applying this skill to children with autism, self-advocacy might look like: + +- Requesting a break when feeling overwhelmed. + +- Choosing between activities or items. + +- Saying “no” to something they dislike or are uncomfortable with. + +Teaching self-advocacy empowers children to: + +- Build Independence : Reducing reliance on others to interpret their needs. + +- Enhance Communication Skills : Encouraging clear, and intentional communication. + +- Boost Self-Esteem : Fostering confidence in their ability to express themselves. + +- Promote Safety : Helping children articulate when they feel unsafe or need help. + +## How ABA Teaches Self-Advocacy + +ABA therapy provides a structured and individualized approach to teaching self-advocacy skills. Below are some key strategies used by ABA professionals: + +- Functional Communication Training (FCT) : Teaches children to use communication to express their needs instead of engaging in challenging behaviors. Example: Instead of having a tantrum when overwhelmed, a child learns to say, “I need a break” or use a break card. + +- Choice-Making Opportunities : Empowers children to make decisions in their daily routines. Example: Offering choices like, “Do you want to work with blocks or play with puzzles?” + +- Teaching Requesting (Manding) : Focuses on teaching children to ask for what they need or want. For example, using phrases like, “I need help” or pressing a button on an augmentative communication device. + +- Role-Playing Scenarios : Prepares children for real-life situations by practicing self-advocacy skills in a controlled setting. + +- Reinforcing Self-Advocacy Attempts : Encourages the behavior by rewarding appropriate attempts at self-expression. + +Parents play a critical role in reinforcing self-advocacy skills learned in ABA therapy. + +## Tips for Caregivers + +- Encourage Communication : Prompt your child to express their needs instead of anticipating them. + +- Celebrate Success : Acknowledge and reward even small attempts at self-advocacy. + +- Be Patient : Learning self-advocacy takes time and practice. + +- Model Advocacy : Demonstrate how you advocate for your own needs, providing a real-world example. + +Teaching self-advocacy through ABA empowers children to take charge of their needs, preferences, and choices. By fostering independence and enhancing communication skills, ABA helps children navigate their environments with confidence and dignity. Whether in therapy sessions or at home, self-advocacy is a gift that equips children for lifelong success. + + Previous Post + +###### [Discover Self‑Care Hacks for Parents of Children with Autism](autism-family-self-care-tips) + + Next Post + +###### [Executive Functioning Skills and Autism](executive-functioning-skills-autism) + +### Similar Blog Posts + +![individualized aba therapy - hero image](/assets/images/hero-aba-individual-care-plans.webp) + +#### [Individualized Care Plans in ABA Therapy](individualized-aba-therapy) + +![Integrity, Empowerment and Excellence: Arizona Institute for Autism expands to new office - hero image](/assets/images/hero-integrity-empowerment-excellence_800x.jpg) + +#### [Integrity, Empowerment and Excellence: Arizona Institute for Autism expands to new office](new-aia-scottsdale-office) + +![meet rula diab of aia - hero image](/assets/images/hero-community-highlight-meet-rula-diab_800x.jpg) + +#### [Community Highlights: Meet Rula Diab of Arizona Institute for Autism](community-highlight-meet-rula-diab) diff --git a/www/src/content/blog/en/autism-therapy-rapport-strategies.md b/www/src/content/blog/en/autism-therapy-rapport-strategies.md new file mode 100644 index 0000000..b4d6cfb --- /dev/null +++ b/www/src/content/blog/en/autism-therapy-rapport-strategies.md @@ -0,0 +1,65 @@ +--- +title: "Learn the Secrets to Effective Rapport Building in ABA Therapy" +description: "Discover proven strategies to build rapport and support children during ABA therapy sessions for fun, effective learning with increased engagement." +slug: "autism-therapy-rapport-strategies" +canonical: "https://www.azinstitute4autism.com/library/autism-therapy-rapport-strategies" +lang: "en" +translationKey: "autism-therapy-rapport-strategies" +featuredImage: "/assets/images/hero-rapport-strategies.webp" +date: "2024-06-03" +author: "rula-diab" +category: "Library" +tags: [] +draft: false +--- +# Learn the Secrets to Effective Rapport Building in ABA Therapy + +![Rula Diab, Clinical Director, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) + + Rula Diab, Clinical Director, M.Ed, BCBA, LBA + + 03 June, 2024 + +![rapport strategies for effective aba therapy - hero image](/assets/images/hero-rapport-strategies.webp) + +[Applied Behavior Analysis (ABA)](https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4883454/) therapy plays a crucial role in empowering children with Autism Spectrum Disorder (ASD) and other developmental conditions to acquire essential skills, achieve independence, and maximize their potential. A key aspect of effective ABA therapy involves developing a strong rapport with the child. Establishing a relationship built on trust and respect can greatly enhance the effectiveness and enjoyment of therapy sessions. + +It is vital for therapists to prioritize building rapport with the children they work with. This foundation of trust can help reduce resistance, increase engagement, and create a conducive learning environment. When children feel a connection with their therapist, they are more likely to actively participate in activities, leading to improved outcomes and more successful sessions. Understanding each child's individual preferences, needs, and communication styles can further enhance their willingness to engage and enjoy the therapy process, ultimately elevating the overall quality of treatment. + +Clinicians should keep in mind the importance of fostering strong relationships with their young clients during ABA sessions by: + +- Taking the time to learn about the child's interests, preferences, and needs, and incorporating these into session activities in a fun and interactive manner. + +- Maintaining consistency and setting clear, achievable expectations to build trust and assist children in meeting their goals. + +- Using communication strategies that are appropriate to the child's level to encourage interaction and ensure that their thoughts and feelings are acknowledged. + +- Providing children with choices whenever possible to promote engagement and focusing on reinforcing positive behaviors to boost self-confidence. + +- Making therapy sessions enjoyable by incorporating creative and exploratory activities to keep children engaged and happy. + +By investing effort in establishing this rapport, therapists can observe significant progress and growth in each child. + +Recognizing and accommodating a child's [sensory](https://www.autismspeaks.org/sensory-issues) needs within ABA sessions is crucial for enhancing engagement, reducing anxiety, and creating a more effective and enjoyable learning atmosphere. Building a strong rapport with a child in ABA therapy is essential for facilitating a positive, engaging, and successful therapeutic journey. Through trust-building, increased engagement, reinforcement of positive behavior, and promotion of enjoyable experiences, clinicians can greatly enhance the outcomes of ABA therapy. + + Previous Post + +###### [Benefits of Prompting & Parenting in ABA Therapy](aba-therapy-prompting-parenting-benefits) + + Next Post + +###### [Master Behavior Management: Discover the Four Functions of Behavior](behavior-management-functions-guide) + +### Similar Blog Posts + +![Integrity, Empowerment and Excellence: Arizona Institute for Autism expands to new office - hero image](/assets/images/hero-integrity-empowerment-excellence_800x.jpg) + +#### [Integrity, Empowerment and Excellence: Arizona Institute for Autism expands to new office](new-aia-scottsdale-office) + +![November AIA Update - hero image](/assets/images/hero-november-2022-aia-update_800x.jpg) + +#### [November AIA Update](november-2022-aia-update) + +![navigating the autism journey: understanding and supporting our children with autism - hero image](/assets/images/hero-understanding-autism-support_800x.jpg) + +#### [Navigating the Autism Journey: Understanding and Supporting Our Children with Autism](understanding-autism-support) diff --git a/www/src/content/blog/en/behavior-management-functions-guide.md b/www/src/content/blog/en/behavior-management-functions-guide.md new file mode 100644 index 0000000..7cd79b3 --- /dev/null +++ b/www/src/content/blog/en/behavior-management-functions-guide.md @@ -0,0 +1,69 @@ +--- +title: "Master Behavior Management: Discover the Four Functions of Behavior" +description: "Discover why behaviors happen and how to teach positive replacements with our simple guide. Take action now for smoother routines and happier learning!" +slug: "behavior-management-functions-guide" +canonical: "https://www.azinstitute4autism.com/library/behavior-management-functions-guide" +lang: "en" +translationKey: "behavior-management-functions-guide" +featuredImage: "/assets/images/hero-behavior-functions-management.webp" +date: "2024-06-28" +author: "rula-diab" +category: "Library" +tags: [] +draft: false +--- +# Master Behavior Management: Discover the Four Functions of Behavior + +![Rula Diab, Clinical Director, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) + + Rula Diab, Clinical Director, M.Ed, BCBA, LBA + + 28 June, 2024 + +![Master Behavior Management: Discover the Four Functions of Behavior - hero image](/assets/images/hero-behavior-functions-management.webp) + +Behavior is a form of communication and interaction that plays a crucial role in Applied Behavior Analysis. The management of behavior is key to understanding and modifying behaviors to achieve positive outcomes and enhance overall well-being. One important aspect of understanding behavior is determining its functions, which are the underlying reasons or motivations driving specific actions. Let's explore the importance of behavior management and the core functions of behavior. + +Behavior management involves a range of strategies aimed at promoting desirable behaviors, reducing challenging behaviors, and creating a supportive environment for a child's growth and development. + +## Identifying the Functions of Behavior + +Behavior serves various functions through which a child expresses their needs and desires. By identifying these functions, professionals can gain insights into the triggers and motivators behind behaviors. + +The primary functions of behavior in Applied Behavior Analysis (ABA): + +- Attention: Some behaviors are maintained by a desire for attention or social interaction. + +- Escape/Avoidance: Certain behaviors seek to escape or avoid unwanted demands, settings, or stimuli. + +- Access to Tangibles: Specific behaviors are reinforced by the desire to access preferred activities, items, or settings. + +- Sensory Stimulation: Behaviors may be driven by sensory needs, including self-stimulation or a need to regulate sensory input. + +Behavior analysts use assessments, such as Functional Behavior Assessments (FBAs), to determine the function of a behavior. They then develop individualized behavior intervention plans (BIPs) to address these functions. + +Understanding behavior functions allows professionals to tailor behavior management strategies to effectively address individual needs and motivations. ABA practitioners focus on modifying antecedents that trigger behaviors, providing appropriate consequences to address underlying functions, and promoting positive replacement behaviors through reinforcement. + +In conclusion, behavior management informed by an understanding of behavior functions is essential for achieving positive outcomes, promoting growth, and improving the well-being of individuals receiving ABA services. By recognizing the functions of behavior and implementing personalized interventions, ABA professionals can empower individuals to develop new skills and succeed in various settings. + + Previous Post + +###### [Learn the Secrets to Effective Rapport Building in ABA Therapy](autism-therapy-rapport-strategies) + + Next Post + +###### [Ease Back-to-School Time | ABA Antecedent & Consequence Interventions](aba-school-readiness-guide) + +### Similar Blog Posts + +![Ultimate Guide to Behavior Modification Techniques & Reinforcement Theory - hero image](/assets/images/hero-behavior-modification-techniques-reinforcement-theory_800x.jpg) + +#### [The Ultimate Guide to Behavior Modification Techniques & Reinforcement Theory](behavior-modification-techniques-reinforcement-theory) + +![Repetitive Behaviors with Children Diagnosed with Autism - hero image](/assets/images/hero-repetetive-behaviors.webp) + +#### [Repetitive Behaviors with Children Diagnosed with Autism](repetitive-behavior) + +![reduce behavior management - hero image](/assets/images/hero-reduce-behavior-management_800x.jpg) + +#### [4 Ways on How to Reduce Behavior Management](reduce-behavior-management) diff --git a/www/src/content/blog/en/behavior-modification-techniques-reinforcement-theory.md b/www/src/content/blog/en/behavior-modification-techniques-reinforcement-theory.md new file mode 100644 index 0000000..28c2ca5 --- /dev/null +++ b/www/src/content/blog/en/behavior-modification-techniques-reinforcement-theory.md @@ -0,0 +1,71 @@ +--- +title: "The Ultimate Guide to Behavior Modification Techniques & Reinforcement Theory" +description: "Explore reinforcement theory and its application in behavior modification techniques, focusing on strategies to encourage positive behaviors and reduce negative ones." +slug: "behavior-modification-techniques-reinforcement-theory" +canonical: "https://www.azinstitute4autism.com/library/behavior-modification-techniques-reinforcement-theory" +lang: "en" +translationKey: "behavior-modification-techniques-reinforcement-theory" +featuredImage: "/assets/images/hero-behavior-modification-techniques-reinforcement-theory_800x.jpg" +date: "2023-02-01" +author: "rula-diab" +category: "Library" +tags: [] +draft: false +--- +# The Ultimate Guide to Behavior Modification Techniques & Reinforcement Theory + +![Rula Diab, Clinical Director, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) + + Rula Diab, Clinical Director, M.Ed, BCBA, LBA + + 01 February, 2023 + +![Ultimate Guide to Behavior Modification Techniques & Reinforcement Theory - hero image](/assets/images/hero-behavior-modification-techniques-reinforcement-theory_800x.jpg) + +Children may exhibit maladaptive behaviors for various reasons, often driven by underlying functions. To address these behaviors, Applied Behavior clinicians use the [ABC model](https://www.iidc.indiana.edu/irca/articles/observing-behavior-using-a-b-c-data), a structured approach that helps identify patterns and triggers. This model involves observing a child's behavior in their natural environment, focusing on three key elements: the Antecedent (what happens before the behavior), the Behavior itself, and the Consequence (what follows the behavior). By carefully analyzing these factors, clinicians gain insights into why certain behaviors occur. + +Once the ABC data is collected, it guides clinicians in developing effective intervention strategies. By understanding the cause-and-effect relationship of behaviors, they can implement targeted consequences that reduce maladaptive behaviors while reinforcing positive alternatives. This process not only helps in decreasing unwanted actions but also encourages healthier coping mechanisms, fostering long-term behavioral improvements. + +## The ABC Model of Behavior + +Taking good ABC data can be a difficult task in a busy environment. Check out [this post](https://theautismhelper.com/take-great-abc-data/) for tips on how to take great ABC data, as well as more detailed ABC model sheets. + +![template to record good abc model data](/assets/images/abc-data-template.png) + + ABC Data Template + +## Consequence Interventions + +BCBA clinicians use [consequence interventions](https://specialconnections.ku.edu/behavior_plans/positive_behavior_support_interventions/teacher_tools/consequence_interventions) to minimize reinforcement for maladaptive behavior while increasing reinforcement for desirable behavior. Understanding why a child is engaging in a problem behavior helps to implement interventions that modify environmental factors that trigger a maladaptive behavior and teach replacement skills that achieve the same outcome as the problem behavior for the child. + +## Positive Reinforcement and Negative Reinforcement + +'Reinforcement' is a specific type of consequence intervention used to elicit a positive behavior change. It should be tailored to each child's needs and given immediately after the desired behavior to increase the occurrence of a specific behavior. Positive reinforcement refers to adding something to the child’s environment, whereas negative reinforcement refers to removing something from the child’s environment. Using a [reinforcer checklist](https://asdnetwork.unl.edu/sites/unl.edu.cehs.special-ed-communic-disorders.asd-network/files/2024-06/Preference%20Checklist%20A.pdf) can help identify specific reinforcers that are tailored to each individual. + +## Looking for more information? + +For more information on services offered by AIA, or to book your free consultation, visit us at [https://www.azinstitute4autism.com](../index), contact us at [(480) 687-7099](tel:+14806877099), or email [hello@azinstitute4autism.com](mailto:hello@azinstitute4autism.com). + +If you are looking for tips, check out more monthly [blog posts](../library) from AIA's clinical director, Rula Diab! + + Previous Post + +###### [AIA’s World Autism Community Day of Celebration](aia-world-autism-community-day-celebration) + + Next Post + +###### [Navigating the Autism Journey: Understanding and Supporting Our Children with Autism](understanding-autism-support) + +### Similar Blog Posts + +![enhancing generalization skills in children with autism - hero image](/assets/images/hero-enhancing-generalization-skills_800x.jpg) + +#### [Enhancing Generalization for Broader Impact in Autism](enhancing-generalization-skills) + +![Repetitive Behaviors with Children Diagnosed with Autism - hero image](/assets/images/hero-repetetive-behaviors.webp) + +#### [Repetitive Behaviors with Children Diagnosed with Autism](repetitive-behavior) + +![integrated aba model announcement - hero image](/assets/images/hero-integrated-aba-model-announcement_800x.jpg) + +#### [Arizona Institute for Autism Adopts an Integrated ABA Model](integrated-aba-model-announcement) diff --git a/www/src/content/blog/en/communication-social-skills-autistic-children-guide.md b/www/src/content/blog/en/communication-social-skills-autistic-children-guide.md new file mode 100644 index 0000000..cfde59d --- /dev/null +++ b/www/src/content/blog/en/communication-social-skills-autistic-children-guide.md @@ -0,0 +1,159 @@ +--- +title: "Building Communication & Social Skills in Autistic Children" +description: "Learn how to build communication and social skills in autistic children. Discover practical strategies, AAC tools, and ABA techniques for daily connection." +slug: "communication-social-skills-autistic-children-guide" +canonical: "https://www.azinstitute4autism.com/library/communication-social-skills-autistic-children-guide" +lang: "en" +translationKey: "communication-social-skills-autistic-children-guide" +featuredImage: "/assets/images/communication-skills-autistic-children-hero_img.png" +date: "2026-04-02" +author: "rula-diab" +category: "Library" +tags: [] +draft: false +--- +# Building Communication & Social Skills in Autistic Children: A Practical Guide for Families + +![Rula Diab, Clinical Director, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) + + Rula Diab, Clinical Director, M.Ed, BCBA, LBA + + 02 April, 2026 + +![A parent and an autistic child smiling while using a picture communication board during playtime.](/assets/images/communication-skills-autistic-children-hero_img.png) + +Communication is the vital bridge children use to share their needs, feelings, ideas, and experiences with the people around them. For children on the autism spectrum, communication development often follows a wonderfully unique path. It is incredibly important for parents to know that a delay in spoken words does not mean communication is absent. + +Building communication skills in autistic children means expanding their toolkit so they can express themselves effectively. Parents and professionals can achieve this by observing the child's unique body language, utilizing visual supports or AAC devices, following the child's interests during play, and employing positive reinforcement to celebrate every attempt at connection. + +Strengthening these skills is about giving our children meaningful ways to advocate for themselves and participate confidently in daily life. Whether your child uses full sentences, single words, or no spoken words at all, there are proven ways to foster deep, loving connections. + +## Recognizing the Different Ways Autistic Children Communicate + +It is common to equate communication entirely with spoken language. However, human beings share information in countless ways. When we broaden our definition of what it means to "speak," we start noticing exactly how much our children are already telling us. + +### Spoken Language and Unique Speech Patterns + +Some autistic children develop robust spoken language and use words and sentences quite similarly to their neurotypical peers. Others may experience significant expressive language delays or use language in highly unique ways. You might notice your child engaging in echolalia, which is the repetition of words or phrases they have heard recently. They might also script language, reciting entire scenes from their favorite television shows or movies to express their current mood. + +Rather than viewing these patterns as meaningless repetition, it is helpful to see them as stepping stones. These vocalizations are often the child’s way of processing their environment or attempting to connect. Over time, and with the right support, these scripts can gradually evolve into more flexible, spontaneous communication. + +### Gestures and Body Language + +Long before any child develops spoken language, they rely heavily on nonverbal communication. Autistic children frequently use gestures and body movements to make their desires known. A child might pull you by the hand toward the refrigerator when they are hungry, or they might physically hand you a tightly sealed jar they need help opening. + +Other common nonverbal cues include pointing to objects of interest, reaching up to be held, or simply shifting their eye gaze toward something they want. Acknowledging these physical gestures is crucial. When you respond to a child pulling your hand by saying, "You want help," you validate their effort and model the spoken language that pairs with their action. + +### Augmentative and Alternative Communication (AAC) + +For many children, spoken language remains difficult. This is where Augmentative and Alternative Communication (AAC) becomes a life-changing tool. AAC encompasses any system that provides additional ways to communicate outside of verbal speech. + +Tools like the Picture Exchange Communication System (PECS), simple visual communication boards, or tablet-based speech-generating apps give children a voice. Using visual supports and AAC does not hinder speech development. In fact, research consistently shows that AAC can actually help reduce frustration and provide a bridge to spoken language by giving children an immediate, successful way to request items and answer questions. + +Parent Tip: If your child struggles with transitions or knowing what comes next, visual supports are incredibly effective. Learn more about how to implement these in our guide on [First/Then Cards: Empowering Transitions for Autistic Children](first-then-cards-autism-transitions). + +### Behavior as Communication + +When a child does not yet possess the tools to easily express their needs, their behavior inevitably becomes their primary language. A child who throws a toy across the room might be saying, "I am exhausted and need a break." A child who cries uncontrollably in a crowded store is likely communicating that they are experiencing sensory overload. + +Understanding that all behavior serves a communicative purpose is a paradigm shift for many families. When we view challenging behavior as a plea for help or a lack of specific skills, we can collaborate with professionals to teach safe, effective replacement behaviors rather than simply punishing the outburst. + +## Social Skills vs. Masking: Fostering Genuine Connection + +Social development is another area where autistic children often require thoughtful support. Historically, many programs focused heavily on teaching autistic individuals to "mask" their traits. Masking means intentionally hiding natural behaviors (like stimming or avoiding intense eye contact) in order to mimic neurotypical expectations. + +While masking might help a child temporarily blend in, it is well-documented that doing so is emotionally exhausting and can lead to severe burnout and anxiety. At the Arizona Institute for Autism, we focus on genuine social interaction rather than forced conformity. + + Focus on Masking (Avoid) + Focus on Genuine Connection (Encourage) + + Forcing prolonged eye contact, which can be physically painful for some autistic individuals. + Encouraging joint attention, where the child and adult simply share focus on the same toy or activity. + + Suppressing harmless physical stimming (like hand flapping) during play. + Allowing self-regulation while teaching the child how to safely enter a group activity. + + Forcing the child to play with toys "the right way." + Joining the child in their specific interests and building interactive play around what they love. + +The goal of social development is to help children build friendships in ways that feel safe, natural, and enjoyable to them. + +## How ABA Therapy Supports Communication + +Professional support is often a critical piece of the puzzle. A collaborative team that includes a speech-language pathologist and Board Certified Behavior Analysts (BCBAs) can work wonders for your child's development. Applied Behavior Analysis (ABA) provides structured, evidence-based methods for building these crucial life skills. + +### Functional Communication Training (FCT) + +Functional Communication Training is a highly effective ABA strategy designed to replace challenging behaviors with clear, appropriate communication. If a child traditionally hits their sibling to get a toy, FCT involves teaching the child a better way to achieve that exact same goal. Depending on the child's abilities, therapists might teach them to hand over a picture card, use an interactive app, or say the word "toy" to get what they want. Once the child realizes that the new communication tool works faster and better than hitting, the challenging behavior naturally decreases. + +### Play-Based and Natural Environment Teaching + +The best learning happens when a child is engaged and having fun. Through Natural Environment Teaching (NET), our therapists use the child's everyday routines to practice communication. During snack time, the therapist might pause before handing over a preferred food to encourage the child to request it. + +We also heavily emphasize play-based learning. By setting up structured opportunities with building projects, cooperative games, or pretend play, children learn vital concepts like sharing and turn-taking in a low-pressure environment. You can explore more about this approach in our article on [Play and Leisure Skills for Children with Autism](play-leisure-skills). + +## Practical Ways Parents Can Support Communication at Home + +Therapy sessions provide the foundation, but parents are the true drivers of a child's long-term progress. Everyday routines at home offer dozens of natural opportunities to practice social interaction. + +First, always try to follow your child’s lead. Children are significantly more motivated to communicate when they are immersed in activities they genuinely enjoy. If your child enjoys playing with trains or cars, join them in their play. You can hold onto a car or train piece and pause briefly, creating a natural opportunity for your child to look toward you, reach, gesture, or communicate in order to get the next item. These small moments create powerful learning opportunities without adding pressure. + +Second, remember to give your child ample time to process language. Autistic children sometimes need a few extra seconds to understand what was said and formulate their response. Instead of immediately jumping in to answer for them, ask a question and calmly count to five in your head. + +You should also model simple language tailored to their current developmental level. If your child reaches for a cup of juice without speaking, you can gently model the phrase by saying, "Juice. I want juice." Keep your language clear and concise. Furthermore, offering choices throughout the day (asking "Do you want the red shirt or the blue shirt?") naturally invites your child to express an opinion. + +Parent Tip: For older children who are developing their communication skills, the focus often shifts toward independence. Read our [Guide to Teaching Self-Advocacy in ABA](autism-self-advocacy-skills-aba) to learn how to help your child speak up for their own boundaries. + +Finally, celebrate every single attempt your child makes to communicate. Whether they use a clear spoken word, point a finger, or hand you a PECS card, immediate praise and positive reinforcement build their confidence and show them that their voice truly matters. + +Communication development takes time, patience, and consistency. By recognizing all the beautiful and diverse ways your child interacts with the world, you can help them build the connections they need to thrive. + + Frequently Asked Questions + +## Help with First Autism Evaluation Expectations + +### At what age should I be concerned about my child's communication skills? + +You should discuss your concerns with a pediatrician if your child is not responding to their name by 12 months, not pointing or gesturing by 14 months, or not speaking any single words by 16 months. Early evaluation is always the safest route. + +### Will using an AAC device or picture cards stop my child from learning to talk? + +No. Extensive research shows that using AAC devices and visual supports does not hinder speech. In most cases, providing a child with an alternative way to communicate lowers their frustration and actually encourages the development of spoken language. + +### Why does my child repeat the same phrases from movies over and over? + +This is called echolalia or scripting. For many autistic children, repeating familiar phrases is a way to self-soothe, process information, or attempt to communicate a specific feeling they associate with that movie scene. + +### How can I improve my child's social interaction if they don't like playing with others? + +Start small by simply sharing space. Engage in "parallel play," where you sit near your child playing with similar toys without demanding interaction. Gradually introduce small shared actions, like rolling a ball back and forth, focusing on the joy of the activity rather than strict rules. + +### What is the difference between speech therapy and ABA for communication? + +A speech-language pathologist primarily focuses on the mechanics of speech, language processing, and oral motor skills. ABA therapy focuses on the functional use of communication in daily life, using reinforcement to encourage the child to use their language skills to get their needs met. The two therapies work wonderfully together. + +### How do I handle public meltdowns when my child can't tell me what's wrong? + +Prioritize safety and calm. Reduce sensory input if possible (move to a quieter area) and avoid demanding verbal explanations while the child is overwhelmed. Once they are calm, you can use visual supports or simple questions to try and identify the trigger. + + Previous Post + +###### [What to Expect at Your Child’s First Autism Evaluation](autism-evaluation-what-to-expect) + + Next Post + +###### [Autism Guide for Parents and Caregivers](parents-guide-to-autism-and-aba) + +### Similar Blog Posts + +![Parent and autistic child using visual supports, structured play, and calm routines together](/assets/images/family-guide-to-autism-aba-at-home_hero.png) + +#### [Autism Guide for Parents and Caregivers](parents-guide-to-autism-and-aba) + +![Parent and child meeting with a clinician in a calm, play-based autism evaluation setting](/assets/images/autism-evaluation-expectations_hero.png) + +#### [What to Expect at Your Child’s First Autism Evaluation](autism-evaluation-what-to-expect) + +![talking child has trouble socializing - hero](/assets/images/talk-not-social.jpg) + +#### [Why My Child Can Talk but Still Struggles Socially](social-pragmatic-communication-autism) diff --git a/www/src/content/blog/en/community-highlight-meet-rula-diab.md b/www/src/content/blog/en/community-highlight-meet-rula-diab.md new file mode 100644 index 0000000..4cba07d --- /dev/null +++ b/www/src/content/blog/en/community-highlight-meet-rula-diab.md @@ -0,0 +1,93 @@ +--- +title: "Community Highlights: Meet Rula Diab of Arizona Institute for Autism" +description: "Read about Rula Diab" +slug: "community-highlight-meet-rula-diab" +canonical: "https://www.azinstitute4autism.com/library/community-highlight-meet-rula-diab" +lang: "en" +translationKey: "community-highlight-meet-rula-diab" +featuredImage: "/assets/images/hero-community-highlight-meet-rula-diab_800x.jpg" +date: "2023-10-24" +author: "rula-diab" +category: "Library" +tags: [] +draft: false +--- +# Community Highlights: Meet Rula Diab of Arizona Institute for Autism + +![Rula Diab, Clinical Director, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) + + Rula Diab, Clinical Director, M.Ed, BCBA, LBA + + 24 October, 2023 + +![meet rula diab of aia - hero image](/assets/images/hero-community-highlight-meet-rula-diab_800x.jpg) + +Check out the following article from Voyage Phoenix about our Clinical Director Rula Diab. Read how Rula's passion to provide accessible ABA therapy for children with Autism Spectrum Disorder drove her to create the Arizona Institute for Autism. You may also read the [original article](https://voyagephoenix.com/interview/community-highlights-meet-rula-diab-of-arizona-institute-for-autism/) on the Voyage Phoenix website. + +Today we’d like to introduce you to Rula Diab. + +Hi Rula, We are so excited to have you with us today. What can you tell us about your story? + +The Arizona Institute for Autism was founded in 2018 by a licensed Behavioral Analyst, Rula Diab, and was initially based in Scottsdale, Arizona. To improve special education and strengthen communities across Arizona, the institute began by offering ABA (Applied Behavior Analysis) therapy services for children with autism in home and school settings. In 2020, our first clinic location opened in Scottsdale, driven by core principles of integrity, excellence, and empowerment. Our primary objective was to make ABA therapy accessible to children diagnosed with Autism Spectrum Disorder, ensuring that services were delivered at a level that supports long-term progress and helps children reach their fullest potential. Fast forward to 2023, the Arizona Institute for Autism has evolved into an integrated ABA Model. In alignment with our commitment to deliver more comprehensive services, we have relocated to a larger facility to accommodate the diverse needs of our learners better. As we look toward the future, AIA remains unwavering in its focus on delivering Quality Care in line with ethical standards of practice. We are dedicated to maintaining effective, data-driven treatments and to continuously supporting families through education and resources. This enables parents to understand the treatment process better, equipping them to support and advocate for their children effectively. + +Alright, let’s dig a little deeper into the story – has it been an easy path overall, and if not, what challenges have you had to overcome? + +In the process of operating the Arizona Institute for Autism, it’s crucial to remain vigilant about various potential challenges and to concentrate on enhanced planning and more effective problem-solving strategies. Throughout our journey, we have encountered many obstacles, including recruiting qualified clinicians who share our vision and the assurance of delivering high-quality ABA services. Additionally, employee retention presents its own challenges, owing to the work’s emotionally and mentally demanding nature. + +Great, so let’s talk business. Can you tell our readers more about what you do and what you think sets you apart from others? + +At the Arizona Institute for Autism, we are dedicated to providing specialized clinical care for children and teens diagnosed with Autism Spectrum Disorders. We serve families in the Scottsdale, Gilbert, Mesa, Tempe, and Phoenix Metropolitan areas. + +Our range of services for children and teens includes: + +- Autism Advocacy Support + +- Evaluation & Assessment Services + +- ABA Therapy Services for Children & teens + +- Community Autism Outreach Programs + +- Family Training and Support + +- Academic Readiness Programs + +- Clinical Supervision + +Our multidisciplinary team—comprised of highly-trained clinicians, paraprofessionals, educators, and consultants—focuses on fostering our learners’ behavioral and educational development. We achieve this through evidence-based clinical treatments and Applied Behavior Analysis (ABA) therapy services tailored to meet the unique needs of each child with Autism Spectrum Disorder. In collaboration with Special Education (SPED) teachers and school administrators, we strive to address specific educational challenges and enrich the learning environment for students. Every day, we work diligently to empower every one of our learners in their path toward achieving individual excellence and independence. + +What matters most to you? Why? + +As the founder of the Arizona Institute for Autism (AIA), my primary concerns are deeply shaped by my core values, objectives, and mission that define our organization. Paramount among these is our unwavering commitment to delivering evidence-based, individualized treatment plans aimed at achieving measurable improvements in the lives of our learners, setting them on a path to long-term progress. Equally important are the principles of Integrity and Accountability, foundational to the AIA ethos, shaping how our team interacts with the communities we serve. We diligently adhere to ethical practice guidelines to safeguard the well-being of all our AIA Learners. Moreover, attracting and retaining qualified, dedicated clinicians is crucial to the success of our mission. To achieve this, we cultivate a work culture that fosters professional development and strongly emphasizes work-life balance. This approach enhances our staff’s professional satisfaction and enriches the quality of care provided to our learners. + +Pricing: + +We accept a variety of insurance carriers, including Blue Cross Blue Shield, UnitedHealth, Optum, and United Health AHCCCS. Additionally, we accept the Empowerment Scholarship (ESA). + +Contact Info: + +- Website: [https://www.azinstitute4autism.com](../index) + +- Instagram: [https://www.linkedin.com/company/azinstituteforautism](https://www.linkedin.com/company/azinstituteforautism) + + Previous Post + +###### [Integrity, Empowerment and Excellence: Arizona Institute for Autism expands to new office](new-aia-scottsdale-office) + + Next Post + +###### [ASD Sensory-Friendly Thanksgiving Recipe: Pumpkin Dump Cake](asd-sensory-friendly-recipe-thanksgiving-pumpkin-cake) + +### Similar Blog Posts + +![individualized aba therapy - hero image](/assets/images/hero-aba-individual-care-plans.webp) + +#### [Individualized Care Plans in ABA Therapy](individualized-aba-therapy) + +![autism self-advocacy skills through aba - hero image](/assets/images/hero-teach-self-advocacy.webp) + +#### [Guide to Teaching Self‑Advocacy in ABA](autism-self-advocacy-skills-aba) + +![Integrity, Empowerment and Excellence: Arizona Institute for Autism expands to new office - hero image](/assets/images/hero-integrity-empowerment-excellence_800x.jpg) + +#### [Integrity, Empowerment and Excellence: Arizona Institute for Autism expands to new office](new-aia-scottsdale-office) diff --git a/www/src/content/blog/en/critical-thinking-skills.md b/www/src/content/blog/en/critical-thinking-skills.md new file mode 100644 index 0000000..b67648c --- /dev/null +++ b/www/src/content/blog/en/critical-thinking-skills.md @@ -0,0 +1,67 @@ +--- +title: "Critical Thinking Skills for Children with Autism" +description: "Enhance critical thinking in children with autism through tailored strategies that promote problem-solving, perspective-taking, and adaptability." +slug: "critical-thinking-skills" +canonical: "https://www.azinstitute4autism.com/library/critical-thinking-skills" +lang: "en" +translationKey: "critical-thinking-skills" +featuredImage: "/assets/images/hero-critical-thinking-skills_800x.jpg" +date: "2022-11-28" +author: "rula-diab" +category: "Library" +tags: [] +draft: false +--- +# Critical Thinking Skills for Children with Autism + +![Rula Diab, Clinical Director, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) + + Rula Diab, Clinical Director, M.Ed, BCBA, LBA + + 28 November, 2022 + +![Critical Thinking Skills for Children with Autism - hero image](/assets/images/hero-critical-thinking-skills_800x.jpg) + +Critical thinking is an important skill our children need to learn. It enables a child to generate the ability for a higher level of conceptual thinking and appropriately solve problems in their everyday life. + +Children with Autism may lack the ability to appropriately communicate their feelings or sometimes tend to engage in repetitive ways of rigid thinking and repetitive behaviors. When they are faced with challenges, moments of frustration occur when no clear expectations are provided to our children regarding their daily schedule, and the activities they are required to engage in throughout the day. + +It is important to understand our children while equipping them with the skills needed to think critically (i.e., [Executive Functioning](https://www.verywellmind.com/what-are-executive-functions-20463) and [Problem-Solving Skills](https://www.autismparentingmagazine.com/teaching-children-critical-thinking-skills/)) by teaching them: + +- Be more open-minded, less rigid, and more flexible in adapting to their environment. + +- Give them opportunities to learn creative mind thinking through play and leisure time. + +- Identify problems and proper solutions, based on the intensity of the given problem. + +- Understand their emotions and the likes/dislikes of others. + +- Provide them with visual support to clarify expectations such as schedules and decrease verbal interactions during challenging times. + +Applied Behavior Analysis is “ the process of systematically applying interventions based upon the principles of learning theory to improve socially significant behaviors to a meaningful degree, and to demonstrate that the interventions employed are responsible for the improvement in behavior ”- 1968 Baer, Wolf, & Risley. + +It is okay for our children to make errors, however, as caregivers and parents, we should create learning opportunities for our children, give them the emotional support they need and model proper responses. + +For more information on how to manage aggressive behavior and proper communication, connect with us by sending your messages and questions to [hello@azinsitute4autism.com](mailto:hello@azinsitute4autism.com) or contact us directly from our contact page. + + Previous Post + +###### [November AIA Update](november-2022-aia-update) + + Next Post + +###### [New Year Goals for Our Children with Autism](new-year-goals-2023) + +### Similar Blog Posts + +![Managing Aggressive Behavior Outbursts and Proper Communication with Your Child During those Moments - hero image](/assets/images/hero-managing-aggressive-behavior-outbursts_800x.jpg) + +#### [Managing Aggressive Behavior Outbursts and Proper Communication with Your Child During those Moments](managing-aggressive-behavior-outbursts) + +![2024 new year reflection and planning for autism support and awareness - hero image](/assets/images/hero-new-year-goals-2024.webp) + +#### [New Year 2024: Holiday Tips for Autism Support & Awareness](new-year-2024-autism-holiday-tips) + +![teaching academic, social, communications, and independence skills](/assets/images/hero-aba-preschool-az_800x.jpg) + +#### [Now Enrolling: AIA Preparatory Academy for Children Ages 2–6](aba-school-readiness-arizona) diff --git a/www/src/content/blog/en/early-signs-autism-by-age.md b/www/src/content/blog/en/early-signs-autism-by-age.md new file mode 100644 index 0000000..dddb545 --- /dev/null +++ b/www/src/content/blog/en/early-signs-autism-by-age.md @@ -0,0 +1,427 @@ +--- +title: "Early Signs of Autism by Age: 12 Months to 4 Years" +description: "Learn early autism signs by age (12–24 months and 2–4 years), what patterns matter most, and how screening and evaluations can help." +slug: "early-signs-autism-by-age" +canonical: "https://www.azinstitute4autism.com/library/early-signs-autism-by-age" +lang: "en" +translationKey: "early-signs-autism-by-age" +featuredImage: "/assets/images/early_signs_autism_by_age_hero.png" +date: "2026-02-01" +author: "rula-diab" +category: "Library" +tags: [] +draft: false +--- +# Early Signs of Autism by Age: 12 Months to 4 Years + +![Rula Diab, Clinical Director, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) + + Rula Diab, Clinical Director, M.Ed, BCBA, LBA + + 01 February, 2026 + +![Parent and toddler playing with blocks, sharing eye contact and pointing during play.](/assets/images/early_signs_autism_by_age_hero.png) + +For many parents, it begins with a familiar worry: "Something feels a little different, but I can't tell if it's a phase, a personality thing, or something I should look into." + +That uncertainty is common. It is also why clinicians look for patterns across everyday skills , not one isolated milestone. + +Instead of asking only "Are they meeting milestones," a more useful question is: How does my child use skills in real life ? + +- Do they communicate just to label, or to connect? + +- Do they share attention with you, or stay in their own bubble? + +- Do they play with you, or mostly beside you? + +- Do routines work only when everything stays the same? + +You may hear professionals talk about "adaptive skills," which are the practical skills that help a child function day to day. Tools like the Vineland Adaptive Behavior Scales are designed to measure adaptive behavior across domains like communication, daily living, and socialization. (You can see a publisher overview in the [Vineland-3 brochure from Pearson](https://www.pearsonassessments.com/content/dam/school/global/clinical/us/assets/vineland-3/vineland-3-brochure.pdf).) + +A quick reassurance: Seeing a few signs does not mean your child is autistic. Many toddlers show one or two items on a checklist during stressful seasons, sleep changes, language bursts, or big transitions. What matters most is the overall pattern , and whether it persists across time and settings. + +## Quick milestone red flags (6 to 24 months) + +Many families search "early signs of autism" because they want a fast reality check by age. This is not a diagnosis list. It is a set of common patterns worth discussing if they are persistent. + +By around 6 months + +- Few warm, joyful expressions (smiles, laughter) directed at other people + +- Limited back-and-forth facial expressions during play + +By around 9 months + +- Limited sharing of sounds, smiles, or other back-and-forth expressions + +- Rarely "checks in" with you during play (little social referencing) + +By around 12 months + +- Limited babbling meant for social connection + +- Few gestures like showing, pointing, waving, or reaching to be picked up + +- Limited response to name most of the time + +By around 16 months + +- Few or no spoken words used meaningfully + +By around 24 months + +- Few or no meaningful two-word phrases (not just repeating) + +- Limited pretend play, limited sharing, or minimal interest in people during play + +- Words that appear but are not used to connect or share (more labeling than social use) + +If a couple items fit, it can still be within typical development. If several fit, or the pattern is growing clearer over time, it is reasonable to ask for screening and a developmental evaluation pathway. + +A note about girls: Autism can look different in girls, and some children may use "camouflaging" or masking behaviors, such as copying peers, staying very quiet, or working hard to blend in. If your gut says something is off, it is still worth discussing with your pediatrician, even if your child seems "fine" in public settings. + +## The patterns that tend to matter most + +If you read only one section, please make it this one. Across ages 12 months to 4 years, clinicians often watch closely for: + +### 1) Joint attention + +Joint attention is the "shared spotlight" skill, two people intentionally focusing on the same thing for social connection. A clear definition and examples are available in UNC's ASAP resource on [what joint attention is and why it matters](https://www.med.unc.edu/healthsciences/asap/materials-1/about-joint-attention/). + +In plain language, joint attention looks like: + +- You point to a plane, your child looks at the plane, then looks back at you. + +- Your child brings you a toy, not for help, but to share "Look!" + +### 2) Gestures paired with eye contact + +Pointing, showing, waving, reaching to be picked up, and nodding are early communication tools. The CDC's overview of [signs and symptoms of autism](https://www.cdc.gov/autism/signs-symptoms/index) includes several gesture and social-sharing markers parents commonly notice first. + +### 3) Functional communication (not just word count) + +A child can have words and still struggle to use communication socially. If that describes your situation, AIA's article on [why a child can talk but still struggle socially](social-pragmatic-communication-autism) is a strong next read. + +### 4) Social reciprocity + +Back-and-forth interaction, imitation, responding to name, and taking turns in simple routines. + +### 5) Repetitive behaviors and intense rigidity + +Repetitive movements, narrow interests, or big distress with small changes that interfere with daily life. + +### 6) Regression + +Loss of words, gestures, eye contact, play skills, or social interest is always worth discussing promptly with your pediatrician. + +## A helpful note about screening (18 and 24 months) + +In the U.S., the American Academy of Pediatrics recommends autism-specific screening at 18 and 24 months , along with ongoing developmental surveillance. You can read that recommendation on the AAP's patient-facing page about [autism screening recommendations at 18 and 24 months](https://www.aap.org/en/patient-care/autism/). + +The CDC also summarizes that guidance for clinicians in its page on [clinical screening for autism at 18 and 24 months](https://www.cdc.gov/autism/hcp/diagnosis/screening). + +## Early signs of autism by age at a glance + + Age range + What you might notice + Why it can matter + A simple next step this week + + 12–24 months + Fewer gestures, limited response to name, limited joint attention, limited babbling + Social communication is more than vocabulary + Practice 5 "share attention" moments/day (point + label + wait) + + 2–4 years + Limited pretend play, difficulty with peer play, scripted or repetitive speech + Social play and flexible language expand rapidly here + Practice one short pretend routine (feed doll, park toys) + + Any age + Regression, extreme distress with changes, intense sensory reactions that disrupt life + Patterns across time and settings are worth discussing + Write down 3 examples and bring them to your next visit + +## 12–24 months: early toddler years + +This stage is often where families notice differences in how skills are used. + +### Communication signs (12–24 months) + +Parents may notice: + +- Limited eye contact during feeding or play + +- Avoiding eye contact or rarely looking up to share a moment + +- Fewer social smiles or facial expressions directed toward others + +- Not smiling back when you smile or try to engage + +- Rarely responding to their name consistently + +- Limited babbling meant to connect (not just exploring sounds) + +- Few or no words by 16–18 months, or words that are not used for connection + +- Limited use of gestures (pointing, showing, waving) + +- Difficulty communicating to request, protest, or share interest + +- Less imitation of words or actions + +- Inconsistent understanding of simple directions + +Here is the nuance many families miss at first: communication is not just speech . A toddler can have words and still struggle with the social side of communication. + +A helpful home example: Put a favorite snack in a clear container. Wait without rescuing right away. + +- Do they look at you for help? + +- Do they hand you the container? + +- Do they point, gesture, vocalize, or try to pull your hand? + +That "help-seeking" moment can tell you a lot about functional communication. + +If transitions are a major trigger in your home, AIA's guide to [First/Then cards for autistic children and smoother transitions](first-then-cards-autism-transitions) can be an easy, practical tool to start with. + +### Social engagement and play (12–24 months) + +You might see: + +- Limited joint attention (not looking where you point, not showing items) + +- Preference for playing alone most of the time (even with a caregiver nearby) + +- Reduced interest in social games like peek-a-boo or pat-a-cake + +- Difficulty copying simple play actions (rolling a car, feeding a doll) + +- More observing than engaging + +Joint attention is one of the earliest social building blocks. The CDC includes social-sharing examples like not showing you objects they like and not engaging in interactive games in its list of [common autism signs parents may notice](https://www.cdc.gov/autism/signs-symptoms/index). + +### Sensory and big reactions (12–24 months) + +Some early signs show up less in milestones and more in daily life. + +You may notice: + +- Getting very upset by everyday sounds, smells, tastes, textures, or bright lights + +- Strong distress with everyday sounds (vacuum, blender, hand dryer) + +- Intense reactions to textures (clothes tags, certain foods, grass, sand) + +- Big upset with grooming routines (hair washing, nail trimming, tooth brushing) + +- Avoiding or seeking certain sensations in a way that disrupts routines (covering ears, crashing, spinning) + +- Seeming "fine" one moment, then melting down quickly in bright, busy places + +Sensory differences alone do not equal autism. What matters is whether they cluster with social communication differences and repetitive or rigid patterns. + +### Object play and attachment patterns (12–24 months) + +Toddlers love repetition, but some patterns stand out when they are intense, persistent, and hard to interrupt. + +You might see: + +- Lining up objects repeatedly (cars, blocks, cups) and becoming very upset if moved + +- Focusing on parts of toys (spinning wheels, opening and closing doors) more than using the toy in pretend play + +- Carrying an unusual object everywhere (a specific lid, string, spoon) and melting down if it is taken away + +- An unusual attachment to objects that is hard to interrupt or replace + +- Watching the same short movement over and over (spinning, dropping, rolling) rather than exploring varied play + +If you are seeing a mix of play differences, sensory distress, and rigidity, it can help to track examples for your next pediatric visit. + +### Daily routines and flexibility (12–24 months) + +You may notice: + +- Difficulty transitioning between activities + +- Strong reactions to small changes in routine + +- Heavy reliance on adults for tasks peers are beginning to attempt + +If routines feel fragile, it can help to build predictable structure while teaching flexible coping. For an ABA-informed approach, AIA's article on [proactive and reactive ABA strategies for behavior support](proactive-reactive-aba-strategies-guide) offers a parent-friendly framework. + +## 2–4 years: preschool years + +In preschool, the spotlight shifts to how skills come together: language + play + flexibility + early independence . + +### Communication signs (2–4 years) + +Parents may notice: + +- Delayed expressive language or unusual speech patterns + +- Difficulty answering simple questions (especially "what happened?") + +- Challenges with conversational turn-taking + +- Repeating the same phrases or lines from shows (echolalia or scripting), sometimes without clear purpose + +- Talking "at" people more than with them (lots of language, little back-and-forth) + +At this age, the most useful question is often: Is my child using language to connect and share ideas, or mainly to label, request, or repeat? + +If you want to delve deeper into the social side of language, AIA's article on [pragmatic language differences in autism](social-pragmatic-communication-autism) helps explain why "talking" and "social communication" are not always the same thing. + +### Socialization and play signs (2–4 years) + +Common concerns include: + +- Limited pretend or imaginative play + +- Playing near peers more than with peers + +- Rarely initiating interaction or sharing interests + +- Difficulty understanding social cues or emotions + +If play skills are a big question for your family, AIA's guide to [play and leisure skills for children with autism](play-leisure-skills) offers concrete ways to build shared play step by step. + +### Sensory, coping, and regulation signs (2–4 years) + +You might see: + +- Getting very upset by everyday sounds, smells, tastes, textures, or bright lights , especially in busy environments + +- Strong resistance to changes or transitions, especially after a sensory-heavy day + +- Overwhelm in busy environments (birthday parties, loud stores, crowded playgrounds) + +- Big emotional reactions to "small" changes, and difficulty calming once upset + +- Extreme pickiness or distress around food textures, smells, or mixed foods + +- Sensory seeking that becomes unsafe or disruptive (constant crashing, chewing non-food items) + +Two AIA resources that pair well here: + +- [Why emotional regulation should be the heart of every ABA program](emotional-regulation-aba) + +- [Understanding sensory processing in the context of ABA therapy](sensory-processing) + +Arizona aside: In Phoenix-area summers, outdoor time can shrink fast. On indoor days, you can gently practice flexibility with "tiny changes" (a different cup color, switching the order of two activities) and reinforce calm recovery. AIA's [ABA summer routine tips for parents](aba-therapy-summer-routine-tips) has season-specific ideas that fit Arizona families. + +### Object play, interests, and rigidity (2–4 years) + +Interests can be a strength. The question is whether they become so narrow or rigid that they limit learning, play, or family routines. + +You may notice: + +- A very strong preference for one type of play (only letters, only numbers, only trains) + +- Upset when play does not go "the right way" (scripts must be followed exactly) + +- Repetitive play themes that do not expand (same scene, same order, same lines) + +- Distress when a preferred object is not available, even when alternatives are offered + +- Continued focus on parts of toys rather than flexible pretend play + +- An unusual attachment to objects that drives routines or causes major distress when interrupted + +## What to track before you call your pediatrician + +When you feel concerned, it helps to show patterns rather than general worry. For one week, jot down: + +- What happened right before the behavior (noise, transition, demand, hunger, change) + +- What your child did (gesture, words, crying, leaving, repeating) + +- How long it lasted + +- What helped (deep pressure, snack, break, First/Then, quiet space) + +- Where it happens (home, store, daycare) + +This kind of tracking lines up nicely with ABA thinking. If you want the parent-friendly version of "why behaviors happen," AIA's post on [understanding behavior functions and behavior management](behavior-management-functions-guide) is a useful companion. + +## Screening tools parents often hear about (and a key caution) + +Many pediatric practices use the M-CHAT-R/F , a parent-report screening tool for toddlers. If you want the most accurate information straight from the source, use the [official M-CHAT screening website](https://www.mchatscreen.com/) and its page on [how M-CHAT-R/F scoring works](https://www.mchatscreen.com/mchat-rf/scoring/). + +Important caution: The M-CHAT is copyrighted, and many copies floating around the internet are reposted improperly. The official site lists permissions and restrictions in its [M-CHAT-R/F guidelines](https://www.mchatscreen.com/mchat-rf/). + +## When an evaluation is the right next step + +There is no blood test for autism. A comprehensive evaluation typically includes developmental history plus structured observation. + +At AIA, you can learn about evaluation options on the page for [autism evaluations in Arizona](../autism-evaluations), including how the ADOS may be used as a structured observation tool. + +If you want an outside clinical overview of ADOS-2 in plain language, Mass General's Lurie Center provides a helpful explanation of the [ADOS-2 standardized assessment](https://www.massgeneral.org/children/autism/lurie-center/autism-diagnostic-observation-schedulesecond-edition-ados2). + +If your next question is "How do we even start," AIA's step-by-step page on the [ABA therapy intake process and scheduling an assessment](../aba-therapy-intake-process) can make the logistics feel more manageable. + +## A final reassuring note for families + +Noticing patterns does not mean something is "wrong." It means your child might benefit from support that fits how they learn, communicate, and cope with the world. + +Early understanding helps families: + +- build on strengths, + +- support areas of need, + +- feel informed rather than stuck in worry. + +If you would like to talk through your observations with a local team, you can start with AIA's [free client consultation form](../client-consultation) or explore more parent-friendly resources in the [AIA Library](../library). + + Frequently Asked Questions + +## Early Signs of Autism by Age + +### What are the earliest signs of autism in toddlers? + +Many families notice differences in joint attention, gestures, response to name, and back-and-forth social play. The CDC's list of [autism signs and symptoms](https://www.cdc.gov/autism/signs-symptoms/index) includes several early social communication markers. + +### What are signs of autism at 18 months? + +Possible signs include limited response to name, fewer gestures (pointing, showing), limited joint attention, and difficulty using communication socially. The AAP notes autism screening is recommended at [18 and 24 months](https://www.aap.org/en/patient-care/autism/). + +### What are signs of autism in a 2-year-old? + +At age two, concerns often include limited pretend play, difficulty with reciprocity, repeating the same phrases, intense distress with transitions, and challenges using language for connection. For play development ideas, see AIA's guide to [play and leisure skills](play-leisure-skills). + +### Does delayed speech automatically mean autism? + +No. Speech delay can have many causes. Clinicians look at the whole pattern, including gestures, joint attention, play, flexibility, sensory responses, and how communication is used in daily life. + +### When should my child be screened for autism? + +The American Academy of Pediatrics recommends autism-specific screening at [18 and 24 months](https://www.aap.org/en/patient-care/autism/). The CDC summarizes that guidance for clinicians on its page about [clinical autism screening](https://www.cdc.gov/autism/hcp/diagnosis/screening). + +### What happens during an autism evaluation? + +Evaluations usually include caregiver history plus structured observation of social communication and play. AIA explains how tools like the ADOS may be used on its [autism evaluations page](../autism-evaluations), and Mass General provides a general overview of the [ADOS-2 assessment](https://www.massgeneral.org/children/autism/lurie-center/autism-diagnostic-observation-schedulesecond-edition-ados2). + + Previous Post + +###### [Autism Evaluation in Arizona: A Parent's Step-by-Step Guide](autism-evaluation-diagnosis-arizona-parent-guide) + + Next Post + +###### [What to Expect at Your Child’s First Autism Evaluation](autism-evaluation-what-to-expect) + +### Similar Blog Posts + +![Parent and child meeting with a clinician in a calm, play-based autism evaluation setting](/assets/images/autism-evaluation-expectations_hero.png) + +#### [What to Expect at Your Child’s First Autism Evaluation](autism-evaluation-what-to-expect) + +![Pediatrician performing a toddler](/assets/images/autism_evaluation_arizona_hero.jpg) + +#### [Autism Evaluation in Arizona: A Parent's Step-by-Step Guide](autism-evaluation-diagnosis-arizona-parent-guide) + +![Ultimate Guide to Behavior Modification Techniques & Reinforcement Theory - hero image](/assets/images/hero-behavior-modification-techniques-reinforcement-theory_800x.jpg) + +#### [The Ultimate Guide to Behavior Modification Techniques & Reinforcement Theory](behavior-modification-techniques-reinforcement-theory) diff --git a/www/src/content/blog/en/emotional-regulation-aba.md b/www/src/content/blog/en/emotional-regulation-aba.md new file mode 100644 index 0000000..1ea2048 --- /dev/null +++ b/www/src/content/blog/en/emotional-regulation-aba.md @@ -0,0 +1,242 @@ +--- +title: "Why Emotional Regulation Should Be the Heart of Every ABA Program" +description: "Why emotional regulation should lead ABA therapy. Learn co-regulation steps, coping tools, and family tips from the Arizona Institute for Autism." +slug: "emotional-regulation-aba" +canonical: "https://www.azinstitute4autism.com/library/emotional-regulation-aba" +lang: "en" +translationKey: "emotional-regulation-aba" +featuredImage: "/assets/images/child-shopping-cart-tired-cranky.jpg" +date: "2025-11-01" +author: "rula-diab" +category: "Library" +tags: [] +draft: false +--- +# Why Emotional Regulation Should Be the Heart of Every ABA Program + +![Rula Diab, Clinical Director, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) + + Rula Diab, Clinical Director, M.Ed, BCBA, LBA + + 01 November, 2025 + +![child taking emotional regulation timeout in shopping cart - hero](/assets/images/child-shopping-cart-tired-cranky.jpg) + +Progress in Applied Behavior Analysis is often shown in neat graphs and mastered goals. Under every data point is something more human: emotion. When a child learns to understand and manage feelings, everything else gets easier. Focus grows, communication opens up, and daily life feels safer and more predictable. + +Key idea: Emotional regulation is not a "nice-to-have." It is the engine that powers learning, independence, and connection. + +[Book a free consultation](../client-consultation) to talk with a Client Advocate about your child’s goals and how our team can help. + +## What Emotional Regulation Really Means + +Emotional regulation is the ability to notice body signals and feelings, to pause, and to respond with a useful strategy. For many autistic children, this is hard because of sensory sensitivities, communication differences, or anxiety during unexpected change. In plain language, regulation helps a child move from "I cannot handle this" to "I know what to do right now." + +### Why It Matters More Than Compliance + +A child can follow a prompt during a quiet session. If frustration spikes at the grocery store, that prompt may not help. + +Emotional regulation bridges the gap between behavior learned in therapy and behavior used in real life. It turns survival mode into learning mode, which is where growth happens. + +Related reading: + +- [Enhancing generalization skills](enhancing-generalization-skills) + +- [Proactive and reactive ABA strategies](proactive-reactive-aba-strategies-guide) + +## From Compliance to Connection + +Children learn best when they feel safe and understood. Try simple, steady scripts that name the feeling and offer a choice. + +- "I see this is hard. Let us breathe together." + +- "Do you want help or a break?" + +- "You used your words. Great job asking for help." + +This is how empathy, trust, and skill grow at the same time. If you want a deeper dive into the clinical side, explore our overview of [ABA Therapy at AIA](../aba-therapy). + +## How AIA Teaches Emotional Regulation + +We design plans that are individualized, neurodiversity-affirming, and practical. We also show families how to use the same language and tools at home so the child experiences consistency. Learn more about our [intake process](../aba-therapy-intake-process). + +### Step 1: Label the Emotion + +Use mirrors, pictures, or a simple chart. Keep labels short. + +- "Happy" + +- "Frustrated" + +- "Worried" + +- "Tired" + +### Step 2: Co-Regulate First + +Adults model calm breathing, quiet voice, and slow body. We are the steady anchor the child can borrow until they can steady themselves. + +### Step 3: Build a "Coping Wheel" + +Offer two or three choices at first. Practice during calm times. + +- Belly breathing + +- Noise-reducing headphones + +- "Break" card or "Help please" card + +- Squeezing a fidget + +Helpful tool: Try our guide to [First/Then cards for smoother transitions](first-then-cards-autism-transitions). + +### Step 4: Reinforce Self-Regulation + +Catch it in the moment. + +- "You asked for a break. That kept your body safe." + +- "You breathed and tried again. That is strong self-control." + +### Step 5: Involve Families Every Day + +Parents and caregivers are a child’s first co-regulators. We coach you on scripts, visuals, and routines to keep the approach the same at home and out in the community. + +## Quick Reference: Triggers and Tools + + Common trigger in daily life + What the child might feel + Simple ABA-aligned supports + What to practice later + + Noisy room or store + Overwhelmed, tense body + Headphones, "quiet corner," count to ten + Gradually increase time in the space with breaks + + Change in routine + Worried, stuck + Visual schedule, First/Then card + Preview changes the night before and morning of + + Challenged task + Frustrated, avoidant + Break card, help request script + Errorless learning, small steps, praise for effort + + Long wait + Bored, restless + "Waiting kit" with fidgets and a short game + Timed waiting with a reward for successful waiting + +Tip for Arizona families: Pack a small waiting kit for errands in Phoenix heat. Include a collapsible water bottle, a cool cloth, and one calming activity. Keep it in the car year-round. + +## Where Regulation Meets Learning + +Once children have go-to strategies, the "learning brain" can do its job. You will see: + +- Better attention to instruction + +- More communication attempts + +- Smoother participation with peers + +- Faster recovery after stress + +If executive functioning skills like planning and flexible thinking are also a goal, read our library article on [Executive Functioning Skills and Autism](executive-functioning-skills-autism). + +## How We Track Progress + +ABA is data-driven, and regulation goals can be measured clearly. + +- Strategy use: How often the child uses a matched strategy without a prompt + +- Recovery time: Minutes from upset to ready to learn + +- Support level: From full adult model to independent use + +- Generalization: Home, clinic, school, and community use + +You will see these metrics in your care plan and progress reviews. For method choices inside sessions, see our primer on [Discrete Trial Training (DTT) and Natural Environment Training (NET)](aba-therapy-dtt-net-guide). + +## Home Setup in Two Weeks + +Week 1: Build the system + +- Pick two feelings to target. + +- Post a visual schedule in the kitchen. + +- Tape a "break" card near the most challenging spot at home. + +- Practice breathing at bedtime for one minute. + +Week 2: Use and reinforce + +- Prompt a strategy once a day during a mild challenge. + +- Praise the attempt first, not the perfect outcome. + +- Log wins on the fridge so everyone can see progress. + +Want help designing your plan? [Schedule a free consultation](../client-consultation). We serve families across the Phoenix metro area and offer in-center options. + +### Keep Learning with AIA + +- [Benefits of ABA Therapy](aba-therapy-benefits) + +- [Individualized ABA Therapy Plans](individualized-aba-therapy) + +- [Rapport Building in ABA](autism-therapy-rapport-strategies) + +Ready to take the next step? Visit our [ABA Therapy](../aba-therapy) page or start the [Learner Intake Process](../aba-therapy-intake-process). + + Frequently Asked Questions + +## Emotional Regulation Tips + +### What is emotional regulation in ABA therapy? + + It is a set of skills that help a child notice feelings, pause, and choose a healthy response. We teach and practice these skills across settings until they become automatic. + +### How is co-regulation different from self-regulation? + + Co-regulation uses an adult’s calm presence to guide the child in the moment. Self-regulation is the long-term goal where the child uses the same tools independently. + +### Why focus on emotions instead of compliance? + + Compliance may look good briefly. Emotional regulation produces lasting gains that generalize to school, stores, and play. It also strengthens trust and communication. + +### Which tools help most at home? + + Start with a visual schedule, First/Then cards, a calm corner, and one movement break the child enjoys. Keep language short. Use the same scripts your team uses. + +### How do we measure progress? + + We track independent strategy use, recovery time, and how much adult support is needed. The goal is steady progress toward independence and generalization. + +### When should we ask for extra help? + + Reach out if big feelings occur more often, if recovery takes longer, or if daily activities become harder. Our team can develop an individualized plan that meets your child's needs. + + Previous Post + +###### [Autism and Fall Break: How to Keep Routines Calm and Predictable](autism-fall-break-routine-tips-halloween-thanksgiving) + + Next Post + +###### [Heart Full of Gratitude](heart-full-of-gratitude) + +### Similar Blog Posts + +![Parent and autistic child using visual supports, structured play, and calm routines together](/assets/images/family-guide-to-autism-aba-at-home_hero.png) + +#### [Autism Guide for Parents and Caregivers](parents-guide-to-autism-and-aba) + +![hero image - executive functioning skills strategies for autistic children](/assets/images/hero-executive-functioning-skills-autism.webp) + +#### [Executive Functioning Skills and Autism](executive-functioning-skills-autism) + +![Parent and child meeting with a clinician in a calm, play-based autism evaluation setting](/assets/images/autism-evaluation-expectations_hero.png) + +#### [What to Expect at Your Child’s First Autism Evaluation](autism-evaluation-what-to-expect) diff --git a/www/src/content/blog/en/enhancing-generalization-skills.md b/www/src/content/blog/en/enhancing-generalization-skills.md new file mode 100644 index 0000000..f4b4deb --- /dev/null +++ b/www/src/content/blog/en/enhancing-generalization-skills.md @@ -0,0 +1,75 @@ +--- +title: "Enhancing Generalization for Broader Impact in Autism" +description: "Enhancing generalization in autism involves stimulus, response, and situation generalizations, ensuring learned behaviors apply across various situations." +slug: "enhancing-generalization-skills" +canonical: "https://www.azinstitute4autism.com/library/enhancing-generalization-skills" +lang: "en" +translationKey: "enhancing-generalization-skills" +featuredImage: "/assets/images/hero-enhancing-generalization-skills_800x.jpg" +date: "2023-07-04" +author: "rula-diab" +category: "Library" +tags: [] +draft: false +--- +# Enhancing Generalization for Broader Impact in Autism + +![Rula Diab, Clinical Director, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) + + Rula Diab, Clinical Director, M.Ed, BCBA, LBA + + 04 July, 2023 + +![enhancing generalization skills in children with autism - hero image](/assets/images/hero-enhancing-generalization-skills_800x.jpg) + +Generalization is a crucial aspect of learning, ensuring that skills and behaviors extend beyond the initial learning environment. Without generalization, individuals may struggle to apply what they’ve learned to new situations, limiting the effectiveness of their education or therapy. + +In behavioral science, generalization refers to the process by which a learned behavior is applied across different stimuli, responses, or settings. + +## There are Three Types of Generalization + +- Stimulus Generalization: A learned behavior extends to similar situations or stimuli, like a child using words to ask for different toys after learning to do so with a specific toy. + +- Response Generalization: A reinforced behavior leads to increased similar behaviors, such as a child using "please" for different requests after being reinforced for doing so when asking for a toy. + +- Setting/Situation Generalization: A reinforced behavior in one setting becomes likely in other settings like a child washing hands before meals at home after reinforcement for doing so at school. + +Understanding the three primary types of generalization—stimulus, response, and setting/situation—helps educators, therapists, and caregivers foster meaningful, lasting skill development. + +## Strategies to Achieve Generalization Skills + +- Multiple Exemplar Training: Provides varied examples to foster generalization. + +- Using Natural Reinforcers: Encourages behavior change to occur in real-life situations + +- Teaching Loosely: Altering the teaching method to promote generalization. Initial prompts may be required, which should be gradually reduced as the child begins to independently perform the behavior. + +- Consistency is vital for effective generalization. While it may take time, with continual practice and reinforcement, skills learned during therapy can be applied in diverse settings, making therapy more effective and beneficial. + +## Looking for more information? + +For more information on services offered by AIA, or to book your free consultation, visit us at [https://www.azinstitute4autism.com](../index), contact us at [(480) 687-7099](tel:+14806877099), or email [info@azinstitute4autism.com](mailto:info@azinstitute4autism.com). + +If you are looking for more tips, check our [monthly blog posts](../library) from AIA’s clinical director, Rula Diab! + + Previous Post + +###### [Navigating the Autism Journey: Understanding and Supporting Our Children with Autism](understanding-autism-support) + + Next Post + +###### [Arizona Institute for Autism Adopts an Integrated ABA Model](integrated-aba-model-announcement) + +### Similar Blog Posts + +![Repetitive Behaviors with Children Diagnosed with Autism - hero image](/assets/images/hero-repetetive-behaviors.webp) + +#### [Repetitive Behaviors with Children Diagnosed with Autism](repetitive-behavior) + +![Benefits of ABA Therapy for Children with Autism - hero image](/assets/images/hero-aba-therapy-benefits_800x.jpg) + +#### [The Benefits of ABA Therapy for Children with Autism](aba-therapy-benefits) + +![2024 new year reflection and planning for autism support and awareness - hero image](/assets/images/hero-new-year-goals-2024.webp) + +#### [New Year 2024: Holiday Tips for Autism Support & Awareness](new-year-2024-autism-holiday-tips) diff --git a/www/src/content/blog/en/executive-functioning-skills-autism.md b/www/src/content/blog/en/executive-functioning-skills-autism.md new file mode 100644 index 0000000..ea552d3 --- /dev/null +++ b/www/src/content/blog/en/executive-functioning-skills-autism.md @@ -0,0 +1,155 @@ +--- +title: "Executive Functioning Skills & Autism: Success Strategies Across Ages" +description: "Evidence-based executive functioning strategies for autism: visual supports for planning, emotion regulation, impulse control & problem solving." +slug: "executive-functioning-skills-autism" +canonical: "https://www.azinstitute4autism.com/library/executive-functioning-skills-autism" +lang: "en" +translationKey: "executive-functioning-skills-autism" +featuredImage: "/assets/images/hero-executive-functioning-skills-autism.webp" +date: "2025-05-01" +author: "rula-diab" +category: "Library" +tags: [] +draft: false +--- +# Executive Functioning Skills and Autism + +![Rula Diab, Clinical Director, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) + + Rula Diab, Clinical Director, M.Ed, BCBA, LBA + + 01 May, 2025 + +![hero image - executive functioning skills strategies for autistic children](/assets/images/hero-executive-functioning-skills-autism.webp) + +Executive functioning refers to a set of cognitive skills that are essential for problem-solving, and managing daily tasks. These skills help children plan, organize, regulate their emotions, and complete tasks effectively. + +For children with Autism Spectrum Disorder (ASD), executive functioning can be particularly challenging, impacting their ability to navigate social interactions, adapt to changes in routines, and manage emotions. Supporting the development of these skills is crucial for their success in home, school, and community settings. + +## Key Executive Functioning Skills for Children with Autism + +### 1. Emotional Regulation + +Definition: The ability to manage and respond to emotional experiences in a healthy, positive, and functional way. + +Challenges: Children with autism often experience heightened sensitivity to sensory stimuli and challenges in understanding and expressing their emotions, leading to meltdowns, anxiety, or difficulty transitioning between activities. + +Key Strategies: + +- Self-regulation techniques: Teaching coping strategies like deep breathing, taking a break, or using a fidget toy. + +- Visual supports: Using emotion charts, a coping wheel, or social stories to help children recognize and manage emotions. + +- Clear routines: Establishing predictable routines with visual planners (half-day, full-day, or weekly options) to reduce anxiety. + +### 2. Planning and Organization + +Definition: The ability to plan and prioritize tasks, break them down into smaller steps, and stay organized. + +Challenges: Children with autism may struggle to organize their day, manage multiple tasks, or prepare for upcoming events, affecting academic performance and daily living skills. + +Key Strategies: + +- Visual schedules: Clearly displaying the day’s events to reduce anxiety and confusion. + +- Task breakdown: Dividing larger tasks into smaller and manageable steps with visual checklists. + +- Timers: Helping children learn to manage their time for each task. + +### 3. Impulse Control + +Definition: The ability to pause, think, and control impulses before acting. + +Challenges: Children with autism may act impulsively, or engage in repetitive behaviors, often without understanding the consequences. + +Key Strategies: + +- Social scripts: Teaching expected social behaviors ("Excuse me, may I...") through scripting. + +- Communication: Teaching Children proper and functional ways to communicate their feelings verbally. + +- Behavior charts: Tracking positive behaviors and rewarding successful impulse control. + +- Pause practice: Encouraging children to "pause and think" before reacting. + +### 4. Critical Thinking and Problem Solving + +Definition: The ability to think critically, recognize cause and effect, and find solutions to problems. + +Challenges: Children with autism may have difficulty understanding consequences, adapting to new problems, or generating solutions in dynamic situations. + +Key Strategies: + +- Social stories: Modeling how to handle real-life scenarios (e.g., when a toy is broken or faced with specific challenges). + +- Role-playing: Practicing decision-making and understanding others’ perspectives through structured play and social scenarios. + +- Visual models: Teaching step-by-step strategies like "Stop, Think, Act" for problem-solving. + +## Executive Functioning Across Age Groups + +### Early Childhood (Ages 3–6) + +At this age, children are just beginning to build executive functioning skills. They may struggle with impulse control, simple instructions, and focus. + +Support Strategies: + +- Visual schedules for routines- Simple and short schedule will be less confusing and overwhelming + +- Simple cause-and-effect activities + +- Play-based learning to promote emotional regulation + +- Reinforcing turn-taking and waiting skills + +### Ages 7–11 + +As children mature, executive skills become more advanced, but they still require support with planning, emotional regulation, and social decision-making. + +Support Strategies: + +- Visual calendars/schedules for homework and tasks + +- Teaching self-regulation techniques, like deep breathing, engaging in calming activities, etc. + +- Structured problem-solving activities and scenarios ("What should I do when...?") + +- Role-playing games to practice social and emotional skills + +### Ages 12–18 + +Teens continue to refine executive functioning skills, but face increased complexity with academics, extracurriculars, and social expectations. + +Support Strategies: + +- Digital planners or apps to manage schoolwork and activities + +- Teaching how to break large projects into smaller steps + +- Mindfulness practices for emotional regulation + +- Real-world problem-solving practice (e.g., managing group projects or conflicts) + +Building executive functioning skills in children with autism is a gradual and supportive process. With targeted strategies, visual supports, and consistent routines, children can develop greater independence, flexibility, and emotional resilience. + + Previous Post + +###### [Guide to Teaching Self‑Advocacy in ABA](autism-self-advocacy-skills-aba) + + Next Post + +###### [First/Then Cards: Empowering Transitions for Autistic Children](first-then-cards-autism-transitions) + +### Similar Blog Posts + +![rapport strategies for effective aba therapy - hero image](/assets/images/hero-rapport-strategies.webp) + +#### [Learn the Secrets to Effective Rapport Building in ABA Therapy](autism-therapy-rapport-strategies) + +![2024 new year reflection and planning for autism support and awareness - hero image](/assets/images/hero-new-year-goals-2024.webp) + +#### [New Year 2024: Holiday Tips for Autism Support & Awareness](new-year-2024-autism-holiday-tips) + +![sensory processing challenges in aba therapy - hero image](/assets/images/hero-sensory-processing.webp) + +#### [Understanding Sensory Processing in the Context of ABA Therapy](sensory-processing) diff --git a/www/src/content/blog/en/first-then-cards-autism-transitions.md b/www/src/content/blog/en/first-then-cards-autism-transitions.md new file mode 100644 index 0000000..c548b19 --- /dev/null +++ b/www/src/content/blog/en/first-then-cards-autism-transitions.md @@ -0,0 +1,125 @@ +--- +title: "First/Then Cards: Empowering Transitions for Autistic Children" +description: "Learn how First/Then cards support smoother transitions and positive behaviors in autistic children. Discover practical tips and local Arizona resources." +slug: "first-then-cards-autism-transitions" +canonical: "https://www.azinstitute4autism.com/library/first-then-cards-autism-transitions" +lang: "en" +translationKey: "first-then-cards-autism-transitions" +featuredImage: "/assets/images/hero-first-then-cards.webp" +date: "2025-06-01" +author: "rula-diab" +category: "Library" +tags: [] +draft: false +--- +# First/Then Cards: Empowering Transitions for Autistic Children + +![Rula Diab, Clinical Director, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) + + Rula Diab, Clinical Director, M.Ed, BCBA, LBA + + 01 June, 2025 + +![first then cards help autistic children with transitions](/assets/images/hero-first-then-cards.webp) + +Transitions can be challenging for many children, especially those on the autism spectrum. First/Then cards are a simple yet effective tool that can help ease these transitions, promote positive behaviors, and support independence. + +## What Are First/Then Cards? + +First/Then cards are visual aids that outline a sequence of activities: + +- First : The task or activity that needs to be completed. + +- Then : A preferred activity or reward that follows. + +For example: + +- First : Buckle Seatbelt + +- Then : Watch iPad + +![first then cards](/assets/images/first-then-cards-seatbelt-ipad.png) + +This approach leverages the Premack Principle, which suggests that a more preferred activity can reinforce a less preferred one. By clearly displaying the sequence, children can better understand expectations and feel more in control of their routines. + +## Benefits of Using First/Then Cards + +- Reduces Anxiety : Visual schedules provide predictability, which can alleviate stress associated with transitions. + +- Enhances Communication : Especially beneficial for non-verbal or minimally verbal children, these cards offer a clear method of conveying expectations. + +- Promotes Independence : Children learn to follow routines with less prompting over time. + +- Supports Positive Behavior : By setting clear expectations and rewards, children are more likely to engage in desired behaviors. + +## Implementing First/Then Cards at Home + +- Identify Tasks and Rewards : Choose a task that needs to be completed and a motivating reward. + +- Create Visuals : Use pictures or symbols that your child understands. Resources like [LessonPix](https://lessonpix.com/articles/5/35/First%2BThen%2BBoards) offer customizable templates. + +- Introduce the Card : Present the card before starting the task, explaining the sequence. + +- Follow Through : Ensure the reward follows immediately after task completion to reinforce the behavior. + +## Practical Examples + + Setting + First Task + Then Reward + + Morning + Brush teeth + Watch cartoon + + Community + Grocery shop + Visit park + + School + Write name + Sensory bin play + + Clinic + Complete activity + Tablet time + +## Tips for Success + +- Consistency is Key : Use the cards regularly to establish routines. + +- Customize for Your Child : Tailor the visuals and rewards to your child's preferences and understanding. + +- Start Simple : Begin with easy tasks and gradually increase complexity as your child becomes more comfortable. + +## Local Arizona Resources + +Located in Scottsdale within Phoenix's East Valley, the Arizona Institute for Autism (AIA) offers support and resources for families in the Greater Phoenix and Tucson Metropolitan areas: + +- Free Consultations : Schedule a [free consultation](../client-consultation) to discuss personalized strategies for your child. + +- In-Home Therapy : Available in Tucson to provide support within your child's natural environment. + +- Upcoming AIA Gifted Shop : Soon, you'll be able to access a variety of visual support tools, including First/Then cards and PECS collections, through our online storefront. Stay tuned for updates. + + Previous Post + +###### [Executive Functioning Skills and Autism](executive-functioning-skills-autism) + + Next Post + +###### [How to Support ABA Therapy Over Summer Break](aba-therapy-summer-routine-tips) + +### Similar Blog Posts + +![sensory processing challenges in aba therapy - hero image](/assets/images/hero-sensory-processing.webp) + +#### [Understanding Sensory Processing in the Context of ABA Therapy](sensory-processing) + +![Learn About DTT and NET Methods for More Effective ABA Therapy - hero image](/assets/images/hero-learn-dtt-net-methods.webp) + +#### [Learn About DTT and NET Methods for More Effective ABA Therapy](aba-therapy-dtt-net-guide) + +![Benefits of Prompting & Parenting in ABA Therapy - hero image](/assets/images/hero-prompting-parenting-benefits.webp) + +#### [Benefits of Prompting & Parenting in ABA Therapy](aba-therapy-prompting-parenting-benefits) diff --git a/www/src/content/blog/en/heart-full-of-gratitude.md b/www/src/content/blog/en/heart-full-of-gratitude.md new file mode 100644 index 0000000..5ebfe76 --- /dev/null +++ b/www/src/content/blog/en/heart-full-of-gratitude.md @@ -0,0 +1,87 @@ +--- +title: "Heart Full of Gratitude" +description: "Clinic Director Rula Diab reflects back on her journey so far with Arizona Institute for Autism and all of the awesome people that make it great." +slug: "heart-full-of-gratitude" +canonical: "https://www.azinstitute4autism.com/library/heart-full-of-gratitude" +lang: "en" +translationKey: "heart-full-of-gratitude" +featuredImage: "/assets/images/giving-thanks-1.jpg" +date: "2025-11-24" +author: "rula-diab" +category: "Library" +tags: [] +draft: false +--- +# Heart Full of Gratitude + +![Rula Diab, Clinical Director, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) + + Rula Diab, Clinical Director, M.Ed, BCBA, LBA + + 24 November, 2025 + +![AZ Institute for Autism Clinical Director Rula Diab gives thanks](/assets/images/giving-thanks-1.jpg) + +## Reflections from My Journey with Arizona Institute for Autism As I look back on my journey with AIA, my heart is overflowing with gratitude, for our learners, their families, and the remarkable team who pour their hearts into every session, every plan, and every breakthrough moment and continue to bring our mission to life every single day. + +When I began this journey, my vision was to create more than a clinic. I wanted to build a space where every child is seen, understood, and valued for exactly who they are, a place where learning, compassion, and understanding come together to change lives. + +What I didn't realize at the time was just how profoundly our learners would shape me, both personally and professionally. + +Each child who walks through our doors has taught me something far greater than any textbook ever could: + +- Patience : real growth takes time, and every small victory deserves to be celebrated. + +- Perspective : through their eyes, I've learned to slow down and appreciate the world in new, beautiful ways. + +- Compassion : understanding others begins with genuine listening, not judgment. + +- Love : unconditional, pure, and freely given, the kind that fills a room without words. + +There is a deep, quiet joy in this work. Every day at AIA brings me a soothing internal satisfaction that words can't fully capture or describe. + +- It's the joy of watching a learner master their first mand (" I want more bubbles! ") after weeks of work. + +- It's hearing the once-silent room fill with spontaneous laughter during social play. + +- It's seeing a child who used to avoid social interaction proudly share materials with a peer during a group task. + +- It's watching a learner self-regulate, choosing a "break" card instead of melting down. + +- It's the pride in an RBT's eyes when their client generalizes a skill in a new setting for the first time. + +- It's the teamwork between BCBAs, technicians, and parents who celebrate the same small victory, knowing how much heart went into that single moment. + +Every day at AIA, I witness growth, resilience, and connection, not only from our learners but within our entire team. These moments remind me about development, dignity, and discovery. + +To our families: Thank you for trusting us with your child's growth and your heart. To our AIA team: Your dedication, creativity, and compassion make this journey possible. And to our learners: You teach us what true resilience and joy look like every single day. + +This journey fills me with endless gratitude and purpose. + +AIA isn't just a workplace, it's a growing community built on love, patience, and hope. + +Thank you, Rula Diab + +![clinical director rula diab signature](/assets/images/clinical-director-rula-diab.png) + + Previous Post + +###### [Why Emotional Regulation Should Be the Heart of Every ABA Program](emotional-regulation-aba) + + Next Post + +###### [Why My Child Can Talk but Still Struggles Socially](social-pragmatic-communication-autism) + +### Similar Blog Posts + +![Integrity, Empowerment and Excellence: Arizona Institute for Autism expands to new office - hero image](/assets/images/hero-integrity-empowerment-excellence_800x.jpg) + +#### [Integrity, Empowerment and Excellence: Arizona Institute for Autism expands to new office](new-aia-scottsdale-office) + +![Meet Rula Diab | Board Certified Behavior Analyst (BCBA) - hero image](/assets/images/hero-meet-rula-diab-shoutout-az_800x.jpg) + +#### [Meet Rula Diab | Board Certified Behavior Analyst (BCBA)](meet-rula-diab-bcba) + +![Benefits of ABA Therapy for Children with Autism - hero image](/assets/images/hero-aba-therapy-benefits_800x.jpg) + +#### [The Benefits of ABA Therapy for Children with Autism](aba-therapy-benefits) diff --git a/www/src/content/blog/en/individualized-aba-therapy.md b/www/src/content/blog/en/individualized-aba-therapy.md new file mode 100644 index 0000000..8efb8e8 --- /dev/null +++ b/www/src/content/blog/en/individualized-aba-therapy.md @@ -0,0 +1,63 @@ +--- +title: "Personalized ABA Therapy Plans | Schedule Your Free Consultation" +description: "Empower your child with individualized ABA therapy at Arizona Institute for Autism. Book a free consultation and kickstart personalized autism care today!" +slug: "individualized-aba-therapy" +canonical: "https://www.azinstitute4autism.com/library/individualized-aba-therapy" +lang: "en" +translationKey: "individualized-aba-therapy" +featuredImage: "/assets/images/hero-aba-individual-care-plans.webp" +date: "2024-10-01" +author: "rula-diab" +category: "Library" +tags: [] +draft: false +--- +# Individualized Care Plans in ABA Therapy + +![Rula Diab, Clinical Director, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) + + Rula Diab, Clinical Director, M.Ed, BCBA, LBA + + 01 October, 2024 + +![individualized aba therapy - hero image](/assets/images/hero-aba-individual-care-plans.webp) + +Applied Behavior Analysis (ABA) can profoundly impact children with autism, but the key to success lies in individualizing therapy to meet each child's unique developmental and sensory needs. Individualized care is not just a best practice; it's essential for meaningful progress and long-term success. + +## Understanding the Unique Needs of Each Child + +Children with autism have diverse behaviors, communication styles, and sensory preferences. Individualized care begins with assessing each child's strengths, challenges, and preferences, then tailoring therapy accordingly. While one child might struggle with verbal communication, another might have challenges with social interactions or may experience sensory processing differences. Some may be hypersensitive to certain stimuli, while others may seek out sensory input. These sensory differences can significantly impact a child's ability to engage with their environment, interact with others, and learn new skills. + +## The Role of Individualized ABA + +Individualized care begins with a thorough assessment of each child's abilities, challenges, and preferences and then tailoring therapy to address those needs. For example, a child who is hypersensitive to noise may struggle to focus in a noisy environment. For this child, an effective ABA program might involve creating a quiet, controlled setting for learning. On the other hand, a child who craves sensory input might benefit from incorporating movement and tactile activities into their sessions. We should keep in mind the importance of regular reassessment and adaptation of the program to ensure that maintenance of progress, and that it continues to meet the child's evolving needs. + +Individuality in care and collaboration between the child's team helps in fastening skills acquisition, increasing the child's engagement, while addressing the child's sensory needs. By focusing on these personalized goals, ABA becomes not just a therapeutic intervention, but a pathway to a better independent quality of life. + +## Collaboration with Families and Clinicians + +To successfully individualize ABA therapy, collaboration is the key. ABA therapists, parents, educators, and other clinicians must work together as a team. Parents provide invaluable insights into their child's preferences, triggers, and daily routines, while clinicians bring their expertise in behavior analysis and intervention strategies. + +Individualized ABA is not just about addressing behaviors; it's about understanding the whole child and guiding them along their path in the way that best suits their needs. This teamwork ensures therapy is aligned with the child's unique journey, fostering skill acquisition, engagement, and overall well-being. + + Previous Post + +###### [Master Proactive & Reactive ABA Techniques – Schedule a Consultation](proactive-reactive-aba-strategies-guide) + + Next Post + +###### [Discover Self‑Care Hacks for Parents of Children with Autism](autism-family-self-care-tips) + +### Similar Blog Posts + +![meet rula diab of aia - hero image](/assets/images/hero-community-highlight-meet-rula-diab_800x.jpg) + +#### [Community Highlights: Meet Rula Diab of Arizona Institute for Autism](community-highlight-meet-rula-diab) + +![autism self-advocacy skills through aba - hero image](/assets/images/hero-teach-self-advocacy.webp) + +#### [Guide to Teaching Self‑Advocacy in ABA](autism-self-advocacy-skills-aba) + +![Integrity, Empowerment and Excellence: Arizona Institute for Autism expands to new office - hero image](/assets/images/hero-integrity-empowerment-excellence_800x.jpg) + +#### [Integrity, Empowerment and Excellence: Arizona Institute for Autism expands to new office](new-aia-scottsdale-office) diff --git a/www/src/content/blog/en/integrated-aba-model-announcement.md b/www/src/content/blog/en/integrated-aba-model-announcement.md new file mode 100644 index 0000000..f1588f5 --- /dev/null +++ b/www/src/content/blog/en/integrated-aba-model-announcement.md @@ -0,0 +1,59 @@ +--- +title: "Arizona Institute for Autism Adopts an Integrated ABA Model" +description: "Arizona Institute for Autism has transitioned to an integrated Applied Behavior Analysis model, enhancing comprehensive care for children with autism." +slug: "integrated-aba-model-announcement" +canonical: "https://www.azinstitute4autism.com/library/integrated-aba-model-announcement" +lang: "en" +translationKey: "integrated-aba-model-announcement" +featuredImage: "/assets/images/hero-integrated-aba-model-announcement_800x.jpg" +date: "2023-08-02" +author: "rula-diab" +category: "Library" +tags: [] +draft: false +--- +# Arizona Institute for Autism Adopts an Integrated ABA Model + +![Rula Diab, Clinical Director, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) + + Rula Diab, Clinical Director, M.Ed, BCBA, LBA + + 02 August, 2023 + +![integrated aba model announcement - hero image](/assets/images/hero-integrated-aba-model-announcement_800x.jpg) + +The Arizona Institute for Autism is thrilled to announce its transformation into an Integrated ABA Model, an approach that brings together clinicians and educators to provide exceptional intervention, learning experience, and individualized support for learners with autism. This model incorporates evidence-based interventions, ensuring a comprehensive approach tailored to each child's abilities, interests, and learning style. + +By doing so, we aim to create a more effective and engaging treatment and learning process, addressing the diverse needs of each of our learners. Research has consistently demonstrated that effective ABA therapy can profoundly and positively impact children with autism, leading to long-lasting improvements in various areas of development. The Integrated ABA Model comprehensive nature enhances the potential for long-lasting improvements in various areas of development. + +The comprehensive nature of the Integrated ABA Model places significant emphasis on fostering essential life skills, communication abilities, social interactions, and academic progress. At the Arizona Institute for Autism, our primary focus is on empowering individuals with autism by teaching them functional skills that promote independence in their daily life. We firmly believe that enhancing their quality of life, increasing opportunities for success, and fostering inclusion within the community are essential aspects of their development. + +Our Integrated ABA Model centers around Applied Behavior Analysis (ABA) strategies as a strong foundation for behavior management and modifying challenging behaviors. Positive reinforcement and other behavior management techniques are core elements of our interventions, allowing us to effectively reduce maladaptive behaviors and promote positive ones. Additionally, one of the primary goals of the Integrated ABA Model is to facilitate the generalization of learned skills across various settings and situations. + +Our approach focuses on teaching children to apply the skills they acquire during therapy and within different settings to real-life scenarios, thereby enhancing their overall functioning and independence. We also place great emphasis on family involvement throughout the intervention process. Parents and caregivers play an active role and receive training and support to implement ABA techniques at home and during daily routines. This collaborative approach ensures consistency in skill development and reinforces the child's progress. To facilitate an integrated treatment plan for the child, the ABA Integrated model promotes collaboration among professionals such as ABA clinicians and special educators. This interdisciplinary approach enriches the quality of care and outcomes for the child. + +At the Arizona Institute for Autism, we are committed to empowering children with autism, maximizing their potential for growth and development, and paving the way for a brighter future filled with endless possibilities. + +For more information on services offered by AIA or to book your free consultation, visit [https://www.azinstitute4autism.com](../index), call us at [(480) 687-7099](tel:+14806877099), or email [info@azinstitute4autism.com](mailto:info@azinstitute4autism.com). If you are looking for more tips, check out monthly [blog posts](../library) from AIA's clinical director, Rula Diab! + + Previous Post + +###### [Enhancing Generalization for Broader Impact in Autism](enhancing-generalization-skills) + + Next Post + +###### [Repetitive Behaviors with Children Diagnosed with Autism](repetitive-behavior) + +### Similar Blog Posts + +![Repetitive Behaviors with Children Diagnosed with Autism - hero image](/assets/images/hero-repetetive-behaviors.webp) + +#### [Repetitive Behaviors with Children Diagnosed with Autism](repetitive-behavior) + +![enhancing generalization skills in children with autism - hero image](/assets/images/hero-enhancing-generalization-skills_800x.jpg) + +#### [Enhancing Generalization for Broader Impact in Autism](enhancing-generalization-skills) + +![asd sensory-friendly pancake recipe - hero image](/assets/images/hero-asd-sensory-friendly-recipe-pancakes_800x.jpg) + +#### [ASD Sensory-Friendly Recipes: Pancakes](asd-sensory-friendly-recipes-pancakes) diff --git a/www/src/content/blog/en/managing-aggressive-behavior-outbursts.md b/www/src/content/blog/en/managing-aggressive-behavior-outbursts.md new file mode 100644 index 0000000..a21d74c --- /dev/null +++ b/www/src/content/blog/en/managing-aggressive-behavior-outbursts.md @@ -0,0 +1,67 @@ +--- +title: "Managing Aggressive Behavior Outbursts and Proper Communication with Your Child During those Moments" +description: "Learn strategies to manage aggressive behaviors in children with autism by promoting functional communication and providing positive reinforcement." +slug: "managing-aggressive-behavior-outbursts" +canonical: "https://www.azinstitute4autism.com/library/managing-aggressive-behavior-outbursts" +lang: "en" +translationKey: "managing-aggressive-behavior-outbursts" +featuredImage: "/assets/images/hero-managing-aggressive-behavior-outbursts_800x.jpg" +date: "2022-10-30" +author: "rula-diab" +category: "Library" +tags: [] +draft: false +--- +# Managing Aggressive Behavior Outbursts and Proper Communication with Your Child During those Moments + +![Rula Diab, Clinical Director, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) + + Rula Diab, Clinical Director, M.Ed, BCBA, LBA + + 30 October, 2022 + +![Managing Aggressive Behavior Outbursts and Proper Communication with Your Child During those Moments - hero image](/assets/images/hero-managing-aggressive-behavior-outbursts_800x.jpg) + +Children with Autism may have difficulty communicating their needs and wants. Struggling to express their needs and escaping an unpreferred situation can all result in a child feeling frustrated. Not having control over their environment can often lead to aggressive and unengaging behaviors. + +Communicating with our kiddos when they are engaging in challenging behaviors can be difficult. It is important to understand that behaviors are just an expression of distress. Understanding the function of your child's aggressive behavior can direct you to determine the proper ways to support your kiddos to communicate those needs appropriately and functionally. + +Parents and caregivers may respond to signs of aggression quickly; responding to your child's challenging behaviors can be reinforcing for such behaviors as a child sees that his needs are being met (e.g., getting negative attention from his parents, or being able to escape an undesirable demand placed on him). + +The best strategy for parents to manage aggressive behavior outburst are the following: + +- Avoid reacting to aggressive behaviors and make sure to maintain a natural demeanor. Putting a behavior on extinction by not reacting to the behavior can help to reduce the probability of it happening again in the future. + +- Calmly redirect your child to engage in a different activity (unless a child is engaging in aggression to escape a non-preferred demand). + +- Model the expected functional and socially appropriate behavior that helps your child to get their needs met. + +- Make sure to reinforce and provide positive feedback for your child's positive behavior. This can help motivate a child to engage in non-aggressive behavior and appropriately communicate their needs in the future. + +- It is important to avoid talking about aggressive behavior during those moments of stressful times to help your child de-escalate (your child is not receptive at those moments and not ready to learn). + +- Use less verbal interaction and use more visuals to help to de-escalate the challenging behavior. + +For more information on how to manage aggressive behavior and proper communication, connect with us by sending your messages and questions to hello@azinsitute4autism.com or contact us directly at www.azinstitute4autism.com/contactus. + + Previous Post + +###### [Play and Leisure Skills for Children with Autism](play-leisure-skills) + + Next Post + +###### [November AIA Update](november-2022-aia-update) + +### Similar Blog Posts + +![Critical Thinking Skills for Children with Autism - hero image](/assets/images/hero-critical-thinking-skills_800x.jpg) + +#### [Critical Thinking Skills for Children with Autism](critical-thinking-skills) + +![proactive reactive aba strategies guide - hero image](/assets/images/hero-proactive-reactive-strategies.webp) + +#### [Master Proactive & Reactive ABA Techniques – Schedule a Consultation](proactive-reactive-aba-strategies-guide) + +![New Year Goals for Our Children with Autism - hero image](/assets/images/hero-new-year-goals-2023_800x.jpg) + +#### [New Year Goals for Our Children with Autism](new-year-goals-2023) diff --git a/www/src/content/blog/en/meet-rula-diab-bcba.md b/www/src/content/blog/en/meet-rula-diab-bcba.md new file mode 100644 index 0000000..68d565f --- /dev/null +++ b/www/src/content/blog/en/meet-rula-diab-bcba.md @@ -0,0 +1,65 @@ +--- +title: "Meet Rula Diab | Board Certified Behavior Analyst (BCBA)" +description: "Find out how Rula Diab, a compassionate, certified behavior analyst, makes a difference in Arizona. Read to empower your path for positive outcomes now!" +slug: "meet-rula-diab-bcba" +canonical: "https://www.azinstitute4autism.com/library/meet-rula-diab-bcba" +lang: "en" +translationKey: "meet-rula-diab-bcba" +featuredImage: "/assets/images/hero-meet-rula-diab-shoutout-az_800x.jpg" +date: "2023-10-24" +author: "rula-diab" +category: "Library" +tags: [] +draft: false +--- +# Meet Rula Diab | Board Certified Behavior Analyst (BCBA) + +![Rula Diab, Clinical Director, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) + + Rula Diab, Clinical Director, M.Ed, BCBA, LBA + + 24 October, 2023 + +![Meet Rula Diab | Board Certified Behavior Analyst (BCBA) - hero image](/assets/images/hero-meet-rula-diab-shoutout-az_800x.jpg) + +Check out this article from Shoutout Arizona about AIA's Clinical Director, Rula Diab. Read about Rula's vision and learn more about the Arizona Institute for Autism. You can find the [original article](https://shoutoutarizona.com/meet-rula-diab-board-certified-behavior-analyst-bcba/) on the Shoutout Arizona website. + +We had the good fortune of connecting with Rula Diab and we’ve shared our conversation below. + +## Hi Rula, what was your thought process behind starting your own business? + +As a clinician who has always been passionate about working with children with special needs, I have dreamed of creating an environment that would enhance our children’s quality of lifestyle and enable them to achieve their highest potential. Starting my own business was a natural step for me to take, as I knew that there was a need in the community that I could address. My vision was to provide children with autism with the services and resources they need in a safe, loving, and caring environment, and I started by offering ABA therapy. I knew that starting a business would be a complex and challenging process, but I was committed and determined to make my dream a reality. It required a combination of hard work, learning, commitment, inspiration, passion, persistence, laser focus, and creativity to put all my thoughts into action at the right time. Despite the challenges, I persevered and continued to work tirelessly to bring my vision to life. Through my experience working with children with special needs, I have discovered a part of myself that I never knew existed. Connecting with my learners has transformed me and my team into a version better than our previous selves. Witnessing the progress that our learners make every day, seeing their confidence grow and their parents’ hopes for their future become a reality, brings me a sense of accomplishment that is truly indescribable. + +In conclusion, starting a business is not easy, but the satisfaction and fulfillment that come from creating a positive and healthy environment for our learners make it all worthwhile. I am grateful for the opportunity to pursue my passion and make a difference in the lives of children with special needs and their families. My work will continue until I put my whole vision in action. + +## What should our readers know about your business? + +At Arizona Institute for Autism, we are committed to individualized care. We are focused on building a team of skilled and passionate clinicians who prioritize serving vulnerable populations, combined with our emphasis on staff training and development, ensures that we provide the highest quality care to our learners. Recruiting and retaining qualified staff is a challenge in this field, but we have been able to overcome this obstacle by investing in our staff and creating a positive and supportive work environment that values diversity. By prioritizing cultural competence, we ensure that every child receives care that is respectful of their unique individuality and empowers them to reach their highest potential. Our core values at AIA are Integrity, empowerment and excellence. At AIA, we are committed to excellence in everything we do, going above and beyond to provide the best results for our community partners, customers, kiddos, and everyone in the AIA family. We hold ourselves to the highest ethical standards when communicating with our families and learners, ensuring that they receive the care they need and deserve. + +Overall, our dedication to providing high-quality, culturally competent care helps us stand out from other businesses in the behavioral health field. We believe that by focusing on the needs of our learners and investing in our employees, we can build a successful business that makes a positive impact on our community. + +## If you had a friend visiting you, what are some of the local spots you’d want to take them around to? + +Scottsdale is a beautiful city with many interesting places to explore. Downtown Scottsdale/Old Town is a great destination to visit due to its rich history, art galleries, boutiques, and restaurants. As someone who loves nature and flowers, I will recommend visiting the Desert Botanical Garden, which showcases a wide range of native plant species and provides stunning views of the desert landscapes at sunset. If we have time for a day trip, I will suggest visiting Sedona, a picturesque town famous for its red rock formations and spiritual energy. If the weather permits, hiking in the beautiful Red Rock State Park would be a great way to experience the natural beauty of the area. + + Previous Post + +###### [The Benefits of ABA Therapy for Children with Autism](aba-therapy-benefits) + + Next Post + +###### [Integrity, Empowerment and Excellence: Arizona Institute for Autism expands to new office](new-aia-scottsdale-office) + +### Similar Blog Posts + +![meet rula diab of aia - hero image](/assets/images/hero-community-highlight-meet-rula-diab_800x.jpg) + +#### [Community Highlights: Meet Rula Diab of Arizona Institute for Autism](community-highlight-meet-rula-diab) + +![Repetitive Behaviors with Children Diagnosed with Autism - hero image](/assets/images/hero-repetetive-behaviors.webp) + +#### [Repetitive Behaviors with Children Diagnosed with Autism](repetitive-behavior) + +![autism self-advocacy skills through aba - hero image](/assets/images/hero-teach-self-advocacy.webp) + +#### [Guide to Teaching Self‑Advocacy in ABA](autism-self-advocacy-skills-aba) diff --git a/www/src/content/blog/en/new-aia-scottsdale-office.md b/www/src/content/blog/en/new-aia-scottsdale-office.md new file mode 100644 index 0000000..a7887cf --- /dev/null +++ b/www/src/content/blog/en/new-aia-scottsdale-office.md @@ -0,0 +1,91 @@ +--- +title: "Integrity, Empowerment and Excellence: Arizona Institute for Autism expands to new office" +description: "Discover how Arizona Institute for Autism" +slug: "new-aia-scottsdale-office" +canonical: "https://www.azinstitute4autism.com/library/new-aia-scottsdale-office" +lang: "en" +translationKey: "new-aia-scottsdale-office" +featuredImage: "/assets/images/hero-integrity-empowerment-excellence_800x.jpg" +date: "2023-10-24" +author: "rula-diab" +category: "Library" +tags: [] +draft: false +--- +# Integrity, Empowerment and Excellence: Arizona Institute for Autism expands to new office + +![Rula Diab, Clinical Director, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) + + Rula Diab, Clinical Director, M.Ed, BCBA, LBA + + 24 October, 2023 + +![Integrity, Empowerment and Excellence: Arizona Institute for Autism expands to new office - hero image](/assets/images/hero-integrity-empowerment-excellence_800x.jpg) + +Check out this article about our new clinic location. Our Clinical Director Rula Diab met with Scottsdale Airpark to share the details of the expansion. You can find [the original article](https://www.scottsdale.org/airpark/features/integrity-empowerment-and-excellence-arizona-institute-for-autism-expands-to-new-office/article_79c31a18-2f35-11ee-9459-6f29f5a08420) on the Scottsdale Airpark News website. + +Five years ago, Arizona Institute for Autism founder and Clinical Director Rula Diab envisioned creating a haven for individuals with autism to learn, develop positive coping mechanisms and gain independence. + +“I was dreaming of having a space that is a safe place and playful, supportive place for kids with special needs,” she says. + +Diab, who boasts a master's in education and a bachelor's in children's behavior analysis, is bringing her dream to fruition. She welcomed learners into her new 8,000-square-foot learning facility located off Raintree Road, east of Loop 101, in Scottsdale July 29. + +“Our vision is big, and we are constantly moving with our learners to where they need us, so this facility gives us the ability to be there for them and their needs,” Diab says. + +## What's inside + +With 8,000 square feet to utilize, Diab took advantage of the space to create special rooms, such as a Montessori-style classroom and a game room. + +“As part of our growth and transition, which requires us to have and to be able to support our kids, we need a bigger space that allows us to have different rooms like a sensory room, nap room, an ABA room and a recreational room, and all of those rooms will be tending to modern learners,” Diab says. + +## Starting out small + +Before Diab found a large educational space, she started the Arizona Institute for Autism (AIA) with a mission of “improving special education and strengthening communities throughout Arizona.” + +The institute does so by providing applied behavior analysis (ABA) therapies to its learners, while also working with special education (SPED) teachers and school leaders to address the unique challenges these learners face while enhancing the classroom environment for students. + +Diab began operating out of an intimate office space in North Scottsdale off Via Linda near Via De Ventura, eventually moving northward to another cozy space further up Loop 101 west of the freeway off Raintree Road. + +After spending roughly two years in her office space, Diab knew there was more that she could do to enrich the lives of the learners she and her staff aided. + +## Onto something bigger + +Diab and her staff wanted to find a space where they could offer classes, a variety of rooms with different styles of therapy and an escape from the typical school setting. + +She found a piece of prime real estate located less than a mile up the street from its former office on Raintree Road. + +“As part of our growth and commitment to provide more comprehensive services, we are now transitioning into more of an ABA-integrated model where we will be providing ABA therapy in addition to academic therapy for our learners,” Diab says. “We decided to move to a bigger and larger space to be able to provide our programs that support our guests to reach their highest potential.” + +## Graduating from AIA + +Diab understands from her experience the stigmas and misconceptions surrounding an autism diagnosis. That is why she and her team are committed to ensuring that each learner learns new positive coping skills and begins to display signs of independence by the time they move on from the AIA. + +“From my experience, (our learners) are the sweetest kids and every day they really make our hearts bigger,” Diab says. “They are extremely smart and they are emotionally smart, but they just need a little bit of support.” + +But nothing makes her and her staff happier than seeing a lasting impact made on a child. + +“Having everyone on the team — whether it's a family clinician or our caregivers — on the same page to help to support them so that at the end we can see that they are able to be independent in their life, it's very sweet. + +“I think we are very lucky to work with our learners at AIA.” + + Previous Post + +###### [Meet Rula Diab | Board Certified Behavior Analyst (BCBA)](meet-rula-diab-bcba) + + Next Post + +###### [Community Highlights: Meet Rula Diab of Arizona Institute for Autism](community-highlight-meet-rula-diab) + +### Similar Blog Posts + +![autism self-advocacy skills through aba - hero image](/assets/images/hero-teach-self-advocacy.webp) + +#### [Guide to Teaching Self‑Advocacy in ABA](autism-self-advocacy-skills-aba) + +![individualized aba therapy - hero image](/assets/images/hero-aba-individual-care-plans.webp) + +#### [Individualized Care Plans in ABA Therapy](individualized-aba-therapy) + +![Benefits of ABA Therapy for Children with Autism - hero image](/assets/images/hero-aba-therapy-benefits_800x.jpg) + +#### [The Benefits of ABA Therapy for Children with Autism](aba-therapy-benefits) diff --git a/www/src/content/blog/en/new-year-2024-autism-holiday-tips.md b/www/src/content/blog/en/new-year-2024-autism-holiday-tips.md new file mode 100644 index 0000000..1715325 --- /dev/null +++ b/www/src/content/blog/en/new-year-2024-autism-holiday-tips.md @@ -0,0 +1,59 @@ +--- +title: "New Year 2024: Holiday Tips for Autism Support & Awareness" +description: "Learn simple, effective strategies to help your autistic child thrive in 2024. Reflect on their progress and set new goals for growth in the New Year." +slug: "new-year-2024-autism-holiday-tips" +canonical: "https://www.azinstitute4autism.com/library/new-year-2024-autism-holiday-tips" +lang: "en" +translationKey: "new-year-2024-autism-holiday-tips" +featuredImage: "/assets/images/hero-new-year-goals-2024.webp" +date: "2023-12-27" +author: "rula-diab" +category: "Library" +tags: [] +draft: false +--- +# New Year 2024: Holiday Tips for Autism Support & Awareness + +![Rula Diab, Clinical Director, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) + + Rula Diab, Clinical Director, M.Ed, BCBA, LBA + + 27 December, 2023 + +![2024 new year reflection and planning for autism support and awareness - hero image](/assets/images/hero-new-year-goals-2024.webp) + +The start of a new year is often associated with feelings of joy and optimism. It is also a time for parents of children with autism to reflect on their child's progress and set goals for the future. Here are some important factors to keep in mind for New Year 2024 when it comes to Applied Behavioral Analysis (ABA) therapy and holiday time: + +- Take the time to review and celebrate the progress your child has made in the past year. Discuss any areas that need further development with your licensed Behavioral Analyst (BCBA) to ensure continued growth. + +- It is crucial to maintain your child's involvement in therapy during the holiday season. A consistent therapy schedule helps create a stable and supportive environment for them. + +- The holidays often disrupt regular routines, which can be challenging for children receiving ABA therapy. To minimize any negative effects on behavior, make a plan to maintain consistency during this time. Be considerate of sensory sensitivities that may arise during sensory-rich holiday experiences. Additionally, prepare for the transition from school routines to holiday breaks using age-appropriate visual schedules to ensure a smooth adjustment. + +- Holiday gatherings provide valuable opportunities to practice and reinforce the skills learned during ABA therapy sessions. Encourage your child to generalize these skills in a social setting. + +The New Year symbolizes growth and development, and that applies to children with autism as well. Take this time to reflect, plan, and prioritize the well-being of both the child receiving therapy and their caregivers. + +For more information about ABA therapy services offered by AIA or to book your free consultation, visit our Arizona Institute for Autism website at [www.azinstitute4autism.com](../index), call [(480) 687-7099](tel:+14806877099), or email [info@azinstitute4autism.com](mailto:info@azinstitute4autism.com). If you are looking for more applied behavioral analysis and ASD diagnosis and treatment tips, check out more [blog posts](../library) from AIA’s clinical director, Rula Diab! + + Previous Post + +###### [Guide: Simple ABA Techniques for Toilet Training Children with Autism](aba-toilet-training-child-autism) + + Next Post + +###### [Understanding Sensory Processing in the Context of ABA Therapy](sensory-processing) + +### Similar Blog Posts + +![Benefits of ABA Therapy for Children with Autism - hero image](/assets/images/hero-aba-therapy-benefits_800x.jpg) + +#### [The Benefits of ABA Therapy for Children with Autism](aba-therapy-benefits) + +![potty train children with autism using simple aba techniques - hero image](/assets/images/hero-aba-toilet-training-child-autism.webp) + +#### [Guide: Simple ABA Techniques for Toilet Training Children with Autism](aba-toilet-training-child-autism) + +![enhancing generalization skills in children with autism - hero image](/assets/images/hero-enhancing-generalization-skills_800x.jpg) + +#### [Enhancing Generalization for Broader Impact in Autism](enhancing-generalization-skills) diff --git a/www/src/content/blog/en/new-year-goals-2023.md b/www/src/content/blog/en/new-year-goals-2023.md new file mode 100644 index 0000000..5592f0f --- /dev/null +++ b/www/src/content/blog/en/new-year-goals-2023.md @@ -0,0 +1,51 @@ +--- +title: "New Year Goals for Our Children with Autism" +description: "The New Year offers an opportunity to reflect, plan, and set goals for children with autism, promoting healthy growth and development to last a lifetime." +slug: "new-year-goals-2023" +canonical: "https://www.azinstitute4autism.com/library/new-year-goals-2023" +lang: "en" +translationKey: "new-year-goals-2023" +featuredImage: "/assets/images/hero-new-year-goals-2023_800x.jpg" +date: "2023-01-01" +author: "rula-diab" +category: "Library" +tags: [] +draft: false +--- +# New Year Goals for Our Children with Autism + +![Rula Diab, Clinical Director, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) + + Rula Diab, Clinical Director, M.Ed, BCBA, LBA + + 01 January, 2023 + +![New Year Goals for Our Children with Autism - hero image](/assets/images/hero-new-year-goals-2023_800x.jpg) + +The New Year can be challenging for children with Autism and may lead to distress. Different factors affect the ability of children with autism to cope during those times. The inability to deal with changes and disruption in routines and cope with unclear expectations can be stressful. Additionally, sensory overload including loud music, bright lighting, strong smells, etc. may cause children to feel uncomfortable. + +To decrease stress as much as possible during the holiday time, it is important to provide your child with visual Support (i.e., visual schedules) for the purpose of preparing your child to manage changes in schedule and minimize disruption and triggers. Additionally, social stories can be great visual support to clarify activities and events during the holidays along with using a reinforcer system (i.e., Token System) to handle behaviors before it happens. + +For more information on how to manage aggressive behavior and proper communication, connect with us by sending your messages and questions to [hello@azinsitute4autism.com](mailto:hello@azinsitute4autism.com) or contact us directly from our contact page. + + Previous Post + +###### [Critical Thinking Skills for Children with Autism](critical-thinking-skills) + + Next Post + +###### [AIA’s World Autism Community Day of Celebration](aia-world-autism-community-day-celebration) + +### Similar Blog Posts + +![Master Behavior Management: Discover the Four Functions of Behavior - hero image](/assets/images/hero-behavior-functions-management.webp) + +#### [Master Behavior Management: Discover the Four Functions of Behavior](behavior-management-functions-guide) + +![Ultimate Guide to Behavior Modification Techniques & Reinforcement Theory - hero image](/assets/images/hero-behavior-modification-techniques-reinforcement-theory_800x.jpg) + +#### [The Ultimate Guide to Behavior Modification Techniques & Reinforcement Theory](behavior-modification-techniques-reinforcement-theory) + +![rapport strategies for effective aba therapy - hero image](/assets/images/hero-rapport-strategies.webp) + +#### [Learn the Secrets to Effective Rapport Building in ABA Therapy](autism-therapy-rapport-strategies) diff --git a/www/src/content/blog/en/november-2022-aia-update.md b/www/src/content/blog/en/november-2022-aia-update.md new file mode 100644 index 0000000..3db0b69 --- /dev/null +++ b/www/src/content/blog/en/november-2022-aia-update.md @@ -0,0 +1,57 @@ +--- +title: "November AIA Update" +description: "Nov 2022: Arizona Institute for Autism expresses gratitude to families for their support and commitment, highlighting the community" +slug: "november-2022-aia-update" +canonical: "https://www.azinstitute4autism.com/library/november-2022-aia-update" +lang: "en" +translationKey: "november-2022-aia-update" +featuredImage: "/assets/images/hero-november-2022-aia-update_800x.jpg" +date: "2022-10-31" +author: "rula-diab" +category: "Library" +tags: [] +draft: false +--- +# November AIA Update + +![Rula Diab, Clinical Director, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) + + Rula Diab, Clinical Director, M.Ed, BCBA, LBA + + 31 October, 2022 + +![November AIA Update - hero image](/assets/images/hero-november-2022-aia-update_800x.jpg) + +Hello AIA Families, + +Happy November! This month, we're giving thanks to all of you for your ongoing support and commitment to the Arizona Institute for Autism! With expansion, growth, and a new location on the horizon, we truly have a lot to be thankful for. As we embark on this exciting endeavor, I'm honored to be surrounded by all of you and our mission of improving special education and strengthening communities. + +AIA Give Thanks to the Latest AIA Achievements + +- AIA iGive Amazon Wishlist - We've collected over $1K in gifts for our Amazon Wishlist campaign. Thank you for your generous contributions and support. We truly appreciate it. If you know a family and or friend who would like to give back to the Arizona Institute for Autism, join our Wishlist HERE. + +- AIA will have a Parent Advisory Committee for the 2023-2024 year. Applications are now open and available HERE. + +Thank you for your continued collaboration as we continue to grow, serve and support our Learners in the pursuit of their individual potential. + + Previous Post + +###### [Managing Aggressive Behavior Outbursts and Proper Communication with Your Child During those Moments](managing-aggressive-behavior-outbursts) + + Next Post + +###### [Critical Thinking Skills for Children with Autism](critical-thinking-skills) + +### Similar Blog Posts + +![reduce behavior management - hero image](/assets/images/hero-reduce-behavior-management_800x.jpg) + +#### [4 Ways on How to Reduce Behavior Management](reduce-behavior-management) + +![Benefits of ABA Therapy for Children with Autism - hero image](/assets/images/hero-aba-therapy-benefits_800x.jpg) + +#### [The Benefits of ABA Therapy for Children with Autism](aba-therapy-benefits) + +![teaching academic, social, communications, and independence skills](/assets/images/hero-aba-preschool-az_800x.jpg) + +#### [Now Enrolling: AIA Preparatory Academy for Children Ages 2–6](aba-school-readiness-arizona) diff --git a/www/src/content/blog/en/parents-guide-to-autism-and-aba.md b/www/src/content/blog/en/parents-guide-to-autism-and-aba.md new file mode 100644 index 0000000..4b74c82 --- /dev/null +++ b/www/src/content/blog/en/parents-guide-to-autism-and-aba.md @@ -0,0 +1,223 @@ +--- +title: "How to Help Your Autistic Child: A Parent & Caregiver Guide" +description: "Learn practical autism and ABA-informed strategies parents and caregivers can use to support communication, routines, behavior, and regulation." +slug: "parents-guide-to-autism-and-aba" +canonical: "https://www.azinstitute4autism.com/library/parents-guide-to-autism-and-aba" +lang: "en" +translationKey: "parents-guide-to-autism-and-aba" +featuredImage: "/assets/images/family-guide-to-autism-aba-at-home_hero.png" +date: "2026-04-02" +author: "rula-diab" +category: "Library" +tags: [] +draft: false +--- +# Autism Guide for Parents and Caregivers + +![Rula Diab, Clinical Director, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) + + Rula Diab, Clinical Director, M.Ed, BCBA, LBA + + 02 April, 2026 + +![Parent and autistic child using visual supports, structured play, and calm routines together](/assets/images/family-guide-to-autism-aba-at-home_hero.png) + +Every child is different. Some need more support with communication. Others struggle most with transitions, sensory input, or emotional regulation. Autism is a neurodevelopmental condition that affects how a person communicates, learns, behaves, and experiences the world, and signs may become noticeable early in development. + +If you are trying to figure out how to help your autistic child, start by understanding what helps them feel safe, understood, and able to succeed in daily life. + +This guide combines autism basics, practical parent support, and ABA-informed strategies you can use at home. It is written to help you take the next right step, not to do everything at once. + +Reassurance: Start small. One better routine, one clearer communication support, and one calmer response can make a real difference. + +Helping your autistic child starts with understanding how they communicate, regulate, and learn. This parent and caregiver guide explains what autism can look like in daily life, when to seek support, and how to use practical, ABA-informed strategies at home to build communication, confidence, and independence. + +## What autism can look like in daily life + +Autism can show up in communication, play, routines, sensory processing, flexibility, and social connection. One child may have few spoken words. Another may talk a lot but still struggle with conversation, peer interaction, or understanding social cues. CDC and NHS resources both reflect that autistic children may have social-communication differences, repetitive behaviors, anxiety, sensory challenges, and day-to-day support needs. + +What matters most is the pattern over time. If daily life regularly feels harder because of communication breakdowns, big reactions to change, or difficulty participating in routines, it is reasonable to look more closely. + + What you may notice + What can help now + + Difficulty expressing needs + Use short phrases, visuals, and functional words like “help” or “break” + + Hard transitions or resistance to change + Use countdowns, First-Then language, and visual schedules + + Sensory overload or sensory seeking + Adjust the environment, add movement breaks, and create a calm space + + Social or play differences + Practice short turn-taking routines and model simple language + + Strong interests or repetitive patterns + Use interests as motivators and bridges to new skills + +If your child has words but still struggles socially, AIA’s [Why My Child Can Talk but Still Struggles Socially](social-pragmatic-communication-autism) is a strong internal companion because it explains pragmatic language and nonverbal cues in parent-friendly language. + +## When to seek support + +Many parents wait because they do not want to overreact. Still, if you are seeing repeated concerns with communication, social interaction, play, sensory regulation, or developmental milestones, it makes sense to ask questions early. CDC notes that some children show signs in the first year, while others show them later. + +A practical first step is to talk with your child’s pediatrician. Ask for a developmental screening, share examples from home, and request a referral if needed. Screening is not the same as diagnosis. Screening flags possible concerns. Diagnosis is a formal evaluation by a qualified professional. + +AIA’s [Autism Evaluation in Arizona: A Parent’s Step-by-Step Guide](autism-evaluation-diagnosis-arizona-parent-guide) explains that distinction clearly and outlines common diagnostic professionals in Arizona. + +Quick tip: Keep a simple note for two weeks. Write down what happened before a hard moment, what your child did, and what helped. Patterns are often more useful than isolated memories. + +## What ABA is, and how it can help at home + +Applied Behavior Analysis, or ABA, is a behavioral approach that looks at what happens before and after behavior and uses structured teaching to build useful skills. CDC describes ABA as a notable behavioral treatment for autism that aims to improve a variety of skills. + +At its best, ABA is individualized, practical, and respectful. It can support communication, daily living, emotional regulation, play, transitions, and independence. It should not be one-size-fits-all, and it should focus on meaningful skills your child can use in real life. + +![calm sensory regulation corner](/assets/images/sensory-regulation-corner.png) + +AIA’s [Starting ABA Therapy Step-by-Step Guide](../aba-therapy-intake-process) and [Positive Reinforcement in ABA Therapy to Encourage Skill Development](positive-reinforcement-techniques) are useful next reads if you want a clearer picture of how home support, parent consultation, and skill-building fit together. + + ABA principle + Everyday meaning + + Positive reinforcement + Rewarding success so a skill is more likely to happen again + + Breaking skills into steps + Teaching one manageable piece at a time + + Prompting and fading + Giving support, then gradually reducing it + + Replacement skills + Teaching what to do instead of only correcting behavior + + Generalization + Using the same skill with different people and in different places + +The most realistic way for parents to use ABA at home is not to become the therapist. It is to learn a few dependable tools and use them consistently in daily routines. + +## How to support communication at home + +Communication is more than speech. Many autistic children communicate through gestures, movement, pictures, devices, scripts, or behavior before they can communicate consistently with words. NHS guidance supports keeping language simple, allowing extra processing time, and using pictures or symbols when helpful. + +A helpful question is, “Did my child understand me, and did they have a workable way to respond?” When adults move too fast, use too many words, or ask too many questions, communication often breaks down before behavior does. + +Try these core supports: + +- Use short, direct phrases. + +- Pair words with visuals or gestures. + +- Offer simple choices. + +- Pause after speaking. + +- Teach and honor words or signals such as “help,” “break,” “more,” and “all done.” + +If your child has strong vocabulary but weak conversation or peer skills, that may be a pragmatic language issue rather than a language issue. AIA’s [Why My Child Can Talk but Still Struggles Socially](social-pragmatic-communication-autism) can help you spot that difference. + +## How to support routines, transitions, and behavior + +Many hard moments happen around the same points in the day, getting dressed, ending screen time, leaving the house, starting homework, or bedtime. Competitor pages across NHS, HelpGuide, Thrive, and ABA-provider content repeatedly emphasize structure, routine, and visual support because they reduce uncertainty and make expectations clearer. + +Instead of waiting to react, look at what happens before the behavior. Is the direction unclear? Is the task too long? Is the transition too sudden? Is your child already tired or overloaded? Proactive changes often work better than corrective reactions. + +A few home strategies go a long way: + +- Use a visual schedule or first, next, last routine. + +- Give warnings before transitions. + +- Use First-Then language. + +- Teach replacement responses, such as asking for help or a break. + +- Reinforce the behavior you want to see right away. + +![visual-schedule-and-timer-2](/assets/images/visual-schedule-and-timer-2.png) + +AIA’s [First/Then Cards: Empowering Transitions for Autistic Children](first-then-cards-autism-transitions) is a strong fit if transitions are a major trigger, and [Why Emotional Regulation Should Be the Heart of Every ABA Program](emotional-regulation-aba) connects regulation with communication and change. + +Pitfall to avoid: Do not save all of your praise for the end. Catch the smallest successful step and name it right away. + +## How to support sensory needs and regulation + +Sensory differences are common in autism. Some children are overwhelmed by sound, light, textures, or busy spaces. Others seek movement, pressure, chewing, or visual stimulation. The National Autistic Society notes that autistic people may be more or less sensitive to sensory experiences and may seek out, avoid, or become overwhelmed by sensory input. + +Sensory support works best when it is individualized. Not every hard moment is sensory, but a child who feels overloaded will usually have a much harder time communicating, transitioning, or staying regulated. + +Try building your plan around three questions: What overwhelms my child? What helps them recover? What can I change before the hard moment starts? AIA’s [Executive Functioning Skills & Autism](executive-functioning-skills-autism) is a helpful internal link for routines, visual supports, and coping tools. + +## Building independence in everyday routines + +Independence grows in ordinary moments, not only in therapy sessions. Shoes. Hand washing. Cleaning up. Waiting. Asking for help. These routines are where children practice communication, regulation, flexibility, and confidence. + +This is why breaking tasks into small steps matters. Thrive and LeafWing both emphasize step-by-step teaching, prompting, and fading support so children can do more on their own over time. + +Start with one routine that already happens every day. Teach when everyone is calm. Use the least help your child needs to succeed. Then praise specifically. AIA’s [Guide to Teaching Self-Advocacy in ABA](autism-self-advocacy-skills-aba) and [Enhancing Generalization for Broader Impact in Autism](enhancing-generalization-skills) are strong follow-up reads if your goal is independence across home, school, and community. + +## Working with therapists, school, and family + +Children usually make faster progress when the adults around them use similar language, expectations, and supports. That does not mean everyone has to parent the same way. It means your child should not have to relearn the rules in every room. + +A short caregiver plan can help. Agree on one or two goals, the words adults will use, common triggers, and what helps calm or redirect. AIA’s [Starting ABA Therapy Step-by-Step Guide](../aba-therapy-intake-process) and [Helpful Autism Diagnosis & Therapy FAQs](../faqs) both reinforce the value of parent consultation and regular progress review. + +## Take care of yourself, too + +A strong autism parent guide should say this plainly: your regulation matters too. + +Self-care does not have to be elaborate. It may mean lowering one unrealistic expectation, asking for help with one hard transition, or building a few quiet minutes into your day. AIA’s [Discover Self-Care Hacks for Parents of Children with Autism](autism-family-self-care-tips) keeps this practical and realistic. + + Frequently Asked Questions + +## Parent Guide to Autism and ABA + +### What should I do if I think my child may be autistic? + +Talk with your child’s pediatrician, ask for a developmental screening, and share specific examples from home. If you want a clearer overview of screening versus diagnosis, AIA’s [Autism Evaluation in Arizona: A Parent’s Step-by-Step Guide](autism-evaluation-diagnosis-arizona-parent-guide) is a helpful next step. + +### Does every autistic child need ABA therapy? + +Not every child needs the same mix of supports. ABA can be very helpful when it is individualized, functional, and collaborative, especially for communication, routines, independence, and replacement skills. + +### How can I help my child communicate if they are minimally verbal? + +Use simple language, visuals or gestures, extra wait time, and functional communication such as “help,” “more,” “break,” and “all done.” Meaningful communication does not have to start with full sentences. + +### What should I do during a meltdown? + +Focus on safety, reduce demands, and lower sensory input when possible. Save teaching and problem-solving for later, after your child is calm. + +### How can I make transitions easier at home? + +Use clear warnings, visual schedules, First-Then language, and predictable routines. Many families do well with one very simple transition support they can use every day, such as a timer or first-then card. + +### How can family members stay consistent without becoming rigid? + +Agree on a few shared basics, such as the same short prompts, replacement words, and transition routine. You do not need identical responses from every adult. You need predictable ones. + +## Final thoughts + +Supporting a child with autism is not about finding one perfect strategy. It is about learning how your child communicates, what helps them regulate, and how to build success into ordinary moments. Start with what matters most in your family right now, then build from there. + +If you want help thinking through assessment, therapy options, or next steps, AIA’s [Client Consultation Form](../client-consultation) is the clearest next step. + + Previous Post + +###### [Building Communication & Social Skills in Autistic Children: A Practical Guide for Families](communication-social-skills-autistic-children-guide) + +### Similar Blog Posts + +![teaching academic, social, communications, and independence skills](/assets/images/hero-aba-preschool-az_800x.jpg) + +#### [Now Enrolling: AIA Preparatory Academy for Children Ages 2–6](aba-school-readiness-arizona) + +![child taking emotional regulation timeout in shopping cart - hero](/assets/images/child-shopping-cart-tired-cranky.jpg) + +#### [Why Emotional Regulation Should Be the Heart of Every ABA Program](emotional-regulation-aba) + +![Parent and child meeting with a clinician in a calm, play-based autism evaluation setting](/assets/images/autism-evaluation-expectations_hero.png) + +#### [What to Expect at Your Child’s First Autism Evaluation](autism-evaluation-what-to-expect) diff --git a/www/src/content/blog/en/play-leisure-skills.md b/www/src/content/blog/en/play-leisure-skills.md new file mode 100644 index 0000000..223265b --- /dev/null +++ b/www/src/content/blog/en/play-leisure-skills.md @@ -0,0 +1,225 @@ +--- +title: "Autism Play: Helping Autistic Children Build Play and Leisure Skills" +description: "Learn how autistic children play, why play skills matter, and how parents can support functional, sensory, pretend, and social play." +slug: "play-leisure-skills" +canonical: "https://www.azinstitute4autism.com/library/play-leisure-skills" +lang: "en" +translationKey: "play-leisure-skills" +featuredImage: "/assets/images/hero-play-leisure-skills-children-autism_800x.jpg" +date: "2022-09-26" +author: "rula-diab" +category: "Library" +tags: [] +draft: false +--- +# Autism Play: Helping Autistic Children Build Play and Leisure Skills + +![Rula Diab, Clinical Director, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) + + Rula Diab, Clinical Director, M.Ed, BCBA, LBA + + 26 September, 2022 + +![autism play and leisure skills for children with autism](/assets/images/hero-play-leisure-skills-children-autism_800x.jpg) + +Play is one of the most important ways children learn. For autistic children, play may look different, but it is still meaningful, valuable, and full of opportunities for growth. Autism play can support communication, imitation, motor skills, problem-solving, flexibility, emotional regulation, and social connection when it is approached with patience and respect for the child's interests. + +For many parents, play feels natural until they notice their child interacting with toys or people in unexpected ways. A child may line up cars, spin the wheels of a toy truck, carry one favorite object from room to room, repeat the same play routine, avoid pretend play, or prefer playing near other children rather than directly with them. These patterns are not “bad play.” They are clues about how your child explores the world, manages sensory input, communicates interest, and feels safe. + +The goal is not to make autistic play look exactly like neurotypical play. The goal is to help your child enjoy play, expand their skills, and build more ways to connect with people and activities that matter to them. + +For children with autism, play may include sensory exploration, repeated actions, lining up toys, parallel play, pretend play, or highly focused interests. The goal is not to force play to look typical, but to help each child expand communication, flexibility, confidence, social interaction, problem-solving, and connection through enjoyable activities. + +## Why Play Skills Matter for Autistic Children + +Play is more than entertainment. It gives children a low-pressure way to practice skills they will use throughout daily life. Through play, children can learn how to explore new materials, use their hands and bodies, copy actions, solve small problems, wait, take turns, request help, share attention, and express preferences. + +For autistic children, these skills may need to be taught more intentionally. Some children do not automatically learn by watching other children play. Others may have strong interests, sensory sensitivities, difficulty with transitions, or anxiety when play becomes unpredictable. This is why structured, supportive play can be so helpful. + +Play can support: + +- Communication skills , such as requesting, labeling, gesturing, using AAC, or responding to another person. + +- Imitation skills , such as copying sounds, actions, facial expressions, or play routines. + +- Fine and gross motor skills , such as stacking blocks, turning pages, jumping, climbing, or drawing. + +- Cognitive skills , such as problem-solving, matching, sorting, sequencing, and flexible thinking. + +- Social skills , such as turn-taking, sharing space, responding to peers, and joining group activities. + +- Emotional regulation , because enjoyable play can help children feel calm, confident, and connected. + +When play is reinforcing, children are more likely to stay engaged and try new things. That is why the best place to begin is almost always with what your child already enjoys. + +## How Autistic Children May Play Differently + +Autistic children often show strong preferences in play. A child may enjoy sensory play, repetitive actions, visual patterns, water play, building, sorting, music, movement, letters, numbers, animals, vehicles, or very specific characters. Some children prefer quiet independent play. Others want interaction but may not know how to start or sustain it. + +Common autism play patterns can include: + +- Playing with one part of a toy, such as wheels, buttons, doors, or textures. + +- Repeating the same action many times, such as dropping, spinning, stacking, or lining up objects. + +- Preferring predictable routines or scripts during play. + +- Becoming upset if another person changes the play pattern. + +- Showing limited interest in pretend play or role-play. + +- Enjoying parallel play, which means playing near others without direct interaction. + +- Seeking or avoiding certain sensory experiences, such as sound, touch, light, or movement. + +These patterns can tell parents and therapists what a child finds interesting, calming, or difficult. For example, a child who loves spinning wheels may be interested in movement, cause and effect, visual patterns, or vehicles. Instead of removing that interest, an adult can use it as a bridge. You might roll the car back and forth, add a ramp, take turns pushing it, model “go” and “stop,” or introduce a second vehicle for simple pretend play. + +[![autistic-play-appearance-infographic](/assets/images/autistic-play-appearance-infographic.png)](/assets/images/autistic-play-appearance-infographic.png) + + × + +![Play appearance infographic (expanded view)](/assets/images/play-appearance-infographic.png) + +## Types of Play to Build Over Time + +Children usually develop play skills in stages, but autistic children may move through these stages at their own pace. Some children may be strong in one type of play and need more support in another. + +### Exploratory and Sensory Play + +Exploratory play happens when children investigate how things feel, sound, look, smell, or move. Sensory play might include water, sand, play dough, textured toys, bubbles, music, lights, or movement games. This type of play helps children learn about their environment and can also support regulation. + +For an autistic child, sensory play should be comfortable, not overwhelming. If your child avoids sticky textures, start with dry materials. If your child seeks movement, try safe jumping, swinging, animal walks, or obstacle courses. Watch your child's body language and adjust before play becomes stressful. + +### Cause-and-Effect Play + +Cause-and-effect play teaches children that their actions can make something happen. Examples include pressing a button to make music, pushing a car down a ramp, knocking down blocks, or popping bubbles. This type of play is especially useful for building attention, requesting, imitation, and early turn-taking. + +A parent might say, “Ready, set...” and pause before blowing bubbles, giving the child a chance to look, gesture, vocalize, or use a communication device to request “go.” + +### Functional Play + +Functional play means using toys in ways that match their common purpose, such as rolling a car, stacking blocks, putting puzzle pieces into a puzzle, brushing a doll's hair, or stirring with a toy spoon. Some autistic children need direct modeling to learn these actions. + +Start with one simple action. Model it, help if needed, and then celebrate the attempt. Once the child can do the action, add a small expansion. A car can go down a ramp, stop at a garage, pick up a toy person, or race another car. + +### Constructive Play + +Constructive play includes building, drawing, assembling, and creating. Blocks, magnetic tiles, puzzles, train tracks, art materials, and simple craft activities can help children practice planning, problem-solving, fine motor coordination, and persistence. + +For children who prefer order or repetition, constructive play can be a comfortable starting point. You can slowly add flexibility by changing one small part of the design, offering two choices, or taking turns adding pieces. + +### Pretend Play + +Pretend play, also called imaginative or symbolic play, involves using imagination during play. Examples include feeding a stuffed animal, pretending a block is a phone, acting like a superhero, or making a toy animal go to sleep. + +Some autistic children enjoy pretend play naturally. Others may need support because pretend play requires flexible thinking, imitation, language, sequencing, and understanding social roles. Begin with familiar routines from daily life. Pretend to eat, sleep, wash hands, drive, cook, or visit the doctor. Keep it simple and repeatable before adding new ideas. + +### Social and Peer Play + +Social play can include sharing space, taking turns, playing a simple game, building together, chasing, singing, or pretending with another child. Many autistic children benefit from practicing social play with adults before being expected to play with peers. Adults are usually more predictable, patient, and able to gently guide the interaction. + +Once a child is comfortable, peer play can be introduced gradually. A short, structured play activity with clear roles is often easier than open-ended free play. For example, a simple board game, building a train track together, making cookies, or taking turns with a favorite toy may work better than “go play together.” + +## How Parents Can Support Autism Play at Home + +The most effective play support begins with connection. Before trying to teach a new skill, watch what your child already does. Notice what they choose, what they avoid, what makes them smile, what helps them calm, and what keeps them engaged. + +Then, join without taking over. + +Sit near your child, get on their level, and copy what they are doing when appropriate. If your child taps a block, tap another block. If they roll a car, roll a car beside them. This shows your child that you are interested in their world. It may also make them more likely to notice you, copy you, or allow you to add something new. + +Once your child is comfortable, expand play by one small step. If they line up animals, you might add a fence. If they spin wheels, you might roll the car once and then let them spin again. If they stack blocks, you might add a figure on top and say, “Up!” Small expansions work better than sudden changes. + +Helpful strategies include: + +- Follow your child's interests before introducing your own idea. + +- Use simple language, gestures, [visual supports, or AAC](aac-visual-supports-autism) to support communication. + +- Offer choices between two toys or activities. + +- Practice turn-taking with very short turns. + +- Use visual schedules for play routines or play dates. + +- Keep new play activities brief and positive. + +- Reinforce effort, not perfection. + +- Stop or adjust if your child becomes overwhelmed. + +Play should not feel like a test. It should feel safe, motivating, and enjoyable. + +[![how to support autistic play infographic](/assets/images/how-to-support-playtime-sm.png)](/assets/images/how-to-support-playtime.png) + + × + +![support play infographic (expanded view)](/assets/images/how-to-support-playtime.png) + +## Supporting Parallel Play and Shared Attention + +Many autistic children enjoy parallel play. This means they may play next to another person without much talking or direct interaction. Parallel play can be an important step toward social play because the child is sharing space, tolerating another person nearby, and sometimes noticing what the other person is doing. + +Parents can build from parallel play by gently creating moments of shared attention. Shared attention happens when a child and another person focus on the same object or activity. You can encourage this by making something interesting happen, pausing, and waiting. For example, you might roll a ball, pause with a playful expression, and wait to see whether your child looks, gestures, vocalizes, or reaches. + +The key is to invite interaction, not demand it. Some children show attention through proximity, body orientation, smiles, movement, or returning to the activity. Eye contact is not the only sign that a child is engaged. + +## When Play Concerns May Signal a Need for Support + +Every child develops differently, and many children have unique play preferences. Still, play can sometimes reveal developmental concerns. Parents may want to seek guidance if their child rarely engages with others, does not respond to simple social games, does not imitate actions, does not use gestures to share interest, has very limited functional play, becomes extremely distressed by small play changes, or is not developing pretend play as expected. + +If you have concerns, you do not have to wait. A [developmental screening or autism evaluation](autism-evaluation-diagnosis-arizona-parent-guide) can help clarify your child's needs and connect your family with support. + +## How AIA Helps Children Build Play and Leisure Skills + +At the Arizona Institute for Autism, play is viewed as a powerful part of learning. For young children, [play-based ABA therapy](aba-therapy-benefits) can help build communication, imitation, flexibility, functional play, social readiness, emotional regulation, and independence in ways that are individualized to each child. + +AIA's team works with families to understand what motivates each child and how to expand those interests into meaningful learning opportunities. For some children, that may begin with sensory play or cause-and-effect toys. For others, it may include pretend play, peer interaction, visual supports, or structured games that teach turn-taking and communication. + +For families looking ahead to preschool, kindergarten, or classroom routines, AIA also supports [early school readiness](aba-school-readiness-arizona) by helping children strengthen communication, independence, group participation, and learning behaviors in a supportive environment. + +Autism play does not need to look one specific way to be valuable. When children feel safe, understood, and motivated, play can become a bridge to connection, confidence, and lifelong learning. + + Frequently Asked Questions + +## About Play & Leisure + +### Why doesn't my autistic child play with toys the "right" way? + +Children with autism often experience the world through their senses first. Lining up cars, spinning wheels, or focusing on one part of a toy can be deeply satisfying and regulating. It's not "wrong" — it's a starting point. Gently model new ways to use the toy without taking it away. + +### At what age should pretend play emerge? + +In neurotypical development, pretend play typically appears between 18 and 24 months. Autistic children may develop it later, in fragments, or with explicit teaching. Lack of pretend play by age 2 is one indicator pediatricians watch for, but late-blooming pretend play is still possible with support. + +### Is repetitive play harmful? + +Not inherently. Repetitive play can be calming and meaningful. The concern is when it crowds out everything else and limits learning. The goal isn't to eliminate it but to expand your child's repertoire so they have more ways to engage. + +### Should I force my child to play with peers? + +No. Forced peer play often backfires by increasing anxiety. Build interactive play skills with you first, then introduce one peer at a time in short, structured sessions with clear activities. + +If you are in Arizona and have questions about your child's play, communication, or development, AIA can help you take the next step. [Schedule a free consultation](../client-consultation) to learn more about evaluation and therapy options for your child. + + Previous Post + +###### [4 Ways on How to Reduce Behavior Management](reduce-behavior-management) + + Next Post + +###### [Managing Aggressive Behavior Outbursts and Proper Communication with Your Child During those Moments](managing-aggressive-behavior-outbursts) + +### Similar Blog Posts + +![Three children engaging happily in parallel play on a colorful rug.](/assets/images/parallel-players-hero.png) + +#### [Supporting Friendships and Social Play for Children with Autism](autism-friendships-social-play-support) + +![A parent and an autistic child smiling while using a picture communication board during playtime.](/assets/images/communication-skills-autistic-children-hero_img.png) + +#### [Building Communication & Social Skills in Autistic Children: A Practical Guide for Families](communication-social-skills-autistic-children-guide) + +![New Year Goals for Our Children with Autism - hero image](/assets/images/hero-new-year-goals-2023_800x.jpg) + +#### [New Year Goals for Our Children with Autism](new-year-goals-2023) diff --git a/www/src/content/blog/en/positive-reinforcement-techniques.md b/www/src/content/blog/en/positive-reinforcement-techniques.md new file mode 100644 index 0000000..d1f43c3 --- /dev/null +++ b/www/src/content/blog/en/positive-reinforcement-techniques.md @@ -0,0 +1,215 @@ +--- +title: "Positive Reinforcement in ABA Therapy to Encourage Skill Development" +description: "Learn effective positive reinforcement techniques to encourage desired behavior in children. Discover tips, visual tools, & best practices for parents." +slug: "positive-reinforcement-techniques" +canonical: "https://www.azinstitute4autism.com/library/positive-reinforcement-techniques" +lang: "en" +translationKey: "positive-reinforcement-techniques" +featuredImage: "/assets/images/hero-positive-reinforcement-techniques.webp" +date: "2025-08-01" +author: "rula-diab" +category: "Library" +tags: [] +draft: false +--- +# Positive Reinforcement in ABA Therapy to Encourage Skill Development + +![Rula Diab, Clinical Director, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) + + Rula Diab, Clinical Director, M.Ed, BCBA, LBA + + 01 August, 2025 + +![aba therapy positive reinforcement](/assets/images/hero-positive-reinforcement-techniques.webp) + +Positive reinforcement is one of the most powerful tools in Applied Behavior Analysis (ABA), and it's especially effective for supporting children with autism. Rather than focusing on mistakes, positive reinforcement celebrates each step in the right direction—building motivation, confidence, and stronger family bonds. In this article, you'll learn: + +- What positive reinforcement means in ABA + +- The key benefits for children and caregivers + +- A step‑by‑step guide for parents + +- Common pitfalls and how to avoid them + +- Tips for keeping your child engaged + +Whether you're navigating daily routines, teaching new skills, or simply looking to reduce challenging behaviors, these evidence‑based strategies will empower you and your child. + +## What Is Positive Reinforcement? + +Positive reinforcement occurs when a desirable consequence immediately follows a behavior, increasing the likelihood that the behavior will occur again. In ABA, this might mean giving praise, a preferred toy, extra screen time, or a special snack right after your child completes a task. + +⚙️ Did you know? ABA research shows that immediate reinforcement strengthens the behavior–reward connection more than delayed rewards. + +## Why Positive Reinforcement Matters in ABA + +- Builds Motivation & Confidence. Children learn faster when they know they'll be rewarded for effort. + +- Strengthens Relationships. Positive interactions foster trust between you and your child. + +- Reduces Challenging Behaviors. As desired behaviors increase, undesirable behaviors naturally decrease. + +- Enhances Emotional Regulation. Rewards help children associate positive feelings with self‑control. + +⚙️ Tip: Reinforcement is more effective when it feels genuine. Use specific praise like "I love how you put your shoes away!" instead of a generic "Good job!" + +## Key Benefits for Children with Autism + + Benefit + How It Helps + + Cooperation & Routine‑Following + Children predict outcomes and feel safe + + Self‑Esteem + Success experiences boost confidence + + Communication & Social Skills + Encourages interaction with caregivers + + Transition Management + Reduces anxiety around changes + + Skill Acquisition + Breaks complex tasks into manageable steps + +## Step‑by‑Step Guide for Parents + +### 1. Define the Target Behavior Clearly + +- Vague: "Be good." + +- Clear: "Put your toys in the bin when you're done playing." + +### 2. Choose the Right Reinforcer + +Observe what your child truly values: + +- Stickers or token boards + +- A few minutes of preferred screen time + +- A special snack or a fun activity + +⚙️ Pro Tip: Rotate through a menu of 3–5 reinforcers to prevent boredom and satiation. + +### 3. Deliver Reinforcement Immediately + +- Reinforce within 1–3 seconds of the behavior. + +- Use enthusiastic verbal praise ("Fantastic job brushing your teeth!") plus the chosen reward. + +### 4. Use Visual Supports + +- Behavior Charts: Track progress with stickers. + +- First/Then Boards: "First finish your homework, then play outside." + +- Example Table: First… Then… Put on your shoes Choose a bedtime book Finish 5 math problems 5 minutes of tablet time + +### 5. Reinforce Effort, Not Just Outcomes + +- Celebrate attempts and small improvements, even if not perfect. + +- "I saw how hard you tried to share your toy. That was awesome!" + +## Common Pitfalls & How to Avoid Them + + Pitfall + Solution + + Delayed Rewards + Keep timers handy to mark the moment + + Reinforcing Undesired Behavior + Only deliver the reward after the correct action + + Using Bribes + Plan reinforcers in advance, don't wait for tantrums + + Overusing One Reinforcer + Rotate through a "reinforcer menu" + + Vague Instructions + Be specific and observable + + Inconsistent Follow‑Through + Set reminders or charts for yourself + +## Reinforcement vs. Bribery + +Reinforcement is planned , consistent , and follows desired behaviors. Bribery is reactive , offered to stop misbehavior. + + Reinforcement + Bribery + + "You completed your homework, so now it's play time!" + "Stop shouting and I'll give you candy." + + Increases motivation over time + Often reduces trust and long‑term gains + +## When to Troubleshoot Your Approach + +If you're not seeing progress: + +- Check Comprehension: Does your child understand what you're asking? + +- Adjust Reinforcers: Try something more motivating. + +- Shape Behaviors: Reinforce smaller approximations toward the goal. + +- Review the Environment: Reduce distractions, fatigue, or unclear cues. + +- Seek Professional Support: Consult your AIA therapist for tailored strategies. + +## Advanced Strategies: Schedules & Fading + +- Fixed‑Ratio Schedule (FR): Reward after a set number of responses (e.g., every 3rd time). + +- Variable‑Ratio Schedule (VR): Reward unpredictably (e.g., slot‑machine style) to maintain behavior. + +- Fading Reinforcers: Gradually increase the effort required or reduce magnitude to build independence. + +Quick Chart: + + Schedule Type + Example + When to Use + + FR2 + Reward every 2 correct steps + Building initial skills + + VR3 + Reward on average every 3 + Maintaining established behaviors + +## Foster Motivation and Independence: Next Steps + +Positive reinforcement in ABA is more than a technique; it's a way to build lasting motivation, emotional regulation, and independence in children with autism. By defining clear behaviors, choosing meaningful rewards, and delivering reinforcement promptly and consistently, you'll create a supportive learning environment at home and beyond. + +For personalized guidance and ABA support, reach out to the Arizona Institute for Autism and schedule your free consultation today. Let's celebrate every success together! + + Previous Post + +###### [How to Support ABA Therapy Over Summer Break](aba-therapy-summer-routine-tips) + + Next Post + +###### [Now Enrolling: AIA Preparatory Academy for Children Ages 2–6](aba-school-readiness-arizona) + +### Similar Blog Posts + +![Benefits of Prompting & Parenting in ABA Therapy - hero image](/assets/images/hero-prompting-parenting-benefits.webp) + +#### [Benefits of Prompting & Parenting in ABA Therapy](aba-therapy-prompting-parenting-benefits) + +![Learn About DTT and NET Methods for More Effective ABA Therapy - hero image](/assets/images/hero-learn-dtt-net-methods.webp) + +#### [Learn About DTT and NET Methods for More Effective ABA Therapy](aba-therapy-dtt-net-guide) + +![rapport strategies for effective aba therapy - hero image](/assets/images/hero-rapport-strategies.webp) + +#### [Learn the Secrets to Effective Rapport Building in ABA Therapy](autism-therapy-rapport-strategies) diff --git a/www/src/content/blog/en/proactive-reactive-aba-strategies-guide.md b/www/src/content/blog/en/proactive-reactive-aba-strategies-guide.md new file mode 100644 index 0000000..a364017 --- /dev/null +++ b/www/src/content/blog/en/proactive-reactive-aba-strategies-guide.md @@ -0,0 +1,85 @@ +--- +title: "Master Proactive & Reactive ABA Techniques – Schedule a Consultation" +description: "Learn proactive and reactive ABA strategies to cut problem behaviors and boost success. Read now and schedule a consult with Arizona Institute for Autism." +slug: "proactive-reactive-aba-strategies-guide" +canonical: "https://www.azinstitute4autism.com/library/proactive-reactive-aba-strategies-guide" +lang: "en" +translationKey: "proactive-reactive-aba-strategies-guide" +featuredImage: "/assets/images/hero-proactive-reactive-strategies.webp" +date: "2024-09-01" +author: "rula-diab" +category: "Library" +tags: [] +draft: false +--- +# Master Proactive & Reactive ABA Techniques – Schedule a Consultation + +![Rula Diab, Clinical Director, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) + + Rula Diab, Clinical Director, M.Ed, BCBA, LBA + + 01 September, 2024 + +![proactive reactive aba strategies guide - hero image](/assets/images/hero-proactive-reactive-strategies.webp) + +Proactive and Reactive strategies are essential tools in Applied Behavior Analysis (ABA) to support individuals with autism. These strategies aim to create a positive and supportive environment that promotes desirable behaviors and reduces the likelihood of challenging behaviors. In this blog, we'll explore both proactive and reactive strategies, highlighting their importance in effective ABA therapy. + +## What Are Proactive Strategies? + +[Proactive strategies](https://pubmed.ncbi.nlm.nih.gov/34997368/) are designed to prevent challenging behaviors before they occur by addressing potential triggers, meeting the individual’s needs in positive ways, and teaching targeted skills. These strategies help create an environment that encourages positive interactions and reduces stressors that may lead to problem behaviors. + +By focusing on prevention and skill acquisition, proactive strategies empower individuals to succeed and minimize the likelihood of problematic behaviors. Here are some common proactive strategies used in ABA: + +- Environmental Modifications: Adjusting the physical environment to reduce distractions or potential triggers for challenging behavior. + +- Establishing a consistent and predictable routine to help individuals understand what to expect, thereby reducing uncertainty. + +- Antecedent Interventions: Modifying difficult or challenging tasks to make them more manageable. This may involve breaking tasks into smaller steps, providing additional support, or adjusting the difficulty level to match the individual’s abilities. + +- Offering choices gives individuals a sense of control, which can reduce resistance. For example, allowing a child to choose between two tasks or select the order in which activities are completed can empower them and reduce challenging behaviors. + +- Teaching Replacement Behaviors: Educating individuals to implement alternative, more appropriate behaviors helps replace challenging ones. + +- Teaching functional communication allows individuals to express their needs and desires appropriately. For example, if a child is screaming for attention, they can be taught to use words, [PECS system](https://www.iidc.indiana.edu/irca/articles/what-is-the-picture-exchange-communication-system-or-pecs), or a communication device to ask for help or communicate their needs. + +- Reinforcing Replacement Behaviors: Reinforcement is key to maintaining new behaviors. By consistently providing positive reinforcement, the likelihood of the new behavior replacing the old one increases over time. + +- Identifying and Addressing Triggers: Identifying triggers that influence behavior and addressing these factors can prevent problematic behaviors from occurring. + +- Setting Clear Expectations: Providing visual support to reinforce expected behaviors and provide structure. Tools such as visual schedules, timers, and clear transitions between activities can be very effective. + +- Regular Positive Reinforcement: Consistently providing positive reinforcement for desirable behaviors encourages their continuation and reduces the likelihood of problem behaviors. + +## What Are Reactive Strategies? + +[Reactive strategies](https://www.ncbi.nlm.nih.gov/books/NBK355364/) are employed when a problem behavior occurs. These strategies aim to address and modify challenging behaviors effectively and support the individual during those moments. Some common reactive strategies include: + +- Crisis Management: Applying de-escalation techniques to calm individuals and manage aggressive or disruptive behavior in the moment. + +- Behavior Intervention Plans (BIPs): Following tailored BIPs, that are developed by the behavior analyst, which are based on the specific needs, strengths, and challenges of the individual. These plans provide clear guidelines on how to respond to challenging behaviors effectively. + +Both [proactive and reactive strategies](https://www.ncbi.nlm.nih.gov/pmc/articles/PMC7473487/) play crucial roles in ABA therapy. Proactive strategies help create an environment where positive behaviors are encouraged and challenging behaviors are less likely to occur, while reactive strategies provide a framework for addressing behaviors when they do arise. + +At the Arizona Institute for Autism, we are committed to implementing these strategies effectively to support the individuals we work with. + + Previous Post + +###### [Ease Back-to-School Time | ABA Antecedent & Consequence Interventions](aba-school-readiness-guide) + + Next Post + +###### [Individualized Care Plans in ABA Therapy](individualized-aba-therapy) + +### Similar Blog Posts + +![teaching academic, social, communications, and independence skills](/assets/images/hero-aba-preschool-az_800x.jpg) + +#### [Now Enrolling: AIA Preparatory Academy for Children Ages 2–6](aba-school-readiness-arizona) + +![Benefits of Prompting & Parenting in ABA Therapy - hero image](/assets/images/hero-prompting-parenting-benefits.webp) + +#### [Benefits of Prompting & Parenting in ABA Therapy](aba-therapy-prompting-parenting-benefits) + +![hero image - executive functioning skills strategies for autistic children](/assets/images/hero-executive-functioning-skills-autism.webp) + +#### [Executive Functioning Skills and Autism](executive-functioning-skills-autism) diff --git a/www/src/content/blog/en/reduce-behavior-management.md b/www/src/content/blog/en/reduce-behavior-management.md new file mode 100644 index 0000000..8c75e0c --- /dev/null +++ b/www/src/content/blog/en/reduce-behavior-management.md @@ -0,0 +1,53 @@ +--- +title: "4 Ways on How to Reduce Behavior Management" +description: "Children may show challenging behavior patterns due to frustration or sensory overload. Strategic support of communications skills can help prevent issues." +slug: "reduce-behavior-management" +canonical: "https://www.azinstitute4autism.com/library/reduce-behavior-management" +lang: "en" +translationKey: "reduce-behavior-management" +featuredImage: "/assets/images/hero-reduce-behavior-management_800x.jpg" +date: "2022-08-26" +author: "rula-diab" +category: "Library" +tags: [] +draft: false +--- +# 4 Ways on How to Reduce Behavior Management + +![Rula Diab, Clinical Director, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) + + Rula Diab, Clinical Director, M.Ed, BCBA, LBA + + 26 August, 2022 + +![reduce behavior management - hero image](/assets/images/hero-reduce-behavior-management_800x.jpg) + +Children can get overwhelmed, frustrated, and sensory overloaded at any time because of different needs, which can result in a child engaging in challenging behaviors. However, the common thing among all children is that they are in need of support with their communication skills. Different strategies can be used to prevent or minimize challenging behavior, including: + +- Being proactive, instead of reacting to a child’s behavior. Using proactive strategies that have the most significant impact can help in teaching children the skills they need to convey their needs/wants. Proactive strategies include Communication Skills, Coping Skills, Manding Skills, Attending Skills, etc. Waiting until the child is engaging in disruptive behaviors and then intervening is not beneficial, nor teachable for the child. + +- Observe your child’s demeanor and model using appropriate communication skills. When a child is engaging in challenging behavior, make sure to redirect, rather than saying “Stop!” or “No!” to problem behavior. (i.e. replace “Stop kicking”, with “Keep feet to self”, which is beneficial in teaching a child a positive, functional replacement behavior. + +- Provide choices that allow a child to feel involved, and heard, have a sense of control, and be empowered. Make sure to provide 2-3 choices to eliminate a child getting overwhelmed by many options. If the child is non-verbal or has language difficulties, make sure to use visuals. Also, make sure to give the choices in a concise, clear way that matches your child’s level of communication. Choices can be given as keeping one choice is higher preferred to the child from the other one. + +- Allow your child to make a choice in the type of the activity or task presented (e.g., “Do you want to read a book about a cat or a book about a dog?”) or the place to engage in the activity (e.g. “Do you like to play with Lego inside or outside”). + +For more information on how to reduce behavior management, schedule a consultation with us today at [(480) 687-7099](tel:+14806877099) or reach out via our [contact form](../contact). + + Next Post + +###### [Play and Leisure Skills for Children with Autism](play-leisure-skills) + +### Similar Blog Posts + +![asd sensory-friendly pancake recipe - hero image](/assets/images/hero-asd-sensory-friendly-recipe-pancakes_800x.jpg) + +#### [ASD Sensory-Friendly Recipes: Pancakes](asd-sensory-friendly-recipes-pancakes) + +![New Year Goals for Our Children with Autism - hero image](/assets/images/hero-new-year-goals-2023_800x.jpg) + +#### [New Year Goals for Our Children with Autism](new-year-goals-2023) + +![potty train children with autism using simple aba techniques - hero image](/assets/images/hero-aba-toilet-training-child-autism.webp) + +#### [Guide: Simple ABA Techniques for Toilet Training Children with Autism](aba-toilet-training-child-autism) diff --git a/www/src/content/blog/en/repetitive-behavior.md b/www/src/content/blog/en/repetitive-behavior.md new file mode 100644 index 0000000..1f88e55 --- /dev/null +++ b/www/src/content/blog/en/repetitive-behavior.md @@ -0,0 +1,53 @@ +--- +title: "Repetitive Behaviors with Children Diagnosed with Autism" +description: "Understanding and managing repetitive behaviors in children with autism spectrum disorder (ASD), including causes, types, and intervention strategies." +slug: "repetitive-behavior" +canonical: "https://www.azinstitute4autism.com/library/repetitive-behavior" +lang: "en" +translationKey: "repetitive-behavior" +featuredImage: "/assets/images/hero-repetetive-behaviors.webp" +date: "2023-09-04" +author: "rula-diab" +category: "Library" +tags: [] +draft: false +--- +# Repetitive Behaviors with Children Diagnosed with Autism + +![Rula Diab, Clinical Director, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) + + Rula Diab, Clinical Director, M.Ed, BCBA, LBA + + 04 September, 2023 + +![Repetitive Behaviors with Children Diagnosed with Autism - hero image](/assets/images/hero-repetetive-behaviors.webp) + +Children with autism often engage in repetitive behaviors as a way to cope with sensory overload. These behaviors can manifest in various ways including repetitive motor behaviors. Repetitive behaviors can affect children's learning experiences, social interactions, and engagement in daily activities. + +As each child is unique and often requires tailored support, it's essential to comprehend each child’s needs and preferences also offering alternative and functional ways for them to engage in these behaviors. Such adaptations can help children be more engaged throughout the day, as well as offer them a constructive outlet for emotional expression and self-soothing. The goal is to teach a child alternative behaviors that serve the same purpose but are more adaptable during structured environments. This allows for better focus and participation during activities requiring attention, while still giving them the coping mechanisms they need. Changing their surroundings can also reduce triggers that lead to repetitive behaviors. Therefore, it helps children to regulate their emotions in a socially acceptable manner, while still meeting their behavioral and emotional needs. + +## Looking for more information? + +For more information on services offered by AIA or to book your free consultation, visit us at [https://www.azinstitute4autism.com](../index), contact us at [(480) 687-7099](tel:+14806877099), or email [info@azinstitute4autism.com](mailto:info@azinstitute4autism.com). If you are looking for more tips, check out monthly [blog posts](../library) from AIA’s clinical director, Rula Diab! + + Previous Post + +###### [Arizona Institute for Autism Adopts an Integrated ABA Model](integrated-aba-model-announcement) + + Next Post + +###### [ASD Sensory-Friendly Recipes: Pancakes](asd-sensory-friendly-recipes-pancakes) + +### Similar Blog Posts + +![Benefits of ABA Therapy for Children with Autism - hero image](/assets/images/hero-aba-therapy-benefits_800x.jpg) + +#### [The Benefits of ABA Therapy for Children with Autism](aba-therapy-benefits) + +![potty train children with autism using simple aba techniques - hero image](/assets/images/hero-aba-toilet-training-child-autism.webp) + +#### [Guide: Simple ABA Techniques for Toilet Training Children with Autism](aba-toilet-training-child-autism) + +![enhancing generalization skills in children with autism - hero image](/assets/images/hero-enhancing-generalization-skills_800x.jpg) + +#### [Enhancing Generalization for Broader Impact in Autism](enhancing-generalization-skills) diff --git a/www/src/content/blog/en/sensory-processing.md b/www/src/content/blog/en/sensory-processing.md new file mode 100644 index 0000000..328d882 --- /dev/null +++ b/www/src/content/blog/en/sensory-processing.md @@ -0,0 +1,53 @@ +--- +title: "Understanding Sensory Processing in the Context of ABA Therapy" +description: "Learn to address sensory challenges for children diagnosed with autism through customized ABA therapy. Expert tips for parents and caregivers inside." +slug: "sensory-processing" +canonical: "https://www.azinstitute4autism.com/library/sensory-processing" +lang: "en" +translationKey: "sensory-processing" +featuredImage: "/assets/images/hero-sensory-processing.webp" +date: "2024-01-30" +author: "rula-diab" +category: "Library" +tags: [] +draft: false +--- +# Understanding Sensory Processing in the Context of ABA Therapy + +![Rula Diab, Clinical Director, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) + + Rula Diab, Clinical Director, M.Ed, BCBA, LBA + + 30 January, 2024 + +![sensory processing challenges in aba therapy - hero image](/assets/images/hero-sensory-processing.webp) + +Many individuals with Autism Spectrum Disorder (ASD) may face challenges with sensory processing, which can have a significant impact on their behavior and learning. An awareness of these sensory needs allows Applied Behavior Analysts to tailor their methods to meet each individual's specific requirements and improve the effectiveness of their interventions. Making sensory integration a part of a child's daily routine can have a significant impact on their daily functioning, communication, social interactions, independence, and overall well-being. + +[Sensory Processing:](https://familydoctor.org/condition/sensory-processing-disorder-spd/#:~:text=Sensory%20processing%20disorder%20(SPD)%20is,your%20senses%2C%20or%20just%20one.) Sensory processing difficulties often manifest as behavioral challenges. For instance, a child may display tantrums or engage in avoidance behaviors in response to overwhelming sensory stimuli. Recognizing these challenges as sensory processing difficulties, rather than non-compliance or maladaptive behaviors, enables more appropriate and effective interventions. Applied Behavior Analysis (ABA) therapy can be beneficial for individuals with autism, as it incorporates sensory activities into therapy sessions to help them learn to process and respond to sensory stimuli in a more adaptable manner. + +[Sensory Integration Techniques :](https://www.healthychildren.org/English/health-issues/conditions/developmental-disabilities/Pages/Sensory-Integration-Therapy.aspx#:~:text=Therapy%20sessions%20are%20play%2Doriented,to%20calm%20an%20anxious%20child.) Understanding the connection between sensory challenges and specific behaviors allows ABA therapy to customize interventions to alleviate discomfort and enhance responses to sensory experiences. Considering sensory processing in ABA therapy not only improves intervention effectiveness but also takes a more comprehensive approach to behavior and learning. ABA therapists often focus on modifying the environment to facilitate learning, leading to positive behavioral changes. + +This understanding of sensory processing informs these modifications, including identifying and avoiding triggers, reducing sensory overload, and introducing sensory aids to help the child feel more comfortable and focused. Incorporating an understanding of sensory processing in ABA therapy not only improves intervention effectiveness but also promotes a more comprehensive approach to behavior and learning. This integration significantly contributes to the overall well-being of individuals receiving therapy. + + Previous Post + +###### [New Year 2024: Holiday Tips for Autism Support & Awareness](new-year-2024-autism-holiday-tips) + + Next Post + +###### [Learn About DTT and NET Methods for More Effective ABA Therapy](aba-therapy-dtt-net-guide) + +### Similar Blog Posts + +![Benefits of Prompting & Parenting in ABA Therapy - hero image](/assets/images/hero-prompting-parenting-benefits.webp) + +#### [Benefits of Prompting & Parenting in ABA Therapy](aba-therapy-prompting-parenting-benefits) + +![rapport strategies for effective aba therapy - hero image](/assets/images/hero-rapport-strategies.webp) + +#### [Learn the Secrets to Effective Rapport Building in ABA Therapy](autism-therapy-rapport-strategies) + +![aba therapy positive reinforcement](/assets/images/hero-positive-reinforcement-techniques.webp) + +#### [Positive Reinforcement in ABA Therapy to Encourage Skill Development](positive-reinforcement-techniques) diff --git a/www/src/content/blog/en/social-pragmatic-communication-autism.md b/www/src/content/blog/en/social-pragmatic-communication-autism.md new file mode 100644 index 0000000..2350287 --- /dev/null +++ b/www/src/content/blog/en/social-pragmatic-communication-autism.md @@ -0,0 +1,192 @@ +--- +title: "Why My Child Can Talk but Still Struggles Socially" +description: "Your child can talk yet struggles socially. See how pragmatic language, inference, and nonverbal cues shape connection, and how ABA builds skills." +slug: "social-pragmatic-communication-autism" +canonical: "https://www.azinstitute4autism.com/library/social-pragmatic-communication-autism" +lang: "en" +translationKey: "social-pragmatic-communication-autism" +featuredImage: "/assets/images/talk-not-social.jpg" +date: "2025-12-01" +author: "rula-diab" +category: "Library" +tags: [] +draft: false +--- +# Why My Child Can Talk but Still Struggles Socially + +![Rula Diab, Clinical Director, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) + + Rula Diab, Clinical Director, M.Ed, BCBA, LBA + + 01 December, 2025 + +![talking child has trouble socializing - hero](/assets/images/talk-not-social.jpg) + +## The questions parents ask us every week "My child can talk, so why is making friends still so hard?" or "She has words, but she doesn’t know how to have a conversation." + +### The short answer + +You are not alone. Speech and social connection are related, but they are not the same skill set. Talking is about forming words and sentences. Social communication is about when, why, and how we use those words with other people. Many autistic children have solid vocabulary and grammar yet still need support in the social side of communication. + +Quick take: If your child can talk but struggles in groups, the missing pieces are usually pragmatic language, social inference, perspective taking, and reading nonverbal cues. + +## Talking vs. Social Communication + + Talking (form) + Social communication (use) + + Knowing words and grammar + Starting, keeping, and ending a conversation at a good time + + Pronouncing sounds + Matching tone and volume to the setting + + Building sentences + Reading body language and facial expressions + + Labeling and answering + Asking follow-up questions, sharing topics, taking turns + +Clinicians call the right side pragmatic language . It is the rulebook for using language with people. Many autistic children need these rules taught directly and practiced in real settings. + +## What parents usually notice first + +- Your child has lots to say about a favorite interest, but peers drift away. + +- Jokes or sarcasm do not land. + +- Playdates feel awkward. Your child talks to people rather than with them. + +- New situations lead to freezing, saying the "wrong thing," or avoiding. + +These are not defiance or rudeness. They are signs that social communication skills need teaching and support. + +## Skill 1: Pragmatic language in everyday moments + +Pragmatic language is using the right words in the right way for the moment. That includes how to start a chat, keep it going, change topics, and end politely. It also includes personal space, turn taking, and appropriate tone. Many autistic learners benefit from explicit teaching and plenty of low-pressure practice. + +Try this at home: Pick one routine, such as snack time. Practice a simple three-beat script: "Offer" (Would you like some?), "Wait," "Follow-up" (Great, what do you want next?). Fade the script as your child succeeds. + +## Skill 2: Social inference, or understanding what is not said + +Humans often imply rather than state things. We sigh, shrug, or say "maybe later," and others infer what we mean. Autistic children may miss these subtle cues or take language literally, which can make them seem disinterested or too persistent when they actually want to connect. Teaching how to notice the situation, the person, and the words together can help. + +Practice idea: Watch a short, silent clip together. Pause and ask, "What do you think she wants?" or "What changed when he looked away?" + +## Skill 3: Perspective taking + +Perspective taking means understanding that another person may want to play something different, may not know what you know, and may feel differently than you do. This skill grows with modeling, role-play, and structured peer practice. + +In session at AIA: We use brief role-plays, video clips, and social stories, then practice with peers and caregivers so the skill shows up at school and at home. Peer-mediated practice is an evidence-based way to build social understanding. + +## Skill 4: Reading nonverbal cues + +Much of human communication lives in the face, the body, and the voice. A step back may mean "I need space." Looking away may mean "I am ready to move on." A change in tone can signal a joke or frustration. Teaching children to look for a few predictable signals builds real-world confidence. + +Game to try: Make it a scavenger hunt. During a family show, pause when you see a cue and label it together: "He crossed his arms. What might that mean right now?" + +## The hidden rules that change by setting + +Rules like "do not stand too close," "ask what the other person likes," and "change your voice in the library" are seldom said out loud. At AIA, we break each rule into small steps, model examples and non-examples, practice with peers, and reinforce approximations so children can use the skill in class, on the playground, and at home. This stepwise approach aligns with evidence-based practices such as modeling, visual supports, peer-mediated instruction, and social narratives. + +## How ABA at AIA grows social communication + +We focus on connection, communication, and emotional regulation. Each plan is individualized and may include: + +- Naturalistic teaching, embedding skills in play and daily routines. + +- Modeling and video modeling, so children can see exactly what success looks like. + +- Peer-mediated practice, learning with supportive peers in structured scenarios. + +- Social narratives and scripts, used briefly, then faded as independence rises. + +- Emotion regulation, teaching what to do when you feel overwhelmed, confused, or anxious. + +- Community practice, taking skills to playgrounds, stores, and clubs around Phoenix and the East Valley. + +These strategies are identified as evidence-based for autistic learners, which means multiple high-quality studies show positive effects on social and communication outcomes. + +Want a deeper dive? See our guides on [Proactive and Reactive ABA Strategies](proactive-reactive-aba-strategies-guide) , [Individualized Care Plans](individualized-aba-therapy) , and [Sensory Processing](sensory-processing) to understand how we tailor support. + +## A simple roadmap you can use this week + +- Choose one situation that happens daily, such as lining up for recess or joining a game at aftercare. + +- Preview the plan with a visual like a First-Then card, then practice it once before the real moment. Our article shows examples you can print. + +- Coach one cue to notice, such as "look for eyes looking away." + +- Reinforce the attempt, not just the outcome, and write a quick note to the teacher about what you practiced. + +- Review with your child on the ride home, then celebrate one specific win. + +## When to seek extra support + +If your child wants friends but keeps hitting the same hurdles, structured teaching can help. Start a conversation with our team about [ABA therapy](../aba-therapy) and the [intake process](../aba-therapy-intake-process) . Or [book a free consultation](../client-consultation) today. We serve families across Scottsdale, Tempe, Mesa, Gilbert, and the greater Phoenix area. + +### Visual support to try + +Aside for Arizona families: On hot days when the playground is not an option, practice social games during indoor activities such as board games, art projects, or LEGO builds. Short, predictable practice goes a long way in the Phoenix summer. + +## Sources we use when building social-communication plans + +- [National Institute on Deafness and Other Communication Disorders](https://www.nidcd.nih.gov/health/autism-spectrum-disorder-communication-problems-children): communication and nonverbal challenges in ASD. + +- [Cincinnati Children's Hospital](https://www.cincinnatichildrens.org/-/media/Cincinnati-Childrens/Home/service/s/speech/hcp/doctor-info/information-language-PDF-pragmatic-lan-6.pdf) definition of pragmatic language. + +- [NCAEP](https://ncaep.fpg.unc.edu/wp-content/uploads/EBP-Report-2020.pdf) (National Clearinghouse on Autism Evidence and Practice) report identifying modeling, visual supports, social narratives, peer-mediated instruction, and related strategies as evidence-based. + +- [Peer-mediated interventions](https://files.eric.ed.gov/fulltext/ED595339.pdf) and video modeling research supporting social skill gains. + +- [National Autistic Society](https://www.autism.org.uk/advice-and-guidance/topics/family-life-and-relationships/making-friends/parents-and-carers) guidance on helping children make friends. + + Frequently Asked Questions + +## Social Communication Tips + +### What is pragmatic language in autism? + +Pragmatic language is how we use words to relate with people in real situations. It covers turn taking, topic maintenance, personal space, and how tone and volume fit the context. It is common for autistic children to have strong vocabulary yet still need direct teaching in these rules. + +### Is my child being rude when they miss jokes or interrupt? + +Usually, no. Missing sarcasm, literal interpretations, and interrupting are signs that social inference and timing need to be taught. These skills improve with modeling, practice, and feedback in low-pressure settings. + +### Does peer practice actually help? + +Yes. Peer-mediated instruction is considered an evidence-based practice for autistic learners and has been shown to support social interaction skills across preschool through high school. + +### How is ABA different from speech therapy for social skills? + +Speech-language therapy often targets the mechanics and pragmatics of language. ABA looks at the whole context, including motivation, environment, reinforcement, and generalization across settings. The two services complement each other well. + +### What visual supports should we start with? + +Start with simple tools such as First-Then cards or mini checklists for a single routine. Our overview of [First-Then Cards](first-then-cards-autism-transitions) shows how to set them up and fade them as independence grows. + +### How do I get help in Arizona? + +You can [schedule a free consultation](../client-consultation) or read more about [AIA’s ABA services](../aba-therapy) and our [intake process](../aba-therapy-intake-process) . We support families across the Phoenix metro area with in-center and at-home options along with caregiver training. + + Previous Post + +###### [Heart Full of Gratitude](heart-full-of-gratitude) + + Next Post + +###### [Autism Evaluation in Arizona: A Parent's Step-by-Step Guide](autism-evaluation-diagnosis-arizona-parent-guide) + +### Similar Blog Posts + +![hero image - executive functioning skills strategies for autistic children](/assets/images/hero-executive-functioning-skills-autism.webp) + +#### [Executive Functioning Skills and Autism](executive-functioning-skills-autism) + +![Parent and child meeting with a clinician in a calm, play-based autism evaluation setting](/assets/images/autism-evaluation-expectations_hero.png) + +#### [What to Expect at Your Child’s First Autism Evaluation](autism-evaluation-what-to-expect) + +![A parent and an autistic child smiling while using a picture communication board during playtime.](/assets/images/communication-skills-autistic-children-hero_img.png) + +#### [Building Communication & Social Skills in Autistic Children: A Practical Guide for Families](communication-social-skills-autistic-children-guide) diff --git a/www/src/content/blog/en/understanding-autism-support.md b/www/src/content/blog/en/understanding-autism-support.md new file mode 100644 index 0000000..69a667a --- /dev/null +++ b/www/src/content/blog/en/understanding-autism-support.md @@ -0,0 +1,77 @@ +--- +title: "Navigating the Autism Journey: Understanding and Supporting Our Children with Autism" +description: "Explore effective strategies and therapies to lift up and support children with autism, fostering their development while enhancing their quality of life." +slug: "understanding-autism-support" +canonical: "https://www.azinstitute4autism.com/library/understanding-autism-support" +lang: "en" +translationKey: "understanding-autism-support" +featuredImage: "/assets/images/hero-understanding-autism-support_800x.jpg" +date: "2023-06-11" +author: "rula-diab" +category: "Library" +tags: [] +draft: false +--- +# Navigating the Autism Journey: Understanding and Supporting Our Children with Autism + +![Rula Diab, Clinical Director, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) + + Rula Diab, Clinical Director, M.Ed, BCBA, LBA + + 11 June, 2023 + +![navigating the autism journey: understanding and supporting our children with autism - hero image](/assets/images/hero-understanding-autism-support_800x.jpg) + +Parenting a child with autism is an immensely rewarding experience, but it also presents unique challenges. To provide the best support, it is crucial to navigate our children's development while comprehending their needs. + +In this blog post, we will delve into essential insights and practical tips to help parents better understand and support their child with autism. + +## Building a Support Network + +Recognize the significance of a support network comprising professionals, educators, and empathetic parents who can offer guidance and valuable resources. Nurture a sense of belonging by sharing experiences and connecting with others who comprehend the journey. + +## Effective Communication Strategies + +Communication is a fundamental aspect of human interaction, and supporting a child with autism in developing effective communication skills is crucial. Enhance communication with your child on the autism spectrum through tailored communication approaches. Utilize visual aids, such as visual schedules, social stories, and picture cards, to facilitate understanding and expression. Incorporate assistive communication tools, such as alternative communication (AAC) systems, or [PECS system](https://www.iidc.indiana.edu/irca/articles/what-is-the-picture-exchange-communication-system-or-pecs) to support communication efforts for non-verbal children. Additionally, enhance Social Communication by teaching and modeling social communication skills, including turn-taking, active listening, and nonverbal cues. Make sure to create opportunities for social interaction, such as structured playdates or social skills groups, to practice communication in a supportive environment. Allow ample time for your child to process and respond to communication and practice active listening by showing genuine interest and providing positive reinforcement for their efforts. + +## Promoting Sensory Integration + +Understanding the profound impact of sensory processing issues on children with autism is vital to provide a supportive and enriching environment that fosters integration and enhances the well-being of your child. Provide practical strategies for creating sensory-friendly environments at home and in public spaces. Additionally, incorporate sensory breaks and activities into daily routines which are important to address and fulfill a child’s specific sensory needs. + +## Individualized Education Plans (IEPs) and Advocacy + +In the realm of education, it is crucial for parents of children with autism to navigate the system while being aware of their child’s rights. This includes understanding the unique needs and advocating for your child's educational needs. Cultivate collaboration and open communication with and between teachers, therapists, and school staff. By doing so, parents can ensure their child receives the personalized support s/he needs to thrive academically. + +## Managing Behavior Challenges + +Address common behavior challenges associated with autism, such as [meltdowns](https://www.understood.org/en/articles/the-difference-between-tantrums-and-meltdowns), difficulties with transitions, etc. Offer effective strategies for behavior management and employ positive reinforcement techniques. Also encourage the importance of fostering the development of social and emotional skills, which play a crucial role in facilitating self-regulation. + +Remember, each child with autism is unique. By educating yourself, seeking support, and implementing practical strategies that are individualized and based on your child's unique needs and abilities, you can empower your child to thrive and achieve their full potential. With patience, understanding, and unwavering support, you can navigate the autism journey and provide your child with a fulfilling and enriching life. + +## Looking for more information? + +For more information on services offered by AIA or to book your free consultation, visit us at [https://www.azinstitute4autism.com](../index), call us at [(480) 687-7099](tel:+14806877099), or email [hello@azinstitute4autism.com](mailto:hello@azinstitute4autism.com). + +If you are looking for more tips, check out [monthly blog posts](../library) from AIA’s clinical director, Rula Diab! + + Previous Post + +###### [The Ultimate Guide to Behavior Modification Techniques & Reinforcement Theory](behavior-modification-techniques-reinforcement-theory) + + Next Post + +###### [Enhancing Generalization for Broader Impact in Autism](enhancing-generalization-skills) + +### Similar Blog Posts + +![Benefits of ABA Therapy for Children with Autism - hero image](/assets/images/hero-aba-therapy-benefits_800x.jpg) + +#### [The Benefits of ABA Therapy for Children with Autism](aba-therapy-benefits) + +![2024 new year reflection and planning for autism support and awareness - hero image](/assets/images/hero-new-year-goals-2024.webp) + +#### [New Year 2024: Holiday Tips for Autism Support & Awareness](new-year-2024-autism-holiday-tips) + +![Repetitive Behaviors with Children Diagnosed with Autism - hero image](/assets/images/hero-repetetive-behaviors.webp) + +#### [Repetitive Behaviors with Children Diagnosed with Autism](repetitive-behavior) diff --git a/www/src/content/blog/es/aba-school-readiness-arizona.md b/www/src/content/blog/es/aba-school-readiness-arizona.md new file mode 100644 index 0000000..37fddd3 --- /dev/null +++ b/www/src/content/blog/es/aba-school-readiness-arizona.md @@ -0,0 +1,159 @@ +--- +title: "Preparación escolar ABA en AZ | Academia Preparatoria AIA (2 a 6 años)" +description: "Programa de preparación escolar temprana que une ABA y currículo acreditado para niños de 2 a 6 años en habilidades académicas, sociales y de comunicación." +slug: "aba-school-readiness-arizona" +canonical: "https://www.azinstitute4autism.com/es/library/aba-school-readiness-arizona" +lang: "es" +translationKey: "aba-school-readiness-arizona" +featuredImage: "/assets/images/hero-aba-preschool-az_800x.jpg" +date: "2025-09-02" +author: "rula-diab" +category: "Library" +tags: [] +draft: false +--- +# Ya se inscriben alumnos: Academia Preparatoria AIA para niños de 2 a 6 años + +![Rula Diab, Directora Clínica, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) + + Rula Diab, Directora Clínica, M.Ed, BCBA, LBA + + 02 septiembre, 2025 + +![Enseñanza de habilidades académicas, sociales, de comunicación e independencia](/assets/images/hero-aba-preschool-az_800x.jpg) + +En el Instituto de Autismo de Arizona (AIA), los niños de 2 a 6 años son bienvenidos en la Academia Preparatoria AIA, un programa único que combina un currículo acreditado con Análisis de Comportamiento Aplicado (ABA). Nuestro objetivo es crear un entorno de aprendizaje estructurado, nutritivo y de apoyo donde cada niño pueda desarrollar las habilidades que necesita para el éxito a largo plazo en la escuela y en la vida. + +## Nuestro Enfoque Único para el Desarrollo Infantil Temprano + +Los sistemas educativos tradicionales pueden no proporcionar el apoyo individualizado que algunos niños necesitan para prosperar. La Academia Preparativa AIA utiliza estrategias conductuales basadas en evidencia dentro de un entorno académico para fortalecer las habilidades sociales, emocionales, de comunicación y académicas fundamentales. Este enfoque es especialmente beneficioso para los niños con autismo o diferencias en el desarrollo, ya que fomenta la independencia mientras los prepara para futuras transiciones en el aula. + +## ¿Quién Enseña en la Academia Preparatoria AIA? + +Nuestro equipo de profesionales altamente capacitados asegura que los niños reciban el mejor equilibrio entre el aprendizaje académico y el cuidado individualizado: + +- Técnicos de Comportamiento Registrados (RBT): Proporcionan apoyo individual y en pequeños grupos para mantener a los niños comprometidos. + +- Instructores Clínicos de Nivel de Maestría: Dirigen la instrucción, supervisan la planificación de casos y aseguran que las decisiones basadas en datos guíen el progreso. + +- Apoyo Colaborativo del Equipo: Cada aula mantiene ratios bajos para que los niños se beneficien de una atención constante y una enseñanza personalizada. + +## ¿Qué Hace Que Nuestro Programa Se Destaque? + +A diferencia de las escuelas preescolares tradicionales, la Academia Preparatoria AIA incorpora estrategias de Análisis de Comportamiento Aplicado (ABA) a lo largo del día. Las características clave del programa incluyen: + +- Currículo de educación infantil acreditado y adaptado a las necesidades de desarrollo + +- Aprendizaje basado en el juego equilibrado con rutinas estructuradas + +- Instrucción grupal que abarca lenguaje, comunicación, habilidades sociales, educación temprana y autonomía en el autocuidado + +- Tiempo de círculo estructurado y centros de aprendizaje para la interacción entre compañeros + +- Evaluaciones continuas para la colocación por niveles y la preparación para la transición + +## Aprendizaje Listo para la Transición + +Los niños se colocan en uno de dos niveles según su preparación: + +- Aprendizaje intensivo 1:1 para niños nuevos en entornos estructurados. + +- Aprendizaje en Pequeños Grupos donde los niños comienzan a seguir instrucciones y rutinas grupales, preparándolos para ingresar en el Kinder o a la educación primaria convencional. + +El plan personalizado de cada niño está diseñado para sus objetivos de desarrollo mientras se fomenta el progreso en entornos grupales. Ya sea que un niño esté comenzando a asistir a clases intensivas uno a uno o esté listo para seguir instrucciones grupales, los encontramos donde están y los ayudamos a crecer. + +## Apoyando al Niño Integral + +La Academia Preparatoria AIA es ideal para niños que pueden beneficiarse de: + +- Un aula estructurada con apoyo ABA constante + +- Exposición al aprendizaje grupal y oportunidades sociales + +- Desarrollo temprano de habilidades en comunicación, juego, habilidades para la vida e independencia + +- Preparación para el éxito académico a largo plazo + +## Inscríbete hoy en el programa de la Academia Preparatoria AIA + +Si su hijo tiene entre 2 y 6 años y podría beneficiarse de un programa que integre terapia ABA con educación acreditada, le invitamos a inscribirse en la Academia Preparatoria AIA. Juntos, podemos crear la base para estudiantes seguros y capaces. + +## Comparación: Preescolar tradicional vs Academia Preparatoria AIA + + Característica + Preescolar Tradicional + Escuela Preparatoria AIA + + Currículo + Currículo general de educación infantil + Limitados, a menudo en proporciones de 1:10 o más + + Apoyo Individualizado + Limitados, a menudo en proporciones de 1:10 o más + Bajas proporciones con instrucción uno a uno y en grupos pequeños + + Estrategias Conductuales + No incrustado de manera consistente + Principios ABA integrados en cada actividad + + Desarrollo de habilidades sociales + Juego e interacción entre pares + Interacción entre pares con desarrollo de habilidades guiado + + Monitoreo del Progreso + Evaluaciones periódicas de los estudiantes + Evaluación continua del progreso basada en datos + + Preparación para la transición + Preparación general para el Kinder + Rutas de aprendizaje escalonadas para transiciones suaves + + Preguntas frecuentes + +## Consejos de la Academia Preparatoria AIA + +### ¿Qué es la Academia Preparatoria AIA? + +La Academia Preparatoria AIA combina la educación temprana tradicional con estrategias de Análisis de Comportamiento Aplicado (ABA), ayudando a los niños a desarrollar habilidades de comunicación, sociales, de vida y académicas en un entorno estructurado. + +### ¿Quién se beneficia más de la Academia Preparatoria AIA? + +La Academia Preparatoria AIA es especialmente efectiva para niños con autismo o retrasos en el desarrollo, pero cualquier niño que prospere en entornos estructurados e individualizados puede beneficiarse. + +### ¿Cómo prepara nuestro programa de preparación escolar a los niños para el kinder? + +A través de la colocación escalonada, los niños pasan gradualmente de un aprendizaje uno a uno a la instrucción en grupos pequeños, construyendo confianza e independencia antes de pasar a un entorno escolar tradicional. + +### ¿Está acreditada la Academia Preparatoria AIA? + +Nuestro programa integra un currículo acreditado alineado con los estándares de educación infantil de Arizona mientras incorpora prácticas de ABA. + +### ¿Cómo se miden el progreso y los resultados? + +El progreso es monitoreado continuamente por el Analista de Comportamiento (BCBA), utilizando la recopilación y el análisis de datos, asegurando que los objetivos de cada niño sean personalizados y actualizados a medida que crecen. + +### ¿Qué grupo de edad atiende la Academia Preparatoria AIA? + +Actualmente atendemos a niños de 2 a 6 años que se encuentran en sus años más críticos de desarrollo temprano. + +### ¿Cómo inscribo a mi hijo/hija? + +Las familias pueden contactar directamente al Instituto de Autismo de Arizona para programar una consulta y obtener más información sobre el proceso de inscripción. + + Next Post + +###### [Por qué la regulación emocional debería ser el corazón de cada programa de ABA](emotional-regulation-aba) + +### Similar Blog Posts + +![Pediatra realizando una evaluación de autismo a un niño pequeño en una clínica de Arizona](/assets/images/autism_evaluation_arizona_hero.jpg) + +#### [Evaluación del Autismo en Arizona: Guía Paso a Paso para Padres](autism-evaluation-diagnosis-arizona-parent-guide) + +![niño que habla tiene problemas para socializar - imagen principal](/assets/images/talk-not-social.jpg) + +#### [Por qué mi hijo puede hablar pero aún tiene dificultades sociales](social-pragmatic-communication-autism) + +![Reunión entre padres e hijos con un clínico en un entorno de evaluación del autismo tranquilo y basado en el juego.](/assets/images/autism-evaluation-expectations_hero.png) + +#### [Qué esperar en la primera evaluación de autismo de su hijo](autism-evaluation-what-to-expect) diff --git a/www/src/content/blog/es/autism-evaluation-diagnosis-arizona-parent-guide.md b/www/src/content/blog/es/autism-evaluation-diagnosis-arizona-parent-guide.md new file mode 100644 index 0000000..1671a80 --- /dev/null +++ b/www/src/content/blog/es/autism-evaluation-diagnosis-arizona-parent-guide.md @@ -0,0 +1,227 @@ +--- +title: "Evaluación del Autismo en Arizona: Guía Paso a Paso para Padres" +description: "Aprende los signos del autismo según la edad, quién puede diagnosticar en Arizona y los próximos pasos después del diagnóstico. Obtén apoyo de ABA. Programa una consulta gratuita." +slug: "autism-evaluation-diagnosis-arizona-parent-guide" +canonical: "https://www.azinstitute4autism.com/es/library/autism-evaluation-diagnosis-arizona-parent-guide" +lang: "es" +translationKey: "autism-evaluation-diagnosis-arizona-parent-guide" +featuredImage: "/assets/images/autism_evaluation_arizona_hero.jpg" +date: "2026-01-22" +author: "rula-diab" +category: "Library" +tags: [] +draft: false +--- +# Evaluación del Autismo en Arizona: Guía Paso a Paso para Padres + +![Rula Diab, Directora Clínica, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) + + Rula Diab, Directora Clínica, M.Ed, BCBA, LBA + + 22 enero, 2026 + +![Pediatra realizando una evaluación de autismo a un niño pequeño en una clínica de Arizona](/assets/images/autism_evaluation_arizona_hero.jpg) + +Si estás aquí, es posible que estés viendo patrones que te hacen detenerte. Tal vez tu hijo no esté usando muchas palabras. Tal vez el contacto visual sea breve, o las rutinas se sientan innegociables. No estás solo en preguntarte, ¿podría ser autismo, y qué debo hacer a continuación? + +Esta guía explica los signos tempranos por edad, la diferencia entre la detección y el diagnóstico, quién puede diagnosticar en Arizona y cómo avanzar con confianza. + +## Qué es el autismo + +El autismo es una condición neurodesarrollo que afecta la comunicación, la interacción social y el comportamiento. Se ve diferente de un niño a otro. + +Algunos niños hablan temprano pero tienen dificultades con la conversación recíproca. Otros usan pocas palabras pero manejan bien las rutinas familiares. A algunos les encanta alinear juguetes o ver objetos girar. Otros prefieren jugar en silencio con adultos en lugar de con sus compañeros. + +El autismo es un espectro, no una sola presentación. + +## Signos tempranos según la edad + +Cada niño se desarrolla a su propio ritmo. Lo que más importa son los patrones que se repiten con el tiempo, no un momento o un comportamiento. + + Rango de edad + Comunicación social + Juego y comportamiento + Ejemplos sensoriales + + 6-12 meses + Contacto visual limitado o sonreír de vuelta, respuesta reducida al nombre + - + Reacciones fuertes a los sonidos, dificultad para calmarse, seguimiento mínimo de caras o juguetes + + 12-24 meses + Pocos gestos como señalar o saludar, palabras retrasadas + Coloca los juguetes en fila, se fija en partes de los objetos, angustia con los cambios. + Cubre los oídos, texturas exigentes, observa ventiladores o ruedas + + 2-4 años + Frases guionizadas o repetitivas, conversación limitada de ida y vuelta + Prefiere jugar solo, juego de simulación limitado, rutinas rígidas, movimientos repetitivos. + Evita cierta ropa, reacciones fuertes a la luz o al ruido, busca presión profunda. + +Nota: Ningún signo por sí solo confirma el autismo. Los patrones a lo largo de semanas y meses son más informativos que momentos aislados. + +## Cribado versus diagnóstico + +La detección y el diagnóstico están relacionados, pero no son lo mismo. La evaluación es un chequeo rápido que busca posibles rasgos. El diagnóstico es una evaluación formal que confirma o descarta el autismo y abre puertas a servicios. + +A primera vista + + Tema + Cribado + Diagnóstico + + Propósito + Revisión breve de posibles rasgos + Confirmación formal o descarte + + Profesión + Pediatra o equipo de atención + Psicólogo, pediatra del desarrollo, neurólogo o psiquiatra + + Herramientas + Cuestionarios para padres como el M-CHAT, listas de verificación del desarrollo + Entrevista con los padres, observación, herramientas estandarizadas como el ADOS-2 + + Resultado + Remitir para evaluación si está marcado + Informe diagnóstico, recomendaciones de tratamiento, seguro y orientación escolar + +Si una evaluación sugiere riesgo, pida a su pediatra que le proporcione una referencia para una evaluación integral. No necesitas tener todas las respuestas antes de pedir ayuda. + +## ¿Quién puede diagnosticar el autismo en Arizona? + +- Psicólogo licenciado con formación en evaluación del autismo + +- Pediatra del desarrollo + +- Neurólogo infantil o psiquiatra + +Si no estás seguro de por dónde empezar, solicita una referencia a tu pediatra y contacta al Instituto de Autismo de Arizona para obtener orientación. Puedes visitar nuestra [Biblioteca](../../library) para artículos fundamentales y guías para padres. + +## Paso a paso: cómo obtener una evaluación + +- Escribe los patrones que notes : Mantén notas breves durante una o dos semanas. Ejemplos incluyen la respuesta al nombre, el uso de señas o gestos, el estilo de juego y las reacciones al cambio o al ruido. + +- Habla con tu pediatra : Comparte tus notas y pide una referencia para una evaluación de autismo. Puedes mencionar las evaluaciones previas si has completado el M-CHAT o herramientas similares. + +- Programar la evaluación : Cuando recibas opciones de referencia, pregunta sobre los tiempos de espera, los idiomas y si el clínico utiliza herramientas estandarizadas como el ADOS-2. + +- Prepara un pequeño paquete. : Incluya comentarios de los maestros, documentos del Programa de Educación Individualizada si los hay, evaluaciones anteriores, tarjetas de seguro y un video corto de juego típico si está disponible. + +- Asistir a la evaluación : Espere una entrevista familiar, observación directa y actividades estructuradas que se sientan como juego. Trae bocadillos familiares y objetos de consuelo. + +- Revisar los resultados y planificar los próximos pasos : El informe describirá los hallazgos y las recomendaciones. Si se diagnostica autismo, debe incluir sugerencias de terapia y referencias médicas o escolares. + +### Lista rápida de preparación + +- Notas sobre comportamientos y desencadenantes + +- Informes del maestro o cuidador + +- Evaluaciones pasadas o notas de terapia + +- Información del seguro + +- Video corto desde casa o la guardería + +- Juguete y bocadillo favoritos + +## Después del diagnóstico: terapias que apoyan el crecimiento + +Muchos niños se benefician de un plan coordinado que puede incluir múltiples terapias. Su informe diagnóstico guiará cuál comenzar primero. + + Terapia + Enfoque + Cómo se ve + + Terapia ABA + Comunicación, habilidades receptivas, juego funcional, vida diaria, habilidades sociales, funcionamiento ejecutivo + Sesiones divertidas basadas en el juego que enseñan nuevas habilidades y reducen las barreras para el aprendizaje + + Terapia del habla y lenguaje + Lenguaje expresivo y receptivo, pragmática social, AAC + Modelar palabras, gestos, imágenes o dispositivos para construir comunicación + + Terapia ocupacional + Procesamiento sensorial, motricidad fina, autocuidado, regulación + Actividades informadas por los sentidos que fomentan la regulación y la independencia + +Aprenda más en nuestros artículos sobre los conceptos básicos del ABA y los apoyos para el comportamiento positivo en la [Biblioteca AIA](../../library). + +¿Listo para hablar sobre referencias, cobertura de seguros y opciones de terapia? [Programa una consulta gratuita](../../schedule-consultation) y nuestro equipo te guiará en los próximos pasos. + +## Por qué importan los patrones + +Un solo comportamiento rara vez cuenta toda la historia. Un niño que habla tarde puede ser aventurero en habilidades motoras. Otro que habla en oraciones largas puede preferir rutinas que se sientan predecibles. Observar los patrones en la comunicación, el juego, la flexibilidad y las reacciones sensoriales le da a su pediatra y al evaluador un camino claro hacia los apoyos adecuados. + +## Qué decir en la visita pediátrica + +Usa observaciones simples. No se requiere lenguaje médico. + +- No señala para pedir cosas. + +- Ella alinea los juguetes y se molesta si los muevo. + +- Usa palabras, pero no para pedir o responder preguntas simples. + +- Le cuesta cuando la rutina cambia. + +Entradas cortas en el diario como "no miró cuando llamaron su nombre" o "lloró cuando cambió el horario" añaden un contexto valioso. Estas notas ayudan al profesional a seleccionar las evaluaciones adecuadas y recomendar las terapias apropiadas. + +## Recordatorios suaves + +- Las conversaciones tempranas abren puertas al apoyo. + +- Una evaluación puede confirmar el autismo, descartarlo o sugerir otras vías como el retraso del lenguaje. + +- Conoces mejor a tu hijo. Tus observaciones guían el proceso. + + Preguntas Frecuentes + +## Consejos para la Evaluación del Autismo en Arizona + +### ¿Cuál es la diferencia entre una evaluación de autismo y un diagnóstico de autismo? + +La evaluación es un chequeo rápido que señala posibles rasgos. El diagnóstico es una evaluación clínica formal realizada por un profesional calificado que confirma o descarta el autismo. + +### ¿Quién puede diagnosticar el autismo en Arizona? + +Los psicólogos licenciados, pediatras del desarrollo, neurólogos infantiles y psiquiatras pueden realizar una evaluación diagnóstica formal en Arizona. + +### ¿Cuándo debo pedir una evaluación? + +Si notas patrones en la comunicación social, el juego o la flexibilidad que persisten con el tiempo, habla con tu pediatra. La conversación temprana abre el acceso al apoyo. + +### ¿Qué sucede durante una evaluación de autismo? + +Espere una entrevista con los padres, observación directa y herramientas estandarizadas como el ADOS-2. Los resultados guían las recomendaciones de tratamiento y los apoyos escolares o de seguros. + +### ¿Necesito un diagnóstico para comenzar la terapia ABA en Arizona? + +Los planes de seguro generalmente requieren un diagnóstico formal y una remisión. AIA puede ayudarte a entender tu cobertura y los próximos pasos. + +### ¿Qué debo llevar a la primera cita? + +Traiga notas sobre comportamientos y desencadenantes, informes de maestros, evaluaciones previas, información del seguro y un video corto de juego o rutinas típicas si está disponible. + + Previous Post + +###### [Por qué mi hijo puede hablar pero aún tiene dificultades sociales](social-pragmatic-communication-autism) + + Next Post + +###### [Descubre consejos para el autocuidado de padres de niños con autismo](autism-family-self-care-tips) + +### Similar Blog Posts + +![Reunión entre padres e hijos con un clínico en un entorno de evaluación del autismo tranquilo y basado en el juego.](/assets/images/autism-evaluation-expectations_hero.png) + +#### [Qué esperar en la primera evaluación de autismo de su hijo](autism-evaluation-what-to-expect) + +![Consejos de autocuidado para familias con autismo - imagen destacada](/assets/images/hero-self-care-priority.webp) + +#### [Descubre consejos para el autocuidado de padres de niños con autismo](autism-family-self-care-tips) + +![niño que habla tiene problemas para socializar - imagen principal](/assets/images/talk-not-social.jpg) + +#### [Por qué mi hijo puede hablar pero aún tiene dificultades sociales](social-pragmatic-communication-autism) diff --git a/www/src/content/blog/es/autism-evaluation-what-to-expect.md b/www/src/content/blog/es/autism-evaluation-what-to-expect.md new file mode 100644 index 0000000..10d125a --- /dev/null +++ b/www/src/content/blog/es/autism-evaluation-what-to-expect.md @@ -0,0 +1,201 @@ +--- +title: "Qué esperar en la primera evaluación de autismo de su hijo" +description: "Aprenda qué sucede antes, durante y después de una evaluación de autismo en un niño. Vea a quién conocerá, cuánto tiempo lleva y cómo los resultados guían los siguientes pasos." +slug: "autism-evaluation-what-to-expect" +canonical: "https://www.azinstitute4autism.com/es/library/autism-evaluation-what-to-expect" +lang: "es" +translationKey: "autism-evaluation-what-to-expect" +featuredImage: "/assets/images/autism-evaluation-expectations_hero.png" +date: "2026-04-09" +author: "rula-diab" +category: "Library" +tags: [] +draft: false +--- +# Qué esperar en la primera evaluación de autismo de su hijo + +![Rula Diab, Directora Clínica, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) + + Rula Diab, Directora Clínica, M.Ed, BCBA, LBA + + 09 abril, 2026 + +![Reunión entre padres e hijos con un clínico en un entorno de evaluación del autismo tranquilo y basado en el juego.](/assets/images/autism-evaluation-expectations_hero.png) + +Cuando una derivación para una evaluación de autismo llega a su bandeja de entrada, puede sentirse abrumador. Puede sentirse aliviado de estar tomando acción y, al mismo tiempo, ansioso por cómo será la cita. Ambas reacciones son normales. + +Una evaluación de autismo infantil no es una prueba que su hijo apruebe o repruebe. Es una forma estructurada en la que profesionales capacitados comprenden la comunicación, la conexión social, el juego y las necesidades de apoyo de su hijo para que usted pueda avanzar con un plan. + +Una evaluación de autismo infantil generalmente incluye cuestionarios para padres, una entrevista con el cuidador y observación basada en el juego. Muchos profesionales también utilizan herramientas estandarizadas para comprender la comunicación, la interacción social, los patrones de conducta y las necesidades sensoriales. El objetivo no es aprobar o reprobar, sino obtener recomendaciones claras para apoyos en el hogar, la escuela y la terapia. + +## Qué sucede antes, durante y después de una evaluación de autismo + +La mayoría de las evaluaciones siguen el mismo ritmo básico, aunque las herramientas exactas y el cronograma pueden variar según la clínica. + +- Antes de la visita: usted completa formularios y reúne documentos. + +- Durante la visita: el profesional lo entrevista y observa a su hijo, a menudo mediante actividades basadas en el juego. + +- Después de la visita: usted recibe retroalimentación, un informe escrito y recomendaciones para los siguientes pasos. + +Tranquilidad rápida: Los profesionales buscan patrones a lo largo del tiempo y en distintos entornos. Un día tímido, un día cansado o una sala de espera ruidosa no “arruinan” una evaluación. + +## Detección vs. evaluación vs. diagnóstico + +Los padres suelen escuchar estas palabras juntas. Las diferencias son importantes porque explican por qué su pediatra puede comenzar con una prueba de detección y luego derivarlo para una evaluación completa. + + Término + Qué significa + Ejemplos comunes + + Detección + Una revisión breve que indica si se recomienda una evaluación más profunda + Cuestionarios para padres utilizados en visitas de rutina, como el M-CHAT-R/F (consulte la guía del CDC ) + + Evaluación + Una valoración integral que reúne suficiente información para responder preguntas clave + Entrevista, observación y, en ocasiones, herramientas estandarizadas + + Diagnóstico + Una determinación clínica formal basada en criterios diagnósticos + Un informe diagnóstico escrito que respalda el acceso a servicios + +Si su hijo recientemente tuvo una prueba de detección, recuerde que un resultado positivo es una razón para aprender más, no una conclusión. + +## Documentación y qué llevar + +Los cuestionarios pueden sentirse largos, especialmente si ya está cansado. Son extensos porque ayudan al evaluador a comprender cómo es su hijo en un día promedio, no solo en un entorno clínico. + +Lleve lo que tenga y no se preocupe por ser “perfecto”. Los elementos útiles suelen incluir: + +- evaluaciones previas (lenguaje, terapia ocupacional, evaluaciones escolares) + +- notas de la escuela o preescolar, incluyendo un IEP o plan 504 si tiene uno + +- historial médico relevante (sueño, preocupaciones auditivas, problemas gastrointestinales, convulsiones, enfermedades importantes) + +- objetos de comodidad para su hijo (juguete favorito, mordedor sensorial, audífonos, merienda) + +- sus 2–3 preguntas principales, escritas + +Después de reunir los materiales, elija un objetivo sencillo: escriba aquello sobre lo que más desea claridad. Eso ayuda a que la conversación de retroalimentación se mantenga enfocada en los siguientes pasos para su familia. + +## A quién podría conocer + +Un diagnóstico formal es realizado por un profesional calificado y con licencia. Muchas evaluaciones son dirigidas por un psicólogo o un pediatra del desarrollo y, en ocasiones, pueden involucrar a un equipo más amplio según las necesidades de su hijo. + +También puede interactuar con especialistas que ayudan a aclarar preguntas sobre lenguaje, aspectos sensoriales, habilidades motoras, aprendizaje o conducta, como patólogos del habla y lenguaje, terapeutas ocupacionales o profesionales del comportamiento. Si no está seguro de por qué participa un determinado profesional, está bien preguntar qué pregunta específica están tratando de responder. + +## Qué hará su hijo durante la evaluación + +Para los niños pequeños, gran parte de la cita se parece al juego. El profesional observa cómo su hijo se comunica, inicia, responde y se autorregula tanto en momentos estructurados como no estructurados. + +Es posible que inviten a su hijo a: + +- jugar con juguetes y participar en juego funcional o imaginativo + +- probar juegos sociales sencillos (turnarse, imitación, atención compartida) + +- hacer transiciones entre actividades + +- mostrar cómo pide ayuda o comparte intereses + +- participar en tareas apropiadas para su edad + +Algunos profesionales utilizan herramientas estandarizadas que incluyen indicaciones estructuradas. Estas herramientas no son “exámenes” en el sentido escolar. Ayudan a organizar las observaciones para que el profesional pueda explicar los resultados con claridad. Si lo desea, puede preguntar qué herramientas se utilizan y qué evalúan. + +Si su hijo utiliza CAA , gestos o apoyos visuales: lleve aquello que use con mayor frecuencia. + +## Cuánto tiempo toma + +Algunas evaluaciones se realizan en una sola visita más larga, mientras que otras se dividen en varias citas. La duración está influenciada por la edad de su hijo, las preguntas que se están respondiendo y si se necesita realizar pruebas adicionales. + +Haga a la clínica dos preguntas prácticas desde el principio: cuántas citas deben esperarse y cuándo debería recibir el informe escrito. + +## Cómo se explican los resultados y qué sucede después + +Una evaluación sólida termina con claridad. Usted debe comprender lo que el profesional observó, qué significan esas observaciones y qué hacer a continuación. + +Por lo general, tendrá una conversación de retroalimentación y recibirá un informe escrito que podrá compartir con su pediatra, el equipo escolar y los proveedores de terapia. Las recomendaciones pueden incluir apoyos como terapia del habla, terapia ocupacional, evaluaciones escolares, intervención temprana o terapia ABA, según el perfil y las necesidades de su hijo. + +Si se recomienda ABA, puede resultarle útil leer cómo AIA aborda la planificación individualizada en "[Planes Individualizados de Terapia ABA](../../library/individualized-aba-therapy)" y cómo entendemos la colaboración en "[Un Modelo Integrado de ABA](../../library/integrated-aba-model-announcement)". + +## Cómo preparar a su hijo para un día más tranquilo + +La preparación no tiene que ser complicada. Los apoyos sencillos suelen ayudar más que los grandes discursos. + +Considere: + +- usar una historia social breve o una declaración de "primero, después" (Primero entramos, después jugamos) + +- incluir tiempo adicional para las transiciones + +- llevar apoyos sensoriales y meriendas preferidas + +- preguntar por una opción de sala de espera más tranquila si su hijo es sensible al ruido + +Si está buscando una herramienta de detección a la que su pediatra pueda hacer referencia, el sitio oficial de M-CHAT-R/F está aquí: [M-CHAT-R/F](https://www.mchatscreen.com/). Una prueba de detección no es un diagnóstico, pero puede ayudar a orientar los siguientes pasos. + +## Si está en Arizona, AIA puede ayudar con los siguientes pasos + +Si aún está tratando de decidir por dónde comenzar, nuestra guía enfocada en Arizona, "[Evaluación y Diagnóstico de Autismo en Arizona: Una Guía Paso a Paso para Padres](../../library/autism-evaluation-diagnosis-arizona-parent-guide)," explica quién puede diagnosticar, qué esperar y cómo dar los primeros pasos con menos abrumación. + +Después de una evaluación, las familias a menudo desean ayuda para convertir las recomendaciones en un plan real. Si está explorando servicios de ABA, puede revisar los pasos de admisión de AIA en "[Guía Paso a Paso para Comenzar Terapia ABA](../../aba-therapy-intake-process)." Si prefiere hablar primero, puede [programar una consulta gratuita](../../client-consultation) con nuestro equipo. + + Preguntas Frecuentes + +## Ayuda con las expectativas de la primera evaluación de autismo + +### ¿En qué se diferencia un cribado de autismo de una evaluación de autismo? + +Una evaluación es una revisión breve que identifica posibles rasgos de autismo e indica si se recomienda una evaluación completa. Una evaluación es un proceso integral que incluye entrevistas y observación, y puede incluir herramientas estandarizadas, para responder si se cumplen los criterios de autismo y qué apoyos se recomiendan. + +### ¿Quién puede diagnosticar el autismo en Arizona? + +El autismo suele ser diagnosticado por psicólogos licenciados con formación en evaluación del autismo, pediatras del desarrollo y, en algunos casos, neurólogos o psiquiatras infantiles. Su pediatra puede ayudar con las derivaciones. + +### ¿Qué debo llevar a la cita de evaluación? + +Traiga evaluaciones previas, notas escolares (IEP o 504 si corresponde), una lista de preguntas y artículos de consuelo para su hijo. Si ayuda, traiga un breve video de juego o rutinas típicas en casa. + +### ¿Cuánto tiempo se tarda en obtener resultados? + +Algunas clínicas comparten impresiones el mismo día, pero muchas programan la retroalimentación después de que el médico revisa toda la información. Pregunta de antemano cuándo estará listo el informe escrito. + +### ¿Se le pedirá a mi hijo que hable o siga instrucciones? + +El clínico adapta las expectativas al nivel de desarrollo de su hijo. Muchas actividades se basan en el juego y se centran en la comunicación en cualquier forma que utilice su hijo. + +### ¿Se puede realizar una evaluación por telemedicina? + +Las entrevistas y cuestionarios para cuidadores pueden realizarse de forma remota. La observación directa suele ser mejor en persona para los niños más pequeños, pero las prácticas varían. Pregunta qué se recomienda para tu hijo. + +### ¿Qué pasa si mi hijo no cumple los criterios para el autismo? + +Aún así deberías recibir una explicación clara y recomendaciones. A veces, la evaluación señala otra necesidad, como un retraso en el lenguaje, ansiedad, TDAH o un perfil de desarrollo diferente. + +### ¿Necesitamos un diagnóstico para empezar la terapia ABA? + +El seguro comúnmente requiere un diagnóstico formal y documentación para autorizar los servicios de ABA. AIA puede ayudar a las familias de Arizona a comprender los próximos pasos para la admisión y la cobertura. + + Previous Post + +###### [Guía de Autismo para Padres y Cuidadores](parents-guide-to-autism-and-aba) + + Next Post + +###### [Mejorando la generalización para un impacto más amplio en el autismo](enhancing-generalization-skills) + +### Similar Blog Posts + +![Pediatra realizando una evaluación de autismo a un niño pequeño en una clínica de Arizona](/assets/images/autism_evaluation_arizona_hero.jpg) + +#### [Evaluación del Autismo en Arizona: Guía Paso a Paso para Padres](autism-evaluation-diagnosis-arizona-parent-guide) + +![Niño tomando una pausa de regulación emocional en un carrito de compras - imagen principal](/assets/images/child-shopping-cart-tired-cranky.jpg) + +#### [Por qué la regulación emocional debería ser el corazón de cada programa de ABA](emotional-regulation-aba) + +![Parent and autistic child using visual supports, structured play, and calm routines together](/assets/images/family-guide-to-autism-aba-at-home_hero.png) + +#### [Guía de Autismo para Padres y Cuidadores](parents-guide-to-autism-and-aba) diff --git a/www/src/content/blog/es/autism-family-self-care-tips.md b/www/src/content/blog/es/autism-family-self-care-tips.md new file mode 100644 index 0000000..1f2d7fc --- /dev/null +++ b/www/src/content/blog/es/autism-family-self-care-tips.md @@ -0,0 +1,73 @@ +--- +title: "Descubre consejos para el autocuidado de padres de niños con autismo" +description: "Toma las riendas de tu bienestar como cuidador de una persona con autismo. Explora estrategias sencillas para reducir el estrés, mejorar la salud mental y prosperar en tu función." +slug: "autism-family-self-care-tips" +canonical: "https://www.azinstitute4autism.com/es/library/autism-family-self-care-tips" +lang: "es" +translationKey: "autism-family-self-care-tips" +featuredImage: "/assets/images/hero-self-care-priority.webp" +date: "2026-04-09" +author: "rula-diab" +category: "Library" +tags: [] +draft: false +--- +# Descubre consejos para el autocuidado de padres de niños con autismo + +![Rula Diab, Directora Clínica, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) + + Rula Diab, Directora Clínica, M.Ed, BCBA, LBA + + 09 abril, 2026 + +![Consejos de autocuidado para familias con autismo - imagen destacada](/assets/images/hero-self-care-priority.webp) + +Como [clínico](../../team) profundamente conectado con la comunidad del [autism](https://www.psychiatry.org/patients-families/autism/what-is-autism-spectrum-disorder), veo de primera mano la dedicación y resiliencia que los padres de niños con espectro autista demuestran cada día. Tu papel es invaluable, pero también requiere una inmensa energía emocional y física. Si bien todo padre quiere dar lo mejor de sí, esta dedicación constante a menudo puede llevar al agotamiento o a sentirse abrumado. + +Una cosa que he observado, una y otra vez, es la importancia del autocuidado, no solo para tu propio bienestar, sino también para el beneficio de tu hijo. Cuando te tomas tiempo para recargarte, puedes abordar los desafíos con más paciencia, creatividad y resiliencia. Eres el mayor defensor y sistema de apoyo de tu hijo, pero para ser la mejor versión de ti mismo, también debes cuidar tus propias necesidades. + +## Por qué el autocuidado es importante para las familias con autismo + +Criar a un niño con autismo conlleva alegrías y desafíos únicos. Desde navegar sesiones de terapia hasta gestionar rutinas diarias, es fácil poner tus necesidades en último lugar. Sin embargo, cuando hay dedicación constante y se descuida el autocuidado, puede llevar al agotamiento, el estrés y la fatiga, lo que en última instancia puede afectar su capacidad para brindar el nivel de atención que su hijo necesita. + +### Maneras sencillas de practicar el autocuidado + +El [autocuidado](https://www.autismparentingmagazine.com/ways-reducing-stress-gain-clarity/) se trata de encontrar pequeños momentos en tu día para refrescarte y concentrarte en tu salud mental, emocional y física. Aquí hay algunas sugerencias que pueden ayudar: + +- Prioriza los pequeños descansos: Incluso los descansos cortos a lo largo del día pueden marcar la diferencia. Ya sea sentarse en una habitación tranquila durante cinco minutos o salir a tomar aire fresco, tomarse un tiempo para hacer una pausa ayuda a despejar la mente y restablecer la energía. Incluso unos pocos minutos de atención plena cada día pueden marcar una diferencia significativa en cómo manejas las exigencias de la crianza. + +- Construye tu sistema de apoyo: Rodéate de amigos, familiares o grupos de apoyo que comprendan tu viaje. Hablar con otros padres de niños con autismo puede brindar consuelo y tranquilidad, y recordarte que no estás solo. Compartir experiencias y consejos puede aligerar la carga emocional. + +- Pide ayuda cuando la necesites: No dudes en pedir ayuda. Ya sea coordinando con terapeutas, utilizando [cuidados de relevo](https://www.helpguide.org/family/caregiving/respite-care) o pidiendo ayuda a familiares, confiar en tu red te permite tener momentos para ti sin sentirte culpable. Tomar un descanso es necesario para mantener tu propia salud. + +- Haz algo que te guste: Participa en una actividad que te traiga alegría o relajación. Ya sea leer, jardinería o hacer ejercicio, cultivar tus propios pasatiempos te dará un respiro mental del cuidado y te recordará que tu felicidad importa. + +- Celebra las pequeñas victorias: Tómate tiempo para reconocer las pequeñas victorias, ya sea una nueva habilidad que tu hijo dominó o un momento familiar tranquilo. Celebrar estos éxitos, por pequeños que sean, ayuda a generar positividad y te motiva para el futuro. + +## Recuerda: Tú también mereces cuidado + +En el [Instituto de Autismo de Arizona](../../index), entendemos que cuidar a un niño con autismo es un viaje que requiere equilibrio. Creemos que el bienestar de los padres de niños con autismo es tan importante como las terapias que brindamos a los niños. Eres el mayor defensor de tu hijo y la fuente de apoyo más constante. Para seguir siendo ese pilar de fortaleza, es esencial priorizar tu salud, felicidad y paz mental. + +Estamos aquí para apoyar, no solo el desarrollo de su hijo, sino también su viaje como padres durante las sesiones de consulta para padres. Si alguna vez te sientes abrumado, debes saber que no estás solo. Apóyate en tu red de apoyo, practica el autocuidado y tómalo un día a la vez. + + Previous Post + +###### [Evaluación del Autismo en Arizona: Guía Paso a Paso para Padres](autism-evaluation-diagnosis-arizona-parent-guide) + + Next Post + +###### [Tarjetas Primero/Después : Empoderando las transiciones para niños autistas](first-then-cards-autism-transitions) + +### Similar Blog Posts + +![Reunión entre padres e hijos con un clínico en un entorno de evaluación del autismo tranquilo y basado en el juego.](/assets/images/autism-evaluation-expectations_hero.png) + +#### [Qué esperar en la primera evaluación de autismo de su hijo](autism-evaluation-what-to-expect) + +![Pediatra realizando una evaluación de autismo a un niño pequeño en una clínica de Arizona](/assets/images/autism_evaluation_arizona_hero.jpg) + +#### [Evaluación del Autismo en Arizona: Guía Paso a Paso para Padres](autism-evaluation-diagnosis-arizona-parent-guide) + +![Parent and autistic child using visual supports, structured play, and calm routines together](/assets/images/family-guide-to-autism-aba-at-home_hero.png) + +#### [Guía de Autismo para Padres y Cuidadores](parents-guide-to-autism-and-aba) diff --git a/www/src/content/blog/es/autism-self-advocacy-skills-aba.md b/www/src/content/blog/es/autism-self-advocacy-skills-aba.md new file mode 100644 index 0000000..8b68f6b --- /dev/null +++ b/www/src/content/blog/es/autism-self-advocacy-skills-aba.md @@ -0,0 +1,103 @@ +--- +title: "Desbloqueando la independencia para niños con autismo a través de la autodefensa ABA" +description: "Empodere a su hijo con terapia ABA individualizada en el Instituto de Autismo de Arizona. ¡Reserva una consulta gratuita y comienza hoy mismo la atención personalizada para el autismo!" +slug: "autism-self-advocacy-skills-aba" +canonical: "https://www.azinstitute4autism.com/es/library/autism-self-advocacy-skills-aba" +lang: "es" +translationKey: "autism-self-advocacy-skills-aba" +featuredImage: "/assets/images/hero-teach-self-advocacy.webp" +date: "2026-04-09" +author: "rula-diab" +category: "Library" +tags: [] +draft: false +--- +# Guía para enseñar la autodefensa en el ABA + +![Rula Diab, Directora Clínica, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) + + Rula Diab, Directora Clínica, M.Ed, BCBA, LBA + + 09 abril, 2026 + +![Habilidades de autodefensa para el autismo a través del ABA - imagen destacada](/assets/images/hero-teach-self-advocacy.webp) + +La autodefensa es una habilidad esencial para la vida que permite a las personas expresar sus pensamientos, necesidades y preferencias. Para los niños con autismo o discapacidades del desarrollo, aprender a defenderse a sí mismos puede fomentar la independencia, mejorar las relaciones y aumentar su calidad de vida en general. A través del Análisis de Comportamiento Aplicado (ABA), la autodefensa se puede enseñar y reforzar sistemáticamente, proporcionando a los niños las herramientas para navegar por su mundo con confianza. + +## ¿Qué es la autodefensa? + +La autodefensa implica: + +- Reconocer las propias necesidades y derechos. + +- Comunicar eficazmente esas necesidades a los demás. + +- Tomar decisiones que se alineen con las preferencias y metas personales. + +Aplicando esta habilidad a niños con autismo, la autodefensa podría verse así: + +- Solicitar un descanso cuando te sientes abrumado. + +- Elegir entre actividades o artículos. + +- Decir "no" a algo que no les gusta o con lo que no se sienten cómodos. + +Enseñar la autodefensa empodera a los niños para: + +- Fomentar la independencia : Reducir la dependencia de otros para interpretar sus necesidades. + +- Mejorar las habilidades de comunicación : Fomentar una comunicación clara e intencional. + +- Aumentar la autoestima : Fomentar la confianza en su capacidad para expresarse. + +- Promover la seguridad : Ayudar a los niños a articular cuándo se sienten inseguros o necesitan ayuda. + +## Cómo el análisis de comportamiento aplicado (ABA) enseña la autodefensa + +La terapia ABA proporciona un enfoque estructurado e individualizado para enseñar habilidades de autodefensa. A continuación se presentan algunas estrategias clave utilizadas por los profesionales del análisis de comportamiento aplicado (ABA): + +- Entrenamiento de Comunicación Funcional (ECF) : Enseña a los niños a usar la comunicación para expresar sus necesidades en lugar de recurrir a comportamientos desafiantes. Ejemplo: En lugar de tener una rabieta cuando se siente abrumado, un niño aprende a decir: "Necesito un descanso" o a usar una tarjeta de descanso. + +- Oportunidades para tomar decisiones : Empodera a los niños para que tomen decisiones en sus rutinas diarias. Ejemplo: Ofrecer opciones como "¿Quieres trabajar con bloques o jugar con rompecabezas?" + +- Solicitud de enseñanza (manding) : Se centra en enseñar a los niños a pedir lo que necesitan o quieren. Por ejemplo, usar frases como "Necesito ayuda" o presionar un botón en un dispositivo de comunicación aumentativa. + +- Escenarios de juego de rol : Prepara a los niños para situaciones de la vida real practicando habilidades de autodefensa en un entorno controlado. + +- Reforzando los intentos de autodefensa : Fomenta el comportamiento recompensando los intentos apropiados de autoexpresión. + +Los padres desempeñan un papel fundamental en el refuerzo de las habilidades de autodefensa aprendidas en la terapia ABA. + +## Consejos para cuidadores + +- Fomenta la comunicación : Anima a tu hijo a expresar sus necesidades en lugar de anticiparlas. + +- Celebra el éxito : Reconozca y recompense incluso los pequeños intentos de autodefensa. + +- Sé paciente : Aprender a autogestionarse lleva tiempo y práctica. + +- Defensa del modelo : Demuestre cómo aboga por sus propias necesidades, proporcionando un ejemplo del mundo real. + +Enseñar la autodefensa a través del análisis de comportamiento aplicado (ABA) empodera a los niños para que se hagan cargo de sus necesidades, preferencias y elecciones. Al fomentar la independencia y mejorar las habilidades de comunicación, el análisis de comportamiento aplicado (ABA) ayuda a los niños a desenvolverse en sus entornos con confianza y dignidad. Ya sea en sesiones de terapia o en casa, la autodefensa es un regalo que equipa a los niños para el éxito de por vida. + + Previous Post + +###### [Tarjetas Primero/Después : Empoderando las transiciones para niños autistas](first-then-cards-autism-transitions) + + Next Post + +###### [Habilidades de funcionamiento ejecutivo y autismo](executive-functioning-skills-autism) + +### Similar Blog Posts + +![Consejos de autocuidado para familias con autismo - imagen destacada](/assets/images/hero-self-care-priority.webp) + +#### [Descubre consejos para el autocuidado de padres de niños con autismo](autism-family-self-care-tips) + +![estrategias para el desarrollo de habilidades de funcionamiento ejecutivo en niños autistas - imagen destacada](/assets/images/hero-executive-functioning-skills-autism.webp) + +#### [Habilidades de funcionamiento ejecutivo y autismo](executive-functioning-skills-autism) + +![Reunión entre padres e hijos con un clínico en un entorno de evaluación del autismo tranquilo y basado en el juego.](/assets/images/autism-evaluation-expectations_hero.png) + +#### [Qué esperar en la primera evaluación de autismo de su hijo](autism-evaluation-what-to-expect) diff --git a/www/src/content/blog/es/emotional-regulation-aba.md b/www/src/content/blog/es/emotional-regulation-aba.md new file mode 100644 index 0000000..ab4a6fb --- /dev/null +++ b/www/src/content/blog/es/emotional-regulation-aba.md @@ -0,0 +1,242 @@ +--- +title: "Por qué la regulación emocional debería ser el corazón de cada programa de ABA" +description: "Por qué la regulación emocional debe guiar la terapia ABA. Conozca pasos de corregulación, herramientas de afrontamiento y consejos para familias del Instituto de Autismo de Arizona." +slug: "emotional-regulation-aba" +canonical: "https://www.azinstitute4autism.com/es/library/emotional-regulation-aba" +lang: "es" +translationKey: "emotional-regulation-aba" +featuredImage: "/assets/images/child-shopping-cart-tired-cranky.jpg" +date: "2025-11-01" +author: "rula-diab" +category: "Library" +tags: [] +draft: false +--- +# Por qué la regulación emocional debería ser el corazón de cada programa de ABA + +![Rula Diab, Directora Clínica, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) + + Rula Diab, Directora Clínica, M.Ed, BCBA, LBA + + 01 noviembre, 2025 + +![Niño tomando una pausa de regulación emocional en un carrito de compras - imagen principal](/assets/images/child-shopping-cart-tired-cranky.jpg) + +El progreso en el Análisis de Conducta Aplicado (ABA) suele mostrarse en gráficas claras y metas alcanzadas. Debajo de cada dato hay algo más humano: la emoción. Cuando un niño aprende a comprender y manejar sus sentimientos, todo lo demás se vuelve más fácil. La concentración aumenta, la comunicación se abre y la vida diaria se siente más segura y predecible. + +Idea clave: La regulación emocional no es un "extra." Es el motor que impulsa el aprendizaje, la independencia y la conexión. + +[Reserva una consulta gratuita](../../client-consultation) para hablar con un Defensor del Cliente sobre los objetivos de tu hijo y cómo nuestro equipo puede ayudar. + +## Lo que realmente significa la regulación emocional + +La regulación emocional es la capacidad de notar las señales corporales y los sentimientos, hacer una pausa y responder con una estrategia útil. Para muchos niños autistas, esto es difícil debido a las sensibilidades sensoriales, las diferencias en la comunicación o la ansiedad durante un cambio inesperado. En lenguaje sencillo, la regulación ayuda a un niño a pasar de "no puedo manejar esto" a "sé qué hacer ahora mismo." + +### Por qué es más importante que el cumplimiento + +Un niño puede seguir una indicación durante una sesión tranquila. Si la frustración aumenta en el supermercado, ese aviso puede no ayudar. + +La regulación emocional cierra la brecha entre el comportamiento aprendido en terapia y el comportamiento utilizado en la vida real. Convierte el modo de supervivencia en modo de aprendizaje, que es donde ocurre el crecimiento. + +Lecturas relacionadas: + +- [Enhancing generalization skills](../../library/enhancing-generalization-skills) + +- [Proactive and reactive ABA strategies](../../library/proactive-reactive-aba-strategies-guide) + +## De la Conformidad a la Conexión + +Los niños aprenden mejor cuando se sienten seguros y comprendidos. Prueba guiones simples y constantes que nombren el sentimiento y ofrezcan una opción. + +- "Veo que esto es difícil. Respiremos juntos." + +- "¿Quieres ayuda o un descanso?" + +- "Usaste tus palabras. Buen trabajo pidiendo ayuda." + +Así es como la empatía, la confianza y la habilidad crecen al mismo tiempo. Si deseas profundizar en el aspecto clínico, explora nuestra visión general de [la Terapia ABA en AIA](../../aba-therapy). + +## Cómo AIA Enseña la Regulación Emocional + +Diseñamos planes individualizados, que afirman la neurodiversidad y son prácticos. También enseñamos a las familias a usar el mismo lenguaje y las mismas herramientas en casa para que su hijo o hija tenga una experiencia coherente. Conozca más sobre nuestro [proceso de admisión](../../aba-therapy-intake-process). + +### Paso 1: Etiqueta la Emoción + +Usa espejos, imágenes o un gráfico simple. Mantén las etiquetas cortas. + +- "Feliz" + +- "Frustrado" + +- "Preocupado" + +- "Cansado" + +### Paso 2: Co-regula primero + +Los adultos modelan una respiración tranquila, una voz suave y un cuerpo lento. Somos el ancla firme que el niño puede tomar prestada hasta que pueda estabilizarse por sí mismo. + +### Paso 3: Construir una "Rueda de Afrontamiento" + +Ofrece dos o tres opciones al principio. Practica durante momentos tranquilos. + +- Respiración abdominal + +- Auriculares con cancelación de ruido + +- Tarjeta de "Descanso" o tarjeta de "Ayuda, por favor" + +- Apretando un juguete antiestrés + +Helpful tool: Try our guide to [First/Then cards for smoother transitions](../../library/first-then-cards-autism-transitions). + +### Paso 4: Reforzar la autorregulación + +Atrápalo en el momento. + +- "Pediste un descanso. Eso mantuvo tu cuerpo a salvo." + +- "Respiraste y lo intentaste de nuevo. Eso es un fuerte autocontrol." + +### Paso 5: Involucrar a las Familias Todos los Días + +Los padres y cuidadores son los primeros co-reguladores de un niño. Te guiamos con guiones, visuales y rutinas para mantener el mismo enfoque en casa y en la comunidad. + +## Referencia Rápida: Desencadenantes y Herramientas + + Desencadenante común en la vida diaria + Lo que el niño podría sentir + Soportes simples alineados con ABA + Qué practicar más tarde + + Habitación o tienda ruidosa + Cuerpo abrumado y tenso + Auriculares, "rincón tranquilo," cuenta hasta diez + Aumenta gradualmente el tiempo en el espacio con descansos. + + Cambio en la rutina + Preocupado, atrapado + Horario visual, tarjeta Primero/Luego + Previsualizar cambios la noche anterior y la mañana de + + Challenged task + Frustrado, evasivo + Tarjeta de descanso, guion de solicitud de ayuda + Aprendizaje sin errores, pequeños pasos, elogio por el esfuerzo + + Larga espera + Bored, restless + "Kit de espera" con juguetes y un juego corto + Espera cronometrada con una recompensa por esperar con éxito + +Consejo para las familias de Arizona: Empaque un pequeño kit de espera para los mandados en el calor de Phoenix. Incluye una botella de agua plegable, un paño fresco y una actividad relajante. Mantenlo en el coche todo el año. + +## Donde la Regulación se Encuentra con el Aprendizaje + +Una vez que los niños tienen estrategias a las que recurrir, el "cerebro de aprendizaje" puede hacer su trabajo. Verás: + +- Mejor atención a las instrucciones + +- Más intentos de comunicación + +- Participación más fluida con los compañeros + +- Recuperación más rápida después del estrés + +Si las habilidades de funcionamiento ejecutivo como la planificación y el pensamiento flexible también son un objetivo, lea nuestro artículo en la biblioteca sobre [Habilidades de Funcionamiento Ejecutivo y Autismo](../../library/executive-functioning-skills-autism). + +## Cómo Seguimos el Progreso + +ABA se basa en datos, y los objetivos de regulación se pueden medir claramente. + +- Uso de estrategias: Con qué frecuencia el niño utiliza una estrategia adecuada sin necesidad de un aviso + +- Tiempo de recuperación: Minutos desde el enfado hasta estar listo para aprender + +- Nivel de apoyo: Desde un modelo de adulto completo hasta el uso independiente + +- Generalización: Uso en el hogar, clínica, escuela y comunidad + +Verás estas métricas en tu plan de atención y en las revisiones de progreso. Para las elecciones de métodos dentro de las sesiones, consulte nuestra guía sobre el [Entrenamiento de Ensayos Discretos (DTT) y el Entrenamiento en el Entorno Natural (NET)](../../library/aba-therapy-dtt-net-guide). + +## Configuración del hogar en dos semanas + +Semana 1: Construir el sistema + +- Elige dos sentimientos para trabajar. + +- Coloca un horario visual en la cocina. + +- Pega una tarjeta de "descanso" cerca del lugar más desafiante en casa. + +- Practica la respiración antes de dormir durante un minuto. + +Semana 2: Usar y reforzar + +- Sugiere una estrategia una vez al día durante un desafío leve. + +- Elogia el intento primero, no el resultado perfecto + +- Anota los logros en la nevera para que todos puedan ver el progreso. + +¿Quieres ayuda para diseñar tu plan? [Programa una consulta gratis](../../client-consultation). Atendemos a familias en toda el área metropolitana de Phoenix y ofrecemos opciones en el centro. + +### Sigue aprendiendo con AIA + +- [Beneficios de la terapia ABA](../../library/aba-therapy-benefits) + +- [Planes de Terapia ABA Individualizados](../../library/individualized-aba-therapy) + +- [Construcción de relaciones en ABA](../../library/autism-therapy-rapport-strategies) + +¿Listo para dar el siguiente paso? Visita nuestra página de [Terapia ABA](../../aba-therapy) o comienza el [Proceso de Admisión del Aprendiz](../../aba-therapy-intake-process). + + Preguntas frecuentes + +## Consejos para la Regulación Emocional + +### ¿Qué es la regulación emocional en la terapia ABA? + +Es un conjunto de habilidades que ayudan a un niño a notar sus sentimientos, hacer una pausa y elegir una respuesta saludable. Enseñamos y practicamos estas habilidades en diferentes entornos hasta que se vuelven automáticas. + +### ¿Cómo se diferencia la co-regulación de la autorregulación? + +La co-regulación utiliza la presencia tranquila de un adulto para guiar al niño en el momento. La autorregulación es el objetivo a largo plazo donde el niño utiliza las mismas herramientas de manera independiente. + +### ¿Por qué centrarse en las emociones en lugar de en el cumplimiento? + +El cumplimiento puede parecer bueno brevemente. La regulación emocional produce ganancias duraderas que se generalizan a la escuela, las tiendas y el juego. También fortalece la confianza y la comunicación. + +### ¿Qué herramientas son las más útiles en casa? + +Comienza con un horario visual, tarjetas de Primero/Luego, un rincón tranquilo y un descanso de movimiento que al niño le guste. Mantén el lenguaje breve. Usa los mismos guiones que usa tu equipo. + +### ¿Cómo medimos el progreso? + +Seguimos el uso de estrategias independientes, el tiempo de recuperación y cuánta ayuda de un adulto se necesita. El objetivo es un progreso constante hacia la independencia y la generalización. + +### ¿Cuándo deberíamos pedir ayuda adicional? + +Comuníquese con nosotros si los sentimientos intensos ocurren con más frecuencia, si la recuperación tarda más o si las actividades diarias se vuelven más difíciles. Nuestro equipo puede desarrollar un plan individualizado que satisfaga las necesidades de su hijo. + + Previous Post + +###### [Ya se inscriben alumnos: Academia Preparatoria AIA para niños de 2 a 6 años](aba-school-readiness-arizona) + + Next Post + +###### [Por qué mi hijo puede hablar pero aún tiene dificultades sociales](social-pragmatic-communication-autism) + +### Similar Blog Posts + +![Reunión entre padres e hijos con un clínico en un entorno de evaluación del autismo tranquilo y basado en el juego.](/assets/images/autism-evaluation-expectations_hero.png) + +#### [Qué esperar en la primera evaluación de autismo de su hijo](autism-evaluation-what-to-expect) + +![niño que habla tiene problemas para socializar - imagen principal](/assets/images/talk-not-social.jpg) + +#### [Por qué mi hijo puede hablar pero aún tiene dificultades sociales](social-pragmatic-communication-autism) + +![Consejos de autocuidado para familias con autismo - imagen destacada](/assets/images/hero-self-care-priority.webp) + +#### [Descubre consejos para el autocuidado de padres de niños con autismo](autism-family-self-care-tips) diff --git a/www/src/content/blog/es/enhancing-generalization-skills.md b/www/src/content/blog/es/enhancing-generalization-skills.md new file mode 100644 index 0000000..604c913 --- /dev/null +++ b/www/src/content/blog/es/enhancing-generalization-skills.md @@ -0,0 +1,71 @@ +--- +title: "Mejorando la generalización para un impacto más amplio en el autismo" +description: "Mejorar la generalización en el autismo implica generalizaciones de estímulos, respuestas y situaciones, asegurando que los comportamientos aprendidos se apliquen en diversas situaciones." +slug: "enhancing-generalization-skills" +canonical: "https://www.azinstitute4autism.com/es/library/enhancing-generalization-skills" +lang: "es" +translationKey: "enhancing-generalization-skills" +featuredImage: "/assets/images/hero-enhancing-generalization-skills_800x.jpg" +date: "2026-04-09" +author: "rula-diab" +category: "Library" +tags: [] +draft: false +--- +# Mejorando la generalización para un impacto más amplio en el autismo + +![Rula Diab, Directora Clínica, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) + + Rula Diab, Directora Clínica, M.Ed, BCBA, LBA + + 09 abril, 2026 + +![Mejorar las habilidades de generalización en niños con autismo](/assets/images/hero-enhancing-generalization-skills_800x.jpg) + +La generalización es un aspecto crucial del aprendizaje, ya que garantiza que las habilidades y los comportamientos se extiendan más allá del entorno de aprendizaje inicial. Sin generalización, los individuos pueden tener dificultades para aplicar lo que han aprendido a nuevas situaciones, limitando la efectividad de su educación o terapia. + +En la ciencia del comportamiento, la generalización se refiere al proceso por el cual una conducta aprendida se aplica a diferentes estímulos, respuestas o entornos. + +## Hay tres tipos de generalización + +- Generalización del estímulo: Un comportamiento aprendido se extiende a situaciones o estímulos similares, como un niño que usa palabras para pedir diferentes juguetes después de aprender a hacerlo con un juguete específico. + +- Generalización de la respuesta: Un comportamiento reforzado conduce a un aumento de comportamientos similares, como un niño que usa "por favor" para diferentes solicitudes después de ser reforzado por hacerlo cuando pide un juguete. + +- Escenario/Situación Generalización: Un comportamiento reforzado en un entorno se vuelve probable en otros entornos, como un niño que se lava las manos antes de las comidas en casa después de ser reforzado por hacerlo en la escuela. + +Comprender los tres tipos principales de generalización (estímulo, respuesta y entorno/situación) ayuda a educadores, terapeutas y cuidadores a fomentar un desarrollo de habilidades significativo y duradero. + +## Estrategias para lograr habilidades de generalización + +- Entrenamiento con múltiples ejemplos: Proporciona ejemplos variados para fomentar la generalización. + +- Usando Reforzadores Naturales: Fomenta que el cambio de comportamiento ocurra en situaciones de la vida real. + +- Enseñar de forma flexible: Alterar el método de enseñanza para promover la generalización. Pueden ser necesarias indicaciones iniciales, que deben reducirse gradualmente a medida que el niño comience a realizar el comportamiento de forma independiente. + +- La consistencia es vital para una generalización efectiva. Si bien puede llevar tiempo, con práctica y refuerzo continuos, las habilidades aprendidas durante la terapia se pueden aplicar en diversos entornos, haciendo que la terapia sea más efectiva y beneficiosa. + +## ¿Buscas más información? + +Para más información sobre los servicios ofrecidos por AIA, o para reservar su consulta gratuita, visítenos en [https://www.azinstitute4autism.com](../../index), contáctenos en [(480) 687-7099](tel:+14806877099), o correo electrónico [info@azinstitute4autism.com](mailto:info@azinstitute4autism.com). + +Si buscas más consejos, ¡consulta las [publicaciones mensuales de nuestro blog](../../library) de la directora clínica de AIA, Rula Diab! + + Previous Post + +###### [Qué esperar en la primera evaluación de autismo de su hijo](autism-evaluation-what-to-expect) + +### Similar Blog Posts + +![Reunión entre padres e hijos con un clínico en un entorno de evaluación del autismo tranquilo y basado en el juego.](/assets/images/autism-evaluation-expectations_hero.png) + +#### [Qué esperar en la primera evaluación de autismo de su hijo](autism-evaluation-what-to-expect) + +![Pediatra realizando una evaluación de autismo a un niño pequeño en una clínica de Arizona](/assets/images/autism_evaluation_arizona_hero.jpg) + +#### [Evaluación del Autismo en Arizona: Guía Paso a Paso para Padres](autism-evaluation-diagnosis-arizona-parent-guide) + +![niño que habla tiene problemas para socializar - imagen principal](/assets/images/talk-not-social.jpg) + +#### [Por qué mi hijo puede hablar pero aún tiene dificultades sociales](social-pragmatic-communication-autism) diff --git a/www/src/content/blog/es/executive-functioning-skills-autism.md b/www/src/content/blog/es/executive-functioning-skills-autism.md new file mode 100644 index 0000000..31e93c5 --- /dev/null +++ b/www/src/content/blog/es/executive-functioning-skills-autism.md @@ -0,0 +1,155 @@ +--- +title: "Habilidades de funcionamiento ejecutivo y autismo: estrategias de éxito" +description: "Estrategias basadas en evidencia para la función ejecutiva en el autismo: apoyos visuales para la planificación, la regulación emocional, el control de impulsos y la resolución de problemas." +slug: "executive-functioning-skills-autism" +canonical: "https://www.azinstitute4autism.com/es/library/executive-functioning-skills-autism" +lang: "es" +translationKey: "executive-functioning-skills-autism" +featuredImage: "/assets/images/hero-executive-functioning-skills-autism.webp" +date: "2026-04-09" +author: "rula-diab" +category: "Library" +tags: [] +draft: false +--- +# Habilidades de funcionamiento ejecutivo y autismo + +![Rula Diab, Directora Clínica, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) + + Rula Diab, Directora Clínica, M.Ed, BCBA, LBA + + 09 abril, 2026 + +![estrategias para el desarrollo de habilidades de funcionamiento ejecutivo en niños autistas - imagen destacada](/assets/images/hero-executive-functioning-skills-autism.webp) + +La función ejecutiva se refiere a un conjunto de habilidades cognitivas esenciales para la resolución de problemas y la gestión de tareas diarias. Estas habilidades ayudan a los niños a planificar, organizar, regular sus emociones y completar tareas de manera efectiva. + +Para los niños con Trastorno del Espectro Autista (TEA), el funcionamiento ejecutivo puede ser particularmente desafiante, impactando su capacidad para navegar las interacciones sociales, adaptarse a los cambios en las rutinas y manejar las emociones. Apoyar el desarrollo de estas habilidades es crucial para su éxito en entornos domésticos, escolares y comunitarios. + +## Habilidades clave de funcionamiento ejecutivo para niños con autismo + +### 1. Regulación Emocional + +Definición: The ability to manage and respond to emotional experiences in a healthy, positive, and functional way. + +Desafíos: Los niños con autismo a menudo experimentan una mayor sensibilidad a los estímulos sensoriales y dificultades para comprender y expresar sus emociones, lo que puede provocar crisis, ansiedad o dificultad para hacer la transición entre actividades. + +Estrategias clave: + +- Técnicas de autorregulación: Enseñar estrategias de afrontamiento como respiración profunda, tomar un descanso o usar un juguete inquieto. + +- Apoyos visuales: Usar gráficos de emociones, una rueda de afrontamiento o historias sociales para ayudar a los niños a reconocer y manejar las emociones. + +- Rutinas claras: Establecer rutinas predecibles con planificadores visuales (opciones de medio día, día completo o semanales) para reducir la ansiedad. + +### 2. Planificación y Organización + +Definición: La capacidad de planificar y priorizar tareas, dividirlas en pasos más pequeños y mantenerse organizado. + +Desafíos: Los niños con autismo pueden tener dificultades para organizar su día, gestionar múltiples tareas o prepararse para eventos futuros, lo que afecta su rendimiento académico y sus habilidades para la vida diaria. + +Estrategias clave: + +- Visual schedules: Clearly displaying the day’s events to reduce anxiety and confusion. + +- Task breakdown: Dividing larger tasks into smaller and manageable steps with visual checklists. + +- Timers: Helping children learn to manage their time for each task. + +### 3. Impulse Control + +Definición: Horarios visuales: Mostrar claramente los eventos del día para reducir la ansiedad y la confusión. + +Desafíos: Los niños con autismo pueden actuar impulsivamente o participar en comportamientos repetitivos, a menudo sin comprender las consecuencias. + +Estrategias clave: + +- Guiones sociales: Enseñar comportamientos sociales esperados ("Disculpe, ¿puedo...") a través de guiones. + +- Comunicación: Enseñar a los niños formas adecuadas y funcionales de comunicar sus sentimientos verbalmente. + +- Tablas de comportamiento: Seguimiento de comportamientos positivos y recompensa por el control exitoso de impulsos. + +- Pausa para practicar: Animar a los niños a "hacer una pausa y pensar" antes de reaccionar. + +### 4. Pensamiento crítico y resolución de problemas + +Definición: La capacidad de pensar críticamente, reconocer la causa y el efecto y encontrar soluciones a los problemas. + +Desafíos: Los niños con autismo pueden tener dificultades para comprender las consecuencias, adaptarse a nuevos problemas o generar soluciones en situaciones dinámicas. + +Estrategias clave: + +- Historias sociales: Modelar cómo manejar escenarios de la vida real (por ejemplo, cuando se rompe un juguete o se enfrentan desafíos específicos). + +- Juego de roles: Practicar la toma de decisiones y comprender las perspectivas de los demás a través del juego estructurado y escenarios sociales. + +- Modelos visuales: Enseñar estrategias paso a paso como "Detente, Piensa, Actúa" para la resolución de problemas. + +## Funcionamiento ejecutivo en diferentes grupos de edad + +### Primera infancia (edades 3–6) + +A esta edad, los niños apenas están empezando a desarrollar habilidades de funcionamiento ejecutivo. Pueden tener dificultades con el control de impulsos, las instrucciones simples y la concentración. + +Estrategias de apoyo: + +- Los horarios visuales simples y cortos para las rutinas serán menos confusos y abrumadores. + +- Actividades sencillas de causa y efecto + +- Aprendizaje basado en el juego para promover la regulación emocional + +- Reforzar las habilidades de turno y espera + +### Edades 7–11 + +A medida que los niños maduran, las habilidades ejecutivas se vuelven más avanzadas, pero aún necesitan apoyo con la planificación, la regulación emocional y la toma de decisiones sociales. + +Estrategias de apoyo: + +- Calendarios/horarios visuales para tareas y deberes + +- Enseñar técnicas de autorregulación, como la respiración profunda, participar en actividades relajantes, etc. + +- Actividades y escenarios estructurados de resolución de problemas ("¿Qué debo hacer cuando...?") + +- Juegos de rol para practicar habilidades sociales y emocionales + +### Edades 12–18 + +Los adolescentes continúan perfeccionando las habilidades de funcionamiento ejecutivo, pero enfrentan una mayor complejidad con los estudios, las actividades extracurriculares y las expectativas sociales. + +Estrategias de apoyo: + +- Planificadores digitales o aplicaciones para gestionar el trabajo escolar y las actividades + +- Enseñar cómo dividir proyectos grandes en pasos más pequeños + +- Prácticas de atención plena para la regulación emocional + +- Práctica de resolución de problemas del mundo real (por ejemplo, gestionar proyectos grupales o conflictos) + +Desarrollar habilidades de funcionamiento ejecutivo en niños con autismo es un proceso gradual y de apoyo. Con estrategias específicas, apoyos visuales y rutinas consistentes, los niños pueden desarrollar mayor independencia, flexibilidad y resiliencia emocional. + + Previous Post + +###### [Guía para enseñar la autodefensa en el ABA](autism-self-advocacy-skills-aba) + + Next Post + +###### [Refuerzo positivo en la terapia ABA para fomentar el desarrollo de habilidades](positive-reinforcement-techniques) + +### Similar Blog Posts + +![terapia aba refuerzo positivo](/assets/images/hero-positive-reinforcement-techniques.webp) + +#### [Refuerzo positivo en la terapia ABA para fomentar el desarrollo de habilidades](positive-reinforcement-techniques) + +![Consejos de autocuidado para familias con autismo - imagen destacada](/assets/images/hero-self-care-priority.webp) + +#### [Descubre consejos para el autocuidado de padres de niños con autismo](autism-family-self-care-tips) + +![Niño tomando una pausa de regulación emocional en un carrito de compras - imagen principal](/assets/images/child-shopping-cart-tired-cranky.jpg) + +#### [Por qué la regulación emocional debería ser el corazón de cada programa de ABA](emotional-regulation-aba) diff --git a/www/src/content/blog/es/first-then-cards-autism-transitions.md b/www/src/content/blog/es/first-then-cards-autism-transitions.md new file mode 100644 index 0000000..83b5720 --- /dev/null +++ b/www/src/content/blog/es/first-then-cards-autism-transitions.md @@ -0,0 +1,125 @@ +--- +title: "Tarjetas Primero/Después : Empoderando las transiciones para niños autistas" +description: "Aprenda cómo Primero/después, las tarjetas apoyan transiciones más suaves y comportamientos positivos en niños autistas. Descubre consejos prácticos y recursos locales de Arizona." +slug: "first-then-cards-autism-transitions" +canonical: "https://www.azinstitute4autism.com/es/library/first-then-cards-autism-transitions" +lang: "es" +translationKey: "first-then-cards-autism-transitions" +featuredImage: "/assets/images/hero-first-then-cards.webp" +date: "2026-04-09" +author: "rula-diab" +category: "Library" +tags: [] +draft: false +--- +# Tarjetas Primero/Después : Empoderando las transiciones para niños autistas + +![Rula Diab, Directora Clínica, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) + + Rula Diab, Directora Clínica, M.Ed, BCBA, LBA + + 09 abril, 2026 + +![Las tarjetas de](/assets/images/hero-first-then-cards.webp) + +Las transiciones pueden ser desafiantes para muchos niños, especialmente para aquellos en el espectro autista. Primero/después, las tarjetas son una herramienta simple pero efectiva que puede ayudar a facilitar estas transiciones, promover comportamientos positivos y apoyar la independencia. + +## ¿Qué son las tarjetas de primero/después ? + +Primero/después, las tarjetas son ayudas visuales que describen una secuencia de actividades: + +- Primero : La tarea o actividad que necesita ser completada. + +- Después : Una actividad o recompensa preferida que sigue. + +Por ejemplo: + +- Primero : Abróchese el cinturón de seguridad + +- Después : Ver iPad + +![first then cards](/assets/images/first-then-cards-seatbelt-ipad.png) + +Este enfoque aprovecha el Principio de Premack, que sugiere que una actividad más preferida puede reforzar una menos preferida. Al mostrar claramente la secuencia, los niños pueden comprender mejor las expectativas y sentirse más en control de sus rutinas. + +## Beneficios de usar tarjetas de Primero/Después + +- Reduce la ansiedad : Los horarios visuales brindan previsibilidad, lo que puede aliviar el estrés asociado con las transiciones. + +- Mejora la comunicación : Especialmente beneficiosas para niños no verbales o con habla mínima, estas tarjetas ofrecen un método claro para transmitir expectativas. + +- Promueve la independencia : Los niños aprenden a seguir rutinas con menos indicaciones con el tiempo. + +- Apoya el comportamiento positivo : Al establecer expectativas y recompensas claras, es más probable que los niños adopten los comportamientos deseados. + +## Implementando tarjetas de Primero/Después en casa + +- Identificar tareas y recompensas : Elige una tarea que deba completarse y una recompensa motivadora. + +- Crea visuales : Usa imágenes o símbolos que tu hijo entienda. Recursos como [LessonPix](https://lessonpix.com/articles/5/35/First%2BThen%2BBoards) ofrecen plantillas personalizables. + +- Introduzca la tarjeta : Presente la tarjeta antes de comenzar la tarea, explicando la secuencia. + +- Seguimiento : Asegúrese de que la recompensa siga inmediatamente después de completar la tarea para reforzar el comportamiento. + +## Ejemplos prácticos + + Entorno + Primera tarea + Luego recompensa + + Mañana + Cepillarse los dientes + Ver dibujos animados + + Comunidad + Comprar comestibles + Visitar el parque + + Escuela + Escriba el nombre + Jugar con juguetes sensoriales + + Clínica + Completar actividad + Tiempo de tableta + +## Consejos para el éxito + +- La consistencia es clave : Usa las tarjetas regularmente para establecer rutinas. + +- Personaliza para tu hijo : Adapta las imágenes y las recompensas a las preferencias y comprensión de tu hijo. + +- Empieza de forma sencilla : Comienza con tareas fáciles y aumenta gradualmente la complejidad a medida que tu hijo se sienta más cómodo. + +## Recursos locales de Arizona + +Ubicado en Scottsdale, dentro del Valle del Este de Phoenix, el Instituto de Autismo de Arizona (AIA) ofrece apoyo y recursos para familias en las áreas metropolitanas de Phoenix y Tucson: + +- Consultas gratuitas : Programa una [consulta gratuita](../../client-consultation) para discutir estrategias personalizadas para tu hijo. + +- Terapia en el hogar : Disponible en Tucson para brindar apoyo dentro del entorno natural de su hijo. + +- Próximamente, Gifted Shop de AIA : Pronto, podrá acceder a una variedad de herramientas de apoyo visual, incluyendo tarjetas de Primero/Después y colecciones de PECS, a través de nuestra tienda en línea. Manténgase atento a las actualizaciones. + + Previous Post + +###### [Descubre consejos para el autocuidado de padres de niños con autismo](autism-family-self-care-tips) + + Next Post + +###### [Guía para enseñar la autodefensa en el ABA](autism-self-advocacy-skills-aba) + +### Similar Blog Posts + +![Reunión entre padres e hijos con un clínico en un entorno de evaluación del autismo tranquilo y basado en el juego.](/assets/images/autism-evaluation-expectations_hero.png) + +#### [Qué esperar en la primera evaluación de autismo de su hijo](autism-evaluation-what-to-expect) + +![Consejos de autocuidado para familias con autismo - imagen destacada](/assets/images/hero-self-care-priority.webp) + +#### [Descubre consejos para el autocuidado de padres de niños con autismo](autism-family-self-care-tips) + +![Pediatra realizando una evaluación de autismo a un niño pequeño en una clínica de Arizona](/assets/images/autism_evaluation_arizona_hero.jpg) + +#### [Evaluación del Autismo en Arizona: Guía Paso a Paso para Padres](autism-evaluation-diagnosis-arizona-parent-guide) diff --git a/www/src/content/blog/es/parents-guide-to-autism-and-aba.md b/www/src/content/blog/es/parents-guide-to-autism-and-aba.md new file mode 100644 index 0000000..21b78df --- /dev/null +++ b/www/src/content/blog/es/parents-guide-to-autism-and-aba.md @@ -0,0 +1,225 @@ +--- +title: "Cómo ayudar a su hijo autista: Una guía para padres y cuidadores" +description: "Learn practical autism and ABA-informed strategies parents and caregivers can use to support communication, routines, behavior, and regulation." +slug: "parents-guide-to-autism-and-aba" +canonical: "https://www.azinstitute4autism.com/es/library/parents-guide-to-autism-and-aba" +lang: "es" +translationKey: "parents-guide-to-autism-and-aba" +featuredImage: "/assets/images/family-guide-to-autism-aba-at-home_hero.png" +date: "2026-04-09" +author: "rula-diab" +category: "Library" +tags: [] +draft: false +--- +# Guía de Autismo para Padres y Cuidadores + +![Rula Diab, Directora Clínica, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) + + Rula Diab, Directora Clínica, M.Ed, BCBA, LBA + + 09 abril, 2026 + +![Parent and autistic child using visual supports, structured play, and calm routines together](/assets/images/family-guide-to-autism-aba-at-home_hero.png) + +Cada niño es diferente. Algunos necesitan más apoyo con la comunicación. Otros luchan más con las transiciones, la entrada sensorial o la regulación emocional. El autismo es una condición del neurodesarrollo que afecta la forma en que una persona se comunica, aprende, se comporta y experimenta el mundo, y los signos pueden hacerse evidentes temprano en el desarrollo. + +Si estás tratando de averiguar cómo ayudar a tu hijo autista, comienza por comprender qué le ayuda a sentirse seguro, comprendido y capaz de tener éxito en la vida diaria. + +Esta guía combina conceptos básicos sobre el autismo, apoyo práctico para padres y estrategias basadas en el análisis de comportamiento aplicado (ABA) que puedes usar en casa. Está escrito para ayudarte a dar el siguiente paso correcto, no para hacerlo todo a la vez. + +Reaseguramiento: Empieza poco a poco. Una mejor rutina, un mejor apoyo para la comunicación y una respuesta más tranquila pueden marcar una gran diferencia. + +Ayudar a tu hijo autista comienza por comprender cómo se comunica, regula y aprende. Esta guía para padres y cuidadores explica cómo puede manifestarse el autismo en la vida diaria, cuándo buscar apoyo y cómo utilizar estrategias prácticas e informadas en ABA en casa para desarrollar la comunicación, la confianza y la independencia. + +## Cómo puede manifestarse el autismo en la vida diaria + +El autismo puede manifestarse en la comunicación, el juego, las rutinas, el procesamiento sensorial, la flexibilidad y la conexión social. Un niño puede tener pocas palabras habladas. Otro puede hablar mucho pero aún así tener dificultades con la conversación, la interacción con sus compañeros o la comprensión de las señales sociales. Los recursos de los CDC y del NHS reflejan que los niños autistas pueden tener diferencias en la comunicación social, comportamientos repetitivos, ansiedad, desafíos sensoriales y necesidades de apoyo diario. + +Lo que más importa es el patrón a lo largo del tiempo. Si la vida diaria se siente regularmente más difícil debido a fallas en la comunicación, grandes reacciones a los cambios o dificultad para participar en las rutinas, es razonable investigar más a fondo. + + Lo que podrías notar + ¿Qué puede ayudar ahora? + + Dificultad para expresar las necesidades + Usa frases cortas, imágenes y palabras funcionales como "ayuda" o "descanso". + + Transiciones difíciles o resistencia al cambio + Usa cuentas regresivas, lenguaje de "Primero-Después" y horarios visuales. + + Sobrecarga sensorial o búsqueda sensorial + Ajusta el entorno, añade descansos para moverte y crea un espacio tranquilo. + + Diferencias sociales o de juego + Practica rutinas cortas de turnos y modela lenguaje sencillo. + + Intereses fuertes o patrones repetitivos + Usa los intereses como motivadores y puentes hacia nuevas habilidades. + +Si su hijo tiene palabras pero aún tiene dificultades sociales, [Por qué mi hijo puede hablar pero aún tiene dificultades sociales](social-pragmatic-communication-autism) de AIA es un fuerte compañero interno porque explica el lenguaje pragmático y las señales no verbales en un lenguaje amigable para los padres. + +## Cuándo buscar apoyo + +Muchos padres esperan porque no quieren reaccionar de forma exagerada. Aún así, si observas preocupaciones repetidas con la comunicación, la interacción social, el juego, la regulación sensorial o los hitos del desarrollo, tiene sentido hacer preguntas temprano. Los CDC señalan que algunos niños muestran signos en el primer año, mientras que otros los muestran más tarde. + +Un primer paso práctico es hablar con el pediatra de su hijo. Pida una evaluación del desarrollo, comparta ejemplos de casa y solicite una derivación si es necesario. El cribado no es lo mismo que el diagnóstico. La detección señala posibles preocupaciones. El diagnóstico es una evaluación formal realizada por un profesional cualificado. + +[La Evaluación de Autismo en Arizona: Una Guía Paso a Paso para Padres](autism-evaluation-diagnosis-arizona-parent-guide) de AIA explica esa distinción claramente y describe a los profesionales de diagnóstico comunes en Arizona. + +Consejo rápido: Mantén una nota simple durante dos semanas. Escribe lo que pasó antes de un momento difícil, lo que hizo tu hijo y lo que ayudó. Los patrones suelen ser más útiles que los recuerdos aislados. + +## Qué es el ABA y cómo puede ayudar en casa + +ABA, o Análisis del Comportamiento Aplicado, es un enfoque conductual que analiza lo que sucede antes y después del comportamiento y utiliza la enseñanza estructurada para desarrollar habilidades útiles. Los CDC describen el análisis del comportamiento aplicado como un tratamiento conductual notable para el autismo que tiene como objetivo mejorar una variedad de habilidades. + +En su mejor momento, el ABA es individualizado, práctico y respetuoso. Puede apoyar la comunicación, la vida diaria, la regulación emocional, el juego, las transiciones y la independencia. No debería ser una talla única para todos, y debería centrarse en habilidades significativas que su hijo pueda utilizar en la vida real. + +![calm sensory regulation corner](/assets/images/sensory-regulation-corner.png) + +La [Guía paso a paso para comenzar la terapia ABA](../aba-therapy-intake-process) y el [Refuerzo positivo en la terapia ABA para fomentar el desarrollo de habilidades](positive-reinforcement-techniques) de AIA son lecturas útiles si desea una imagen más clara de cómo encajan el apoyo en el hogar, la consulta con los padres y el desarrollo de habilidades. + + Principio de ABA + Significado cotidiano + + Refuerzo positivo + Recompensar el éxito para que sea más probable que una habilidad vuelva a ocurrir. + + Descomponer las habilidades en pasos + Enseñar una parte manejable a la vez + + Indicación y desvanecimiento + Brindar apoyo y luego reducirlo gradualmente + + Habilidades de reemplazo + Enseñar qué hacer en lugar de solo corregir el comportamiento + + Generalización + Usando la misma habilidad con diferentes personas y en diferentes lugares + +La forma más realista para que los padres usen el ABA en casa no es convertirse en el terapeuta. Se trata de aprender algunas herramientas fiables y usarlas consistentemente en las rutinas diarias. + +## Cómo apoyar la comunicación en casa + +La comunicación es más que hablar. Muchos niños autistas se comunican a través de gestos, movimientos, imágenes, dispositivos, guiones o comportamiento antes de poder comunicarse consistentemente con palabras. La guía del NHS apoya mantener el lenguaje simple, permitir tiempo de procesamiento adicional y usar imágenes o símbolos cuando sea útil. + +Una pregunta útil es: "¿Me entendió mi hijo y tuvo una forma viable de responder?" Cuando los adultos se mueven demasiado rápido, usan demasiadas palabras o hacen demasiadas preguntas, la comunicación a menudo se interrumpe antes que el comportamiento. + +Prueba estos apoyos básicos: + +- Usa frases cortas y directas. + +- Asocia palabras con imágenes o gestos. + +- Ofrezca opciones sencillas. + +- Haz una pausa después de hablar. + +- Enseña y honra palabras o señales como "ayuda", "descanso", "más" y "terminado". + +Si su hijo tiene un vocabulario sólido pero habilidades conversacionales o sociales débiles, podría ser un problema de lenguaje pragmático en lugar de un problema de lenguaje. [Por qué mi hijo puede hablar pero aún tiene dificultades sociales](social-pragmatic-communication-autism) de AIA puede ayudarte a detectar esa diferencia. + +## Cómo apoyar las rutinas, las transiciones y el comportamiento + +Muchos momentos difíciles ocurren alrededor de los mismos puntos del día: vestirse, terminar el tiempo de pantalla, salir de casa, empezar la tarea o la hora de acostarse. Las páginas de competidores en el NHS, HelpGuide, Thrive y contenido de proveedores de ABA enfatizan repetidamente la estructura, la rutina y el apoyo visual porque reducen la incertidumbre y aclaran las expectativas. + +En lugar de esperar a reaccionar, mira lo que sucede antes del comportamiento. ¿La dirección no está clara? ¿Es la tarea demasiado larga? ¿Es la transición demasiado repentina? ¿Su hijo ya está cansado o sobrecargado? Los cambios proactivos a menudo funcionan mejor que las reacciones correctivas. + +Unas pocas estrategias caseras dan mucho de sí: + +- Usa un horario visual o una rutina de primero, después, último. + +- Dar advertencias antes de las transiciones. + +- Usa lenguaje de Primero-Después. + +- Enseña respuestas alternativas, como pedir ayuda o un descanso. + +- Refuerza el comportamiento que quieres ver de inmediato. + +![visual-schedule-and-timer-2](/assets/images/visual-schedule-and-timer-2.png) + +[Tarjetas Primero/Después: Empoderando las transiciones para niños autistas](first-then-cards-autism-transitions) de AIA es una excelente opción si las transiciones son un desencadenante importante, y [Por qué la regulación emocional debería ser el corazón de cada programa de ABA](emotional-regulation-aba) conecta la regulación con la comunicación y el cambio. + +Trampa a evitar: No guardes todos tus elogios para el final. Atrapa el paso más pequeño y exitoso y nómbralo de inmediato. + +## Cómo apoyar las necesidades sensoriales y la regulación + +Las diferencias sensoriales son comunes en el autismo. Algunos niños se sienten abrumados por el sonido, la luz, las texturas o los espacios concurridos. Otros buscan movimiento, presión, masticar o estimulación visual. La Sociedad Nacional de Autismo señala que las personas autistas pueden ser más o menos sensibles a las experiencias sensoriales y pueden buscar, evitar o sentirse abrumadas por la información sensorial. + +El apoyo sensorial funciona mejor cuando es individualizado. No todos los momentos difíciles son sensoriales, pero un niño que se siente sobrecargado generalmente tendrá mucho más dificultades para comunicarse, hacer transiciones o mantenerse regulado. + +Intenta construir tu plan en torno a tres preguntas: ¿Qué abruma a mi hijo? ¿Qué les ayuda a recuperarse? ¿Qué puedo cambiar antes de que comience el momento difícil?[Habilidades de funcionamiento ejecutivo y autismo](executive-functioning-skills-autism) de AIA es una fuente útil para aprender más sobre rutinas, apoyos visuales y herramientas de afrontamiento. + +## Construyendo independencia en las rutinas diarias + +La independencia crece en momentos ordinarios, no solo en las sesiones de terapia. Zapatos. Lavado de manos. Limpiando. Esperando. Pedir ayuda. Estas rutinas son donde los niños practican la comunicación, la regulación, la flexibilidad y la confianza. + +Por eso es importante dividir las tareas en pasos pequeños. En AIA, enfatizamos la enseñanza paso a paso, el apoyo con indicaciones y la reducción gradual del apoyo para que los niños puedan hacer más por sí mismos con el tiempo. + +Comienza con una rutina que ya ocurre todos los días. Enseña cuando todos estén tranquilos. Usa la menor ayuda que tu hijo necesite para tener éxito. Entonces elogia específicamente. La [Guía para enseñar la autodefensa en el ABA](autism-self-advocacy-skills-aba) y [Mejorando la generalización para un impacto más amplio en el autismo](enhancing-generalization-skills) son lecturas de seguimiento sólidas si su objetivo es la independencia en el hogar, la escuela y la comunidad. + +## Trabajando con terapeutas, la escuela y la familia + +Los niños suelen progresar más rápido cuando los adultos que los rodean utilizan un lenguaje, expectativas y apoyos similares. Eso no significa que todos tengan que criar de la misma manera. Significa que tu hijo no debería tener que volver a aprender las reglas en cada habitación. + +A short caregiver plan can help. Agree on one or two goals, the words adults will use, common triggers, and what helps calm or redirect. AIA’s [Starting ABA Therapy Step-by-Step Guide](../../aba-therapy-intake-process) and [Helpful Autism Diagnosis & Therapy FAQs](../../faqs) both reinforce the value of parent consultation and regular progress review. + +## Cuídate también + +Una buena guía para padres de niños con autismo debería decir esto claramente: tu regulación también importa. + + Preguntas Frecuentes + +## Guía para padres sobre autismo y ABA + +### ¿Qué debo hacer si creo que mi hijo podría ser autista? + +Hable con el pediatra de su hijo, pida una evaluación del desarrollo y comparta ejemplos específicos de casa. Si desea una visión más clara de la detección frente al diagnóstico, la guía de AIA [Evaluación del autismo en Arizona: una guía paso a paso para padres](autism-evaluation-diagnosis-arizona-parent-guide) es un siguiente paso útil. + +### ¿Todos los niños autistas necesitan terapia ABA? + +No todos los niños necesitan la misma combinación de apoyos. El análisis de comportamiento aplicado (ABA) puede ser muy útil cuando se individualiza, es funcional y colaborativo, especialmente para la comunicación, las rutinas, la independencia y las habilidades de reemplazo. + +### ¿Cómo puedo ayudar a mi hijo a comunicarse si es mínimamente verbal? + +Use lenguaje sencillo, imágenes o gestos, tiempo de espera adicional y comunicación funcional como "ayuda", "más", "descanso" y "terminado". La comunicación significativa no tiene que empezar con frases completas. + +### What should I do during a meltdown? + +Concéntrese en la seguridad, reduzca las exigencias y disminuya la entrada sensorial cuando sea posible. Guarda la enseñanza y la resolución de problemas para más tarde, después de que tu hijo se calme. + +### ¿Cómo puedo facilitar las transiciones en casa? + +Utilice advertencias claras, horarios visuales, lenguaje de "Primero-Después" y rutinas predecibles. Muchas familias se desenvuelven bien con un único apoyo de transición muy sencillo que pueden utilizar todos los días, como un temporizador o una tarjeta de "primero esto, luego esto". + +### ¿Cómo pueden los miembros de la familia mantener la coherencia sin volverse rígidos? + +Acuerden algunos conceptos básicos compartidos, como las mismas indicaciones cortas, palabras de reemplazo y rutina de transición. No necesitas respuestas idénticas de cada adulto. Necesitas predecibles. + +## Pensamientos finales + +Apoyar a un niño con autismo no se trata de encontrar una estrategia perfecta. Se trata de aprender cómo se comunica tu hijo, qué le ayuda a regularse y cómo incorporar el éxito en los momentos cotidianos. Comienza con lo que más importa en tu familia ahora mismo, luego construye a partir de ahí. + +Si necesitas ayuda para reflexionar sobre la evaluación, las opciones de terapia o los próximos pasos, el [Formulario de Consulta para Clientes](../../client-consultation) de AIA es el siguiente paso más claro. + + Previous Post + +###### [Refuerzo positivo en la terapia ABA para fomentar el desarrollo de habilidades](positive-reinforcement-techniques) + + Next Post + +###### [Qué esperar en la primera evaluación de autismo de su hijo](autism-evaluation-what-to-expect) + +### Similar Blog Posts + +![Reunión entre padres e hijos con un clínico en un entorno de evaluación del autismo tranquilo y basado en el juego.](/assets/images/autism-evaluation-expectations_hero.png) + +#### [Qué esperar en la primera evaluación de autismo de su hijo](autism-evaluation-what-to-expect) + +![Consejos de autocuidado para familias con autismo - imagen destacada](/assets/images/hero-self-care-priority.webp) + +#### [Descubre consejos para el autocuidado de padres de niños con autismo](autism-family-self-care-tips) + +![Pediatra realizando una evaluación de autismo a un niño pequeño en una clínica de Arizona](/assets/images/autism_evaluation_arizona_hero.jpg) + +#### [Evaluación del Autismo en Arizona: Guía Paso a Paso para Padres](autism-evaluation-diagnosis-arizona-parent-guide) diff --git a/www/src/content/blog/es/positive-reinforcement-techniques.md b/www/src/content/blog/es/positive-reinforcement-techniques.md new file mode 100644 index 0000000..4400360 --- /dev/null +++ b/www/src/content/blog/es/positive-reinforcement-techniques.md @@ -0,0 +1,215 @@ +--- +title: "Refuerzo positivo en la terapia ABA para fomentar el desarrollo de habilidades" +description: "Aprenda técnicas efectivas de refuerzo positivo para fomentar el comportamiento deseado en los niños. Descubre consejos, herramientas visuales y mejores prácticas para padres." +slug: "positive-reinforcement-techniques" +canonical: "https://www.azinstitute4autism.com/es/library/positive-reinforcement-techniques" +lang: "es" +translationKey: "positive-reinforcement-techniques" +featuredImage: "/assets/images/hero-positive-reinforcement-techniques.webp" +date: "2026-04-09" +author: "rula-diab" +category: "Library" +tags: [] +draft: false +--- +# Refuerzo positivo en la terapia ABA para fomentar el desarrollo de habilidades + +![Rula Diab, Directora Clínica, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) + + Rula Diab, Directora Clínica, M.Ed, BCBA, LBA + + 09 abril, 2026 + +![terapia aba refuerzo positivo](/assets/images/hero-positive-reinforcement-techniques.webp) + +El refuerzo positivo es una de las herramientas más poderosas en el Análisis de Comportamiento Aplicado (ABA), y es especialmente eficaz para apoyar a los niños con autismo. En lugar de centrarse en los errores, el refuerzo positivo celebra cada paso en la dirección correcta, lo que aumenta la motivación, la confianza y los lazos familiares más fuertes. En este artículo, aprenderás: + +- Qué significa el refuerzo positivo en el ABA + +- Los beneficios clave para niños y cuidadores + +- Una guía paso a paso para padres + +- Errores comunes y cómo evitarlos + +- Consejos para mantener a tu hijo interesado + +Ya sea que estés lidiando con rutinas diarias, enseñando nuevas habilidades o simplemente buscando reducir comportamientos desafiantes, estas estrategias basadas en evidencia te empoderarán a ti y a tu hijo. + +## ¿Qué es el refuerzo positivo? + +El refuerzo positivo ocurre cuando una consecuencia deseable sigue inmediatamente a un comportamiento, aumentando la probabilidad de que el comportamiento vuelva a ocurrir. En el ABA, esto podría significar dar elogios, un juguete preferido, tiempo extra frente a la pantalla o un bocadillo especial justo después de que su hijo complete una tarea. + +⚙️ ¿Sabías que...? La investigación de ABA muestra que el refuerzo inmediato fortalece la conexión entre el comportamiento y la recompensa más que las recompensas retrasadas. + +## Por qué el refuerzo positivo es importante en el ABA + +- Construye motivación y confianza. Los niños aprenden más rápido cuando saben que serán recompensados por su esfuerzo. + +- Fortalece las relaciones. Las interacciones positivas fomentan la confianza entre usted y su hijo. + +- Reduce los comportamientos desafiantes. A medida que aumentan los comportamientos deseados, los comportamientos indeseables disminuyen naturalmente. + +- Mejora la regulación emocional. Las recompensas ayudan a los niños a asociar sentimientos positivos con el autocontrol. + +⚙️ Tip: Reinforcement is more effective when it feels genuine. Use specific praise like "I love how you put your shoes away!" instead of a generic "Good job!" + +## Beneficios clave para niños con autismo + + Beneficio + Cómo ayuda + + Cooperación y seguimiento de rutinas + Los niños predicen resultados y se sienten seguros + + Autoestima + Las experiencias de éxito aumentan la confianza + + Habilidades de comunicación y sociales + Fomenta la interacción con los cuidadores + + Gestión de la transición + Reduce la ansiedad ante los cambios + + Adquisición de habilidades + Divide las tareas complejas en pasos manejables + +## Guía paso a paso para padres + +### 1. Definir el comportamiento objetivo claramente + +- Vago: "Sé bueno." + +- Claro: "Guarda tus juguetes en el cubo cuando termines de jugar." + +### 2. Elige el reforzador adecuado + +Observe lo que su hijo realmente valora: + +- Tableros de pegatinas o fichas + +- Unos minutos de tiempo de pantalla preferido + +- Un bocadillo especial o una actividad divertida + +⚙️ Consejo profesional: Rote a través de un menú de 3 a 5 reforzadores para prevenir el aburrimiento y la saciedad. + +### 3. Entrega refuerzo inmediatamente + +- Reforzar dentro de 1 a 3 segundos del comportamiento. + +- Usa elogios verbales entusiastas ("¡Trabajo fantástico cepillándote los dientes!") más la recompensa elegida. + +### 4. Usa apoyos visuales + +- Tablas de comportamiento: Haz un seguimiento del progreso con pegatinas. + +- Tableros Primero/Luego: "Primero termina tu tarea, luego juega afuera." + +- Tabla de ejemplo: Primero… Luego… Ponte los zapatos Elige un libro para la hora de dormir Termina 5 problemas de matemáticas 5 minutos de tiempo con la tableta + +### 5. Reforzar el esfuerzo, no solo los resultados + +- Celebra los intentos y las pequeñas mejoras, incluso si no son perfectos. + +- "Vi lo mucho que te esforzaste por compartir tu juguete. ¡Eso fue increíble!" + +## Errores comunes y cómo evitarlos + + Trampa + Solución + + Recompensas retrasadas + Ten a mano temporizadores para marcar el momento. + + Reforzar el comportamiento no deseado + Entrega la recompensa solo después de la acción correcta. + + Usando Sobornos + Planifica los reforzadores con anticipación, no esperes a los berrinches. + + Usar en exceso un solo reforzador + Rotar a través de un "menú de reforzadores" + + Instrucciones vagas + Sé específico y observable + + Seguimiento inconsistente + Establece recordatorios o gráficos para ti mismo. + +## Refuerzo vs. Soborno + +El refuerzo es planificado , consistente y sigue los comportamientos deseados. El soborno es reactivo , se ofrece para detener el mal comportamiento. + + Refuerzo + Soborno + + "Completaste tu tarea, ¡así que ahora es hora de jugar!" + "Deja de gritar y te daré un caramelo." + + Aumenta la motivación con el tiempo + A menudo reduce la confianza y las ganancias a largo plazo. + +## Cuándo solucionar problemas de tu enfoque + +Si no estás viendo progreso: + +- Verificar la comprensión: ¿Entiende tu hijo lo que le estás preguntando? + +- Ajustar los reforzadores: Prueba algo más motivador. + +- Moldee conductas: Reforzar las aproximaciones más pequeñas hacia el objetivo. + +- Revisar el entorno: Reduce las distracciones, la fatiga o las señales poco claras. + +- Busca Apoyo Profesional: Consulte a su terapeuta de AIA para obtener estrategias personalizadas. + +## Estrategias Avanzadas: Programas y Desvanecimiento + +- Programa de razón fija (FR): Recompensa después de un número determinado de respuestas (por ejemplo, cada 3ª vez). + +- Programa de razón variable (VR): Recompensa de manera impredecible (por ejemplo, al estilo de una máquina tragamonedas) para mantener el comportamiento. + +- Reforzadores desvanecidos: Aumente gradualmente el esfuerzo requerido o reduzca la magnitud para fomentar la independencia. + +Gráfico rápido: + + Tipo de programación + Ejemplo + Cuándo usar + + FR2 + Recompensa cada 2 pasos correctos + Construyendo habilidades iniciales + + VR3 + Recompensa en promedio cada 3 + Mantener comportamientos establecidos + +## Fomentar la motivación y la independencia: Próximos pasos + +El refuerzo positivo en el análisis de comportamiento aplicado (ABA) es más que una técnica; es una forma de construir motivación duradera, regulación emocional e independencia en niños con autismo. Al definir comportamientos claros, elegir recompensas significativas y ofrecer refuerzo de manera rápida y consistente, crearás un ambiente de aprendizaje de apoyo en casa y más allá. + +Para obtener orientación personalizada y apoyo ABA, comuníquese con el Instituto de Autismo de Arizona y programe su consulta gratuita hoy mismo. ¡Celebremos cada éxito juntos! + + Previous Post + +###### [Habilidades de funcionamiento ejecutivo y autismo](executive-functioning-skills-autism) + + Next Post + +###### [Guía de Autismo para Padres y Cuidadores](parents-guide-to-autism-and-aba) + +### Similar Blog Posts + +![Consejos de autocuidado para familias con autismo - imagen destacada](/assets/images/hero-self-care-priority.webp) + +#### [Descubre consejos para el autocuidado de padres de niños con autismo](autism-family-self-care-tips) + +![estrategias para el desarrollo de habilidades de funcionamiento ejecutivo en niños autistas - imagen destacada](/assets/images/hero-executive-functioning-skills-autism.webp) + +#### [Habilidades de funcionamiento ejecutivo y autismo](executive-functioning-skills-autism) + +![Habilidades de autodefensa para el autismo a través del ABA - imagen destacada](/assets/images/hero-teach-self-advocacy.webp) + +#### [Guía para enseñar la autodefensa en el ABA](autism-self-advocacy-skills-aba) diff --git a/www/src/content/blog/es/social-pragmatic-communication-autism.md b/www/src/content/blog/es/social-pragmatic-communication-autism.md new file mode 100644 index 0000000..6b14239 --- /dev/null +++ b/www/src/content/blog/es/social-pragmatic-communication-autism.md @@ -0,0 +1,192 @@ +--- +title: "Por qué mi hijo puede hablar pero aún tiene dificultades sociales" +description: "Tu hijo puede hablar, pero tiene dificultades sociales. Vea cómo el lenguaje pragmático, la inferencia y las señales no verbales moldean la conexión, y cómo el ABA desarrolla habilidades." +slug: "social-pragmatic-communication-autism" +canonical: "https://www.azinstitute4autism.com/es/library/social-pragmatic-communication-autism" +lang: "es" +translationKey: "social-pragmatic-communication-autism" +featuredImage: "/assets/images/talk-not-social.jpg" +date: "2026-01-22" +author: "rula-diab" +category: "Library" +tags: [] +draft: false +--- +# Por qué mi hijo puede hablar pero aún tiene dificultades sociales + +![Rula Diab, Directora Clínica, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) + + Rula Diab, Directora Clínica, M.Ed, BCBA, LBA + + 22 enero, 2026 + +![niño que habla tiene problemas para socializar - imagen principal](/assets/images/talk-not-social.jpg) + +## Las preguntas que los padres nos hacen cada semana "Mi hijo puede hablar, entonces ¿por qué sigue siendo tan difícil hacer amigos?" o "Ella tiene palabras, pero no sabe cómo tener una conversación." + +### La respuesta corta + +No estás solo. El habla y la conexión social están relacionadas, pero no son el mismo conjunto de habilidades. Hablar es formar palabras y oraciones. La comunicación social se trata de cuándo, por qué y cómo usamos esas palabras con otras personas. Muchos niños autistas tienen un vocabulario y una gramática sólidos, pero aún necesitan apoyo en el aspecto social de la comunicación. + +Resumen rápido: Si tu hijo puede hablar pero tiene dificultades en grupos, las piezas que faltan suelen ser el lenguaje pragmático, la inferencia social, la toma de perspectiva y la lectura de señales no verbales. + +## Hablar vs. Comunicación Social + + Hablando (forma) + Comunicación social (uso) + + Saber palabras y gramática + Iniciar, mantener y terminar una conversación en el momento adecuado + + Pronunciando sonidos + Ajustar el tono y el volumen al entorno + + Construyendo oraciones + Leer el lenguaje corporal y las expresiones faciales + + Etiquetar y responder + Hacer preguntas de seguimiento, compartir temas, turnarse + +Los clínicos llaman al lado derecho lenguaje pragmático . Es el manual para usar el lenguaje con las personas. Muchos niños autistas necesitan que estas reglas se enseñen directamente y se practiquen en situaciones reales. + +## Lo que los padres suelen notar primero + +- Tu hijo tiene mucho que decir sobre un interés favorito, pero sus compañeros se alejan. + +- Los chistes o el sarcasmo no funcionan. + +- Las citas de juego se sienten incómodas. Tu hijo habla a la gente en lugar de con ellos. + +- Las nuevas situaciones llevan a congelarse, decir la "cosa equivocada" o evitar. + +No son desobediencia ni grosería. Son señales de que las habilidades de comunicación social necesitan enseñanza y apoyo. + +## Habilidad 1: Lenguaje pragmático en momentos cotidianos + +El lenguaje pragmático es usar las palabras adecuadas de la manera correcta para el momento. Eso incluye cómo empezar una conversación, mantenerla, cambiar de tema y terminarla de manera educada. También incluye el espacio personal, el turno de palabra y el tono apropiado. Muchos estudiantes autistas se benefician de la enseñanza explícita y de mucha práctica sin presión. + +Intenta esto en casa: Elige una rutina, como la hora del refrigerio. Practica un guion simple de tres pasos: "Ofrecer" (¿Quieres un poco?), "Esperar," "Seguimiento" (Genial, ¿qué quieres después?). Desvanece el guion a medida que tu hijo tenga éxito. + +## Habilidad 2: Inferencia social, o entender lo que no se dice + +Los humanos a menudo implican en lugar de afirmar las cosas. Suspiramos, encogemos los hombros o decimos "tal vez más tarde", y los demás infieren lo que queremos decir. Los niños autistas pueden perderse estas señales sutiles o tomar el lenguaje de manera literal, lo que puede hacer que parezcan desinteresados o demasiado insistentes cuando en realidad quieren conectarse. Enseñar a notar la situación, la persona y las palabras juntas puede ayudar. + +Idea de práctica: Vean juntos un breve clip en silencio. Pausa y pregunta, "¿Qué crees que ella quiere?" o "¿Qué cambió cuando él miró hacia otro lado?" + +## Habilidad 3: Toma de perspectiva + +Tomar perspectiva significa entender que otra persona puede querer jugar algo diferente, puede no saber lo que tú sabes y puede sentir de manera diferente a como tú lo haces. Esta habilidad se desarrolla con la modelación, el juego de roles y la práctica estructurada con compañeros. + +En sesión en la AIA: Usamos breves dramatizaciones, clips de video e historias sociales, luego practicamos con compañeros y cuidadores para que la habilidad se manifieste en la escuela y en casa. La práctica mediada por pares es una forma basada en evidencia para desarrollar la comprensión social. + +## Habilidad 4: Leer las señales no verbales + +Gran parte de la comunicación humana reside en la cara, el cuerpo y la voz. Un paso atrás puede significar "necesito espacio." Mirar hacia otro lado puede significar "Estoy listo para seguir adelante." Un cambio en el tono puede señalar una broma o frustración. Enseñar a los niños a buscar algunas señales predecibles construye confianza en el mundo real. + +Juego para probar: Hazlo una búsqueda del tesoro. Durante un programa familiar, haz una pausa cuando veas una señal y etiquétala juntos: "Se cruzó de brazos." ¿Qué podría significar eso en este momento? + +## Las reglas ocultas que cambian según el contexto + +Reglas como "no te acerques demasiado," "pregunta qué le gusta a la otra persona," y "cambia tu voz en la biblioteca" rara vez se dicen en voz alta. En AIA, desglosamos cada regla en pequeños pasos, modelamos ejemplos y no ejemplos, practicamos con compañeros y reforzamos aproximaciones para que los niños puedan usar la habilidad en clase, en el patio de recreo y en casa. Este enfoque gradual se alinea con prácticas basadas en evidencia, como la modelación, los apoyos visuales, la instrucción mediada por pares y las narrativas sociales. + +## Cómo ABA en AIA fomenta la comunicación social + +Nos enfocamos en la conexión, la comunicación y la regulación emocional. Cada plan es individualizado y puede incluir: + +- Enseñanza naturalista, incorporar habilidades en el juego y las rutinas diarias. + +- Modelado y modelado en video, para que los niños puedan ver exactamente cómo es el éxito. + +- Práctica mediada por pares, aprender con compañeros solidarios en escenarios estructurados. + +- Narrativas y guiones sociales, usado brevemente, luego se desvaneció a medida que la independencia aumentaba. + +- Regulación emocional, enseñando qué hacer cuando te sientes abrumado, confundido o ansioso. + +- Práctica comunitaria, llevando habilidades a parques infantiles, tiendas y clubes alrededor de Phoenix y el Valle del Este. + +Estas estrategias se identifican como basadas en evidencia para los estudiantes autistas, lo que significa que múltiples estudios de alta calidad muestran efectos positivos en los resultados sociales y de comunicación. + +¿Quieres profundizar más? Consulta nuestras guías sobre [Proactive and Reactive ABA Strategies](../../library/proactive-reactive-aba-strategies-guide) , [Individualized Care Plans](../../library/individualized-aba-therapy) , y [Sensory Processing](../../library/sensory-processing) para entender cómo adaptamos el apoyo. + +## Un plan simple que puedes usar esta semana + +- Elige una situación eso sucede a diario, como hacer fila para el recreo o unirse a un juego en el cuidado después de clases. + +- Vista previa del plan con un visual como una tarjeta de Primero-Luego , luego practícalo una vez antes del momento real. Nuestro artículo muestra ejemplos que puedes imprimir. + +- Entrena una señal para notar, como "busca ojos que miran hacia otro lado." + +- Refuerza el intento, no solo el resultado, y escribe una nota rápida al maestro sobre lo que practicaron. + +- Revisa con tu hijo durante el viaje a casa, luego celebra una victoria específica. + +## Cuándo buscar apoyo adicional + +Si su hijo quiere hacer amigos pero sigue enfrentando los mismos obstáculos, la enseñanza estructurada puede ayudar. Inicie una conversación con nuestro equipo sobre la [terapia ABA](../../aba-therapy) y el [proceso de admisión](../../aba-therapy-intake-process) . O [reserve una consulta gratuita](../../client-consultation) hoy. Atendemos a familias en Scottsdale, Tempe, Mesa, Gilbert y el área metropolitana de Phoenix. + +### Soporte visual para probar + +Para las familias de Arizona: En los días calurosos cuando el parque infantil no es una opción, practiquen juegos sociales durante actividades en interiores como juegos de mesa, proyectos de arte o construcciones con LEGO. La práctica corta y predecible es muy efectiva en el verano de Phoenix. + +## Fuentes que utilizamos al construir planes de comunicación social + +- [NIDCD](https://www.nidcd.nih.gov/health/autism-spectrum-disorder-communication-problems-children) (National Institute on Deafness and Other Communication Disorders): desafíos de comunicación y no verbales en el TEA (Trastorno del Espectro Autista). + +- [Hospital Infantil de Cincinnati](https://www.cincinnatichildrens.org/-/media/Cincinnati-Childrens/Home/service/s/speech/hcp/doctor-info/information-language-PDF-pragmatic-lan-6.pdf) definición de lenguaje pragmático. + +- [NCAEP](https://ncaep.fpg.unc.edu/wp-content/uploads/EBP-Report-2020.pdf) (National Clearinghouse on Autism Evidence and Practice) informe que identifica la modelación, los apoyos visuales, las narrativas sociales, la instrucción mediada por pares y estrategias relacionadas como basadas en evidencia. + +- [Intervenciones mediadas por pares](https://files.eric.ed.gov/fulltext/ED595339.pdf) y la investigación de modelado en video que apoyan el desarrollo de habilidades sociales. + +- [National Autistic Society](https://www.autism.org.uk/advice-and-guidance/topics/family-life-and-relationships/making-friends/parents-and-carers) orientación sobre cómo ayudar a los niños a hacer amigos. + + Preguntas Frecuentes + +## Consejos de Comunicación Social + +### ¿Qué es el lenguaje pragmático en el autismo? + +El lenguaje pragmático es cómo usamos las palabras para relacionarnos con las personas en situaciones reales. Cubre el turno de palabra, el mantenimiento del tema, el espacio personal y cómo el tono y el volumen se ajustan al contexto. Es común que los niños autistas tengan un vocabulario amplio pero aún necesiten enseñanza directa en estas reglas. + +### ¿Está siendo grosero mi hijo cuando no entiende los chistes o interrumpe? + +Normalmente, no. No captar el sarcasmo, las interpretaciones literales y las interrupciones son señales de que se necesitan enseñar la inferencia social y el momento adecuado. Estas habilidades mejoran con la modelación, la práctica y la retroalimentación en entornos de baja presión. + +### ¿Realmente ayuda la práctica entre compañeros? + +Sí. La instrucción mediada por pares se considera una práctica basada en la evidencia para los estudiantes autistas y ha demostrado apoyar las habilidades de interacción social desde la educación preescolar hasta la secundaria. + +### ¿Cómo se diferencia el ABA de la terapia del habla para las habilidades sociales? + +La terapia del habla y lenguaje a menudo se centra en la mecánica y la pragmática del lenguaje. El ABA considera todo el contexto, incluyendo la motivación, el entorno, el refuerzo y la generalización en diferentes entornos. Los dos servicios se complementan bien. + +### ¿Qué soportes visuales deberíamos empezar a utilizar? + +Comienza con herramientas simples como tarjetas de Primero-Luego o mini listas de verificación para una sola rutina. Nuestra visión general de las [Tarjetas Primero-Luego](../../library/first-then-cards-autism-transitions) muestra cómo configurarlas y desvanecerlas a medida que crece la independencia. + +### ¿Cómo consigo ayuda en Arizona? + +Puedes [programar una consulta gratuita](../../client-consultation) o leer más sobre los [servicios de ABA de AIA](../../aba-therapy) y nuestro [proceso de admisión](../../aba-therapy-intake-process) . Apoyamos a las familias en toda el área metropolitana de Phoenix con opciones en el centro y en el hogar, junto con capacitación para cuidadores. + + Previous Post + +###### [Por qué la regulación emocional debería ser el corazón de cada programa de ABA](emotional-regulation-aba) + + Next Post + +###### [Evaluación del Autismo en Arizona: Guía Paso a Paso para Padres](autism-evaluation-diagnosis-arizona-parent-guide) + +### Similar Blog Posts + +![Reunión entre padres e hijos con un clínico en un entorno de evaluación del autismo tranquilo y basado en el juego.](/assets/images/autism-evaluation-expectations_hero.png) + +#### [Qué esperar en la primera evaluación de autismo de su hijo](autism-evaluation-what-to-expect) + +![Niño tomando una pausa de regulación emocional en un carrito de compras - imagen principal](/assets/images/child-shopping-cart-tired-cranky.jpg) + +#### [Por qué la regulación emocional debería ser el corazón de cada programa de ABA](emotional-regulation-aba) + +![Enseñanza de habilidades académicas, sociales, de comunicación e independencia](/assets/images/hero-aba-preschool-az_800x.jpg) + +#### [Ya se inscriben alumnos: Academia Preparatoria AIA para niños de 2 a 6 años](aba-school-readiness-arizona) diff --git a/www/src/content/pages/ar/index.md b/www/src/content/pages/ar/index.md new file mode 100644 index 0000000..d5e091b --- /dev/null +++ b/www/src/content/pages/ar/index.md @@ -0,0 +1,13 @@ +--- +title: "معهد أريزونا للتوحد" +description: "صفحة عربية تمهيدية لمعهد أريزونا للتوحد." +slug: "index" +canonical: "https://www.azinstitute4autism.com/ar" +lang: "ar" +translationKey: "home" +draft: false +--- + + + +تتوفر المقالات العربية الحالية في المكتبة. يرجى مراجعة المحتوى العربي قبل النشر. diff --git a/www/src/content/pages/ar/library.md b/www/src/content/pages/ar/library.md new file mode 100644 index 0000000..c1e4543 --- /dev/null +++ b/www/src/content/pages/ar/library.md @@ -0,0 +1,44 @@ +--- +title: "المكتبة وغرفة الأخبار | معهد أريزونا للتوحد" +description: "مقالات إخبارية حول علاج تحليل السلوك التطبيقي والتعليم الخاص، ودراسات حالة، ووصفات، ومقالات افتتاحية، ودروس تعليمية، وغيرها الكثير... لطلابنا المصابين بالتوحد وحولهم." +slug: "library" +canonical: "https://www.azinstitute4autism.com/ar/library" +lang: "ar" +translationKey: "library" +draft: false +--- +مرحبًا بكم في # مكتبة معهد أريزونا للتوحد 100.120.91.81 ## المكتبة مرحبًا بكم في مكتبة معهد أريزونا للتوحد (AIA)، حيث نشارك معلومات قيّمة واستراتيجيات وموارد لدعم الأفراد المصابين بالتوحد، وأسرهم، والمهنيين في هذا المجال. تستعرض مقالاتنا مواضيع رئيسية في مجال تحليل السلوك التطبيقي (ABA)، بما في ذلك تعليم مهارات الدفاع عن النفس، والاستراتيجيات الاستباقية والتفاعلية، وتقنيات التدخل المبتكرة. + +كما نسلط الضوء على فعاليات المجتمع، وقصص النجاح، والإرشادات من الخبراء لتعزيز الفهم والتمكين. سواء كنت أحد الوالدين أو مقدم رعاية أو معلمًا أو مدافعًا عن حقوق الأفراد المصابين بالتوحد، فإن هدفنا هو تقديم محتوى هادف يساعد الأطفال المصابين بالتوحد على تحقيق أقصى إمكاناتهم في بيئة مليئة بالتعاطف والدعم. + +ابقوا على تواصل معنا ونحن نواصل مشاركة المعرفة والاحتفاء بالتقدم! + + All Post + +- [All Post](library) ###### Popular Posts - [مهارات الوظائف التنفيذية والتوحّد](library/executive-functioning-skills-autism) - [بطاقات "أولاً/ثم": تسهيل الانتقال بين الأنشطة للأطفال المصابين بالتوحّد](library/first-then-cards-autism-transitions) - [التعزيز الإيجابي في علاج تحليل السلوك التطبيقي (ABA) لتشجيع تطوير المهارات](library/positive-reinforcement-techniques) - [إتقان إدارة السلوك: اكتشف الوظائف الأربع للسلوك](library/behavior-management-functions-guide) - [إتقان تقنيات التحليل السلوكي الاستباقية والتفاعلية– احجز استشارتك الآن](library/proactive-reactive-aba-strategies-guide) [![بطاقات](/assets/images/hero-first-then-cards.webp)](library/first-then-cards-autism-transitions) ![رولا دياب، المديرة الإكلينيكية، ماجستير في التربية، BCBA، LBA](/assets/images/rula-diab-avatar.jpg) [رولا دياب، المديرة الإكلينيكية، ماجستير في التربية، BCBA، LBA](library/author/rula-diab) 1 سبتمبر 2025 ##### [بطاقات "أولاً/ثم": تسهيل الانتقال بين الأنشطة للأطفال المصابين بالتوحّد](library/first-then-cards-autism-transitions) تعرّف على كيفية دعم بطاقات أولاً/ثم للانتقال السلس والسلوكيات الإيجابية لدى الأطفال المصابين... 2 minutes read [اقرأ المزيد](library/first-then-cards-autism-transitions) 0 views + +0 + +![التعزيز الإيجابي في علاج تحليل السلوك التطبيقي (ABA) لتشجيع تطوير المهارات](/assets/images/hero-positive-reinforcement-techniques.webp) ![رولا دياب، المديرة الإكلينيكية، ماجستير في التربية، BCBA، LBA](/assets/images/rula-diab-avatar.jpg) [رولا دياب، المديرة الإكلينيكية، ماجستير في التربية، BCBA، LBA](library/author/rula-diab) 4 أغسطس 2025 ##### [التعزيز الإيجابي في علاج تحليل السلوك التطبيقي (ABA) لتشجيع تطوير المهارات](library/positive-reinforcement-techniques) تعلّم أساليب التعزيز الإيجابي الفعّالة لتشجيع السلوكيات المرغوبة لدى الأطفال. اكتشف نصائح وأدوات... 4 minutes read [اقرأ المزيد](library/positive-reinforcement-techniques) 0 views + +0 + +![إتقان تقنيات التحليل السلوكي الاستباقية والتفاعلية– احجز استشارتك الآن](/assets/images/hero-proactive-reactive-strategies.webp) ![رولا دياب، المديرة الإكلينيكية، ماجستير في التربية، BCBA، LBA](/assets/images/rula-diab-avatar.jpg) [رولا دياب، المديرة الإكلينيكية، ماجستير في التربية، BCBA، LBA](library/author/rula-diab) 18 يوليو 2025 ##### [إتقان تقنيات التحليل السلوكي الاستباقية والتفاعلية– احجز استشارتك الآن](library/proactive-reactive-aba-strategies-guide) تعلم استراتيجيات الـ ABA الاستباقية والتفاعلية لخفض السلوكيات المشكلية وتعزيز النجاح. اقرأ الآن... 2 minutes read [اقرأ المزيد](library/proactive-reactive-aba-strategies-guide) 0 views + +0 + +![مهارات الوظائف التنفيذية والتوحّد](/assets/images/hero-executive-functioning-skills-autism.webp) ![رولا دياب، المديرة الإكلينيكية، ماجستير في التربية، BCBA، LBA](/assets/images/rula-diab-avatar.jpg) [رولا دياب، المديرة الإكلينيكية، ماجستير في التربية، BCBA، LBA](library/author/rula-diab) 1 مايو 2025 ##### [مهارات الوظائف التنفيذية والتوحّد](library/executive-functioning-skills-autism) استراتيجيات وظائف تنفيذية قائمة على الأدلة للتوحّد: دعائم بصرية للتخطيط، وتنظيم الانفعالات، وضبط... 3 minutes read [اقرأ المزيد](library/executive-functioning-skills-autism) 0 views + +0 + +![دليل تعليم مهارات الدفاع عن النفس في ABA](/assets/images/hero-teach-self-advocacy.webp) ![رولا دياب، المديرة الإكلينيكية، ماجستير في التربية، BCBA، LBA](/assets/images/rula-diab-avatar.jpg) [رولا دياب، المديرة الإكلينيكية، ماجستير في التربية، BCBA، LBA](library/author/rula-diab) 2 ديسمبر 2024 ##### [دليل تعليم مهارات الدفاع عن النفس في ABA](library/autism-self-advocacy-skills-aba) مكّن طفلك بعلاج ABA فردي في معهد أريزونا للتوحّد. احجز استشارة مجانية اليوم وابدأ رعاية مخصّصة... 2 minutes read [اقرأ المزيد](library/autism-self-advocacy-skills-aba) 0 views + +0 + +![العودة إلى المدرسة بسهولة | تدخلات السلوك التحليلية (ABA) من خلال المقدمات والنتائج](/assets/images/hero-back-to-school.webp) ![رولا دياب، المديرة الإكلينيكية، ماجستير في التربية، BCBA، LBA](/assets/images/rula-diab-avatar.jpg) [رولا دياب، المديرة الإكلينيكية، ماجستير في التربية، BCBA، LBA](library/author/rula-diab) 30 يوليو 2024 ##### [العودة إلى المدرسة بسهولة | تدخلات السلوك التحليلية (ABA) من خلال المقدمات والنتائج](library/aba-school-readiness-guide) خفّف توتر العودة إلى المدرسة وعزّز الاستعداد المدرسي باستراتيجيات بسيطة للمقدمات والنتائج، وتكتيكات... 1 minute read [اقرأ المزيد](library/aba-school-readiness-guide) 0 views + +0 + +![إتقان إدارة السلوك: اكتشف الوظائف الأربع للسلوك](/assets/images/hero-behavior-functions-management.webp) ![رولا دياب، المديرة الإكلينيكية، ماجستير في التربية، BCBA، LBA](/assets/images/rula-diab-avatar.jpg) [رولا دياب، المديرة الإكلينيكية، ماجستير في التربية، BCBA، LBA](library/author/rula-diab) 28 يونيو 2024 ##### [إتقان إدارة السلوك: اكتشف الوظائف الأربع للسلوك](library/behavior-management-functions-guide) اكتشف لماذا تحدث السلوكيات وكيفية تعليم بدائل إيجابية عبر دليلنا المبسّط. بادر الآن لروتينات أكثر... 1 minute read [اقرأ المزيد](library/behavior-management-functions-guide) 0 views + +0 diff --git a/www/src/content/pages/en/aba-therapy-intake-process.md b/www/src/content/pages/en/aba-therapy-intake-process.md new file mode 100644 index 0000000..2184531 --- /dev/null +++ b/www/src/content/pages/en/aba-therapy-intake-process.md @@ -0,0 +1,74 @@ +--- +title: "Starting ABA Therapy Step-by-Step Guide | Arizona Institute for Autism" +description: "Discover how to begin ABA therapy at Arizona Institute for Autism. Our simple, supportive intake process guides your child toward growth and success." +slug: "aba-therapy-intake-process" +canonical: "https://www.azinstitute4autism.com/aba-therapy-intake-process" +lang: "en" +translationKey: "aba-therapy-intake-process" +draft: false +--- +## Getting Started with ABA Therapy at the Arizona Institute for Autism + +Starting Applied Behavior Analysis (ABA) therapy with the Arizona Institute for Autism (AIA) is a simple, supportive, and clearly guided process. Follow the steps below to begin your child’s journey toward growth, development, and success. + +### 1. Complete the Learner Information Form + +Begin by completing our Learner Information Packet, which collects essential information about your child. This packet provides our team with initial insights to understand your child’s unique needs. + +After submitting the packet, our Client Advocate will promptly reach out to discuss the next steps, answer your questions, and guide you through the intake process. We are here to support you every step of the way, ensuring you feel comfortable and informed from the start. + +### 2. Speak with an AIA Client Advocate + +Our dedicated Client Advocate team is passionate about assisting families through every aspect of starting ABA therapy. During this initial conversation, your Advocate will: + +- Listen and learn about your child’s specific needs and circumstances. + +- Clearly explain the services and support available at AIA. + +- Address any questions or concerns you might have. + +- Guide you smoothly through each step of the intake and onboarding process. + +Our goal is to ensure your experience is supportive, transparent, and stress-free from day one. + +### 3. Fill Out and Sign the Client Intake Packet + +The next step involves completing and signing our Client Intake Packet. This packet gathers detailed information about your child's strengths, challenges, and developmental history. + +Providing thorough and accurate information at this stage helps our clinical team prepare effectively for your child’s assessment, allowing us to tailor our therapeutic approach specifically to your child's individual needs and goals. + +### 4. Verify Insurance and Billing Information + +To ensure a smooth start to therapy, our billing manager will verify your insurance coverage and benefits once your intake packet is complete. Our billing team will: + +- Review your insurance plan details, including ABA therapy coverage. + +- Clarify your co-pays, deductibles, and any required authorizations. + +- Answer your billing-related questions, maintaining transparency and clarity. + +We strive to simplify the financial aspect of ABA therapy, guiding you through the process so you can focus confidently on your child’s care. + +### 5. Schedule Your Child’s Assessment + +With your intake and billing details finalized, our Client Advocate will assist you in scheduling a comprehensive assessment with our clinical team. + +We’ll work closely with you to find an appointment time that suits your family’s schedule and your child’s comfort. This assessment is a vital step in understanding your child’s strengths and identifying areas where they need targeted support. + +The information gathered during the assessment will guide the creation of a personalized treatment plan specifically designed to support your child’s growth and developmental milestones. + +### 6. Collaborate on a Personalized Care Plan + +At the Arizona Institute for Autism, collaboration is fundamental to your child's long-term success. Consistent communication and coordination among our team, your family, caregivers, educators, and external clinicians help ensure clear expectations, effective skill generalization, and sustained progress. + +Once therapy begins, your child’s progress will be closely supervised by a Board Certified Behavior Analyst (BCBA), who will regularly monitor and adjust their individualized therapy program. Parent involvement is also critical to achieving meaningful progress, so we offer weekly parent consultation sessions. + +These sessions will empower you with knowledge about your child's progress, strategies to support ABA therapy at home, and ongoing guidance to help your child reach their full potential. + + Ready to Begin? + +## Early Intervention Makes a Difference + +We're excited to partner with you on this journey to support your child’s growth and success! + + Take the First Step diff --git a/www/src/content/pages/en/aba-therapy.md b/www/src/content/pages/en/aba-therapy.md new file mode 100644 index 0000000..398a699 --- /dev/null +++ b/www/src/content/pages/en/aba-therapy.md @@ -0,0 +1,60 @@ +--- +title: "Integrated ABA Therapy for Autism | Arizona Institute for Autism" +description: "Empower your child for life with one-on-one integrated ABA therapy. Book a free consultation and join our supportive autism community!" +slug: "aba-therapy" +canonical: "https://www.azinstitute4autism.com/aba-therapy" +lang: "en" +translationKey: "aba-therapy" +draft: false +--- +## ABA Therapy + +The Arizona Institute for Autism offers a variety of evidence-based, clinical services for children who have been diagnosed with Autism Spectrum Disorder or other related developmental disorders. Depending on your individual preference as well as your child's specific needs, some of our comprehensive clinical services are conducted in our institute with a focus on helping your child attain a better quality of life & and a greater sense of independence. + +Our ABA Therapy programs address the comprehensive needs of each learner, equipping children with the skills necessary to become independent learners. + +### Services We Offer + + Individual Learning + +#### ABA Therapy 1:1 Program + +![aba-daughter-toddler-belonging](/assets/images/aba-daughter-toddler-belonging.webp) + +The ABA Therapy 1:1 program, designed for children aged 2 to 8 years, adopts an integrative approach aimed at fostering independent learning. The Arizona Institute for Autism employs a naturalistic, neurodiversity-affirming model within its applied behavior analysis (ABA) program, incorporating essential insights from neuroscientific research. + +Our ABA therapy focuses on improving socially significant behaviors by using positive reinforcement, systematic teaching, and data-driven methods. AIA Clinicians focus on tailoring our services to accommodate the unique neurodevelopmental profiles of each learner. + + Group Learning + +#### ABA Therapy 1:2 Academic Readiness Program + +![aba-academic-readiness](/assets/images/aba-academic-readiness.webp) + +The ABA Therapy 1:2 Academic Readiness Program is specifically designed for children aged 2 to 6 years and utilizes a tailored group therapy approach to prepare learners for successful integration into the mainstream classroom.This program incorporates the [AIA Preparatory Academy©](https://aiaprep.org/) curriculum, combining the esteemed Montessori method with Applied Behavior Analysis (ABA). This integrated approach fosters a supportive environment tailored to the individual learning styles and strengths of our learners, facilitating the development of essential social, communication, cognitive, and motor skills necessary for success in mainstream classrooms. + +The primary developmental milestones emphasized in this program include social, communication, cognitive, social-emotional, executive functioning, and motor skills. Throughout the Academic Readiness Program, your child will engage in a variety of structured electives such as speech therapy, recreational therapy, and music therapy. These electives, including circle time, arts and crafts, music, play, and other group interactions, that are designed to support skills development in these key areas. + + Family Education + +#### Parent Consultation Program + +![aba-daughter-toddler-belonging](/assets/images/aba-speech-therapy.webp) + +We believe that parents, siblings and caregivers play a crucial role in the success of their child’s therapy. That’s why we offer Parent Consultation Services as part of our comprehensive ABA program. + +Our goal is to empower families with the knowledge, tools, and support they need to confidently help their child navigate this developmental journey. Parent consultation is a vital component of ABA therapy, designed to ensure that the progress made during therapy extends beyond the clinic. + +These consultations provide parents with personalized guidance, training, and strategies tailored to their child’s unique needs. + +[Make an Appointment](/client-consultation) + +## About Rula Diab, Chief Clinical Director, BCBA, LBA + +![rula-diab-1](/assets/images/rula-diab-1.webp) + +Rula Diab, M.Ed, BCBA, LBA, is the Clinical Director at the Arizona Institute for Autism and an industry expert with over 15 years of experience in Special Education and Behavioral Analysis. In her role as Clinical Director, Diab guides and shapes the clinical practices and ABA therapy programs at the Arizona Institute for Autism. + +Rula collaborates closely with practitioners, academics, policymakers, teachers, families, and, most significantly, children with developmental disabilities throughout Arizona. + +Recognizing significant gaps in the way Applied Behavior Analysis (ABA) principles were traditionally implemented, Rula pioneered the Arizona Institute for Autism educational model. This innovative approach celebrates individuality while honoring dignity and nurturing each child's unique interests, preferences, and motivations. She firmly believes that education should be engaging and enjoyable for every child. diff --git a/www/src/content/pages/en/about.md b/www/src/content/pages/en/about.md new file mode 100644 index 0000000..f3fa7f5 --- /dev/null +++ b/www/src/content/pages/en/about.md @@ -0,0 +1,30 @@ +--- +title: "About Us | Arizona Institute for Autism | Scottsdale" +description: "Arizona Institute for Autism (AIA) is a comprehensive wellness center offering behavioral health, education, and consultation for individuals with Autism." +slug: "about" +canonical: "https://www.azinstitute4autism.com/about" +lang: "en" +translationKey: "about" +draft: false +--- +## Our Story + +The Arizona Institute for Autism (AIA) was founded in 2018 by Clinical Director Rula Diab, M.Ed, BCBA, LBA. Ms. Diab is an industry expert with over 15 years of experience in the field of Special Education and Behavioral Analysis. + +As the founder and Clinical Director, Rula Diab, leads the Arizona Institute for Autism’s clinical efforts, community outreach, and managing network programming with current local businesses including Arizona State University and Phoenix School District. As a Special Education expert, Ms. Diab works with practitioners, academics, policymakers, teachers, families, and, most importantly, children with developmental disabilities throughout Arizona. After noticing gaps in the way practitioners applied ABA principles, Rula pioneered the AIA model of education, a model centered on recognizing each child’s individuality and dignity by cultivating their natural interests, preferences, and motivators. Education doesn’t have to be boring, and that should be the case for all children. + +## Our Mission + +At AIA, our mission is to improve special education and strengthen communities throughout Arizona. Every day, our team of highly trained clinicians, paraprofessionals, educators, and consultants works with one goal in mind: to support the behavioral and educational development of our 'kiddos' in every way possible. + +We accomplish this by delivering clinical treatments, including ABA therapy services, and educational support to children with Autism Spectrum Disorder and other developmental disorders. And since every child is unique, we work with each family differently to understand their individual needs before we apply our insights through customized programs. + +We also bring our 'can-do' mentality to the classroom. AIA works hand-in-hand with SPED teachers and school leaders to address their unique challenges and enhance the classroom environment for their students. Our staff believes that, with the right resources & support, every child can achieve their potential. So, every day, we do everything we can to support each one of our 'kiddos' in the pursuit of their individual potential. + +## Our Commitment + +- Integrity Integrity is the essence of who we are and at the foundation of everything we do. We approach our relationships with integrity and always adhere to the highest ethical principles. + +- Empowerment A heart that serves and empowers others is essential to our success. We are passionate about motivating and encouraging our kiddos and learners for success. + +- Excellence At AIA, we strive for excellence in everything we do. We go above and beyond in providing results to support our community partners, customers, kiddos, and everyone in the AIA family. diff --git a/www/src/content/pages/en/autism-evaluations.md b/www/src/content/pages/en/autism-evaluations.md new file mode 100644 index 0000000..1a501cb --- /dev/null +++ b/www/src/content/pages/en/autism-evaluations.md @@ -0,0 +1,50 @@ +--- +title: "Accurate Autism Assessment for Children | Arizona Institute for Autism" +description: "Get comprehensive childhood autism evaluations in Scottsdale, AZ. Our expert team provides accurate assessments to support your child" +slug: "autism-evaluations" +canonical: "https://www.azinstitute4autism.com/autism-evaluations" +lang: "en" +translationKey: "autism-evaluations" +draft: false +--- +## Autism Evaluations + +At the Arizona Institute for Autism, there is no single lab test to diagnose autism. Instead, our team conducts comprehensive evaluations through a series of observations and assessments to understand the underlying causes of your child's symptoms. + +With an accurate diagnosis of [Autism Spectrum Disorder (ASD)](https://www.childrens.com/specialties-services/conditions/autism-spectrum-disorder), we can provide your child with personalized support and specialized care tailored to their unique needs. + +### Conditions We Evaluate and Treat + +![hero-home](/assets/images/hero-home.jpg) + +- Autism Spectrum Disorder (ASD) + +- Attention-Deficit/Hyperactivity Disorder (ADHD) + +### Evaluation Services Offered + +#### ASD Learner Targeted Evaluation + +- Recommended when there are specific concerns about Autism Spectrum Disorder. + +#### ADHD Learner Targeted Evaluation + +- Recommended when there are specific concerns about Attention-Deficit/Hyperactivity Disorder. + +#### Combined ASD/ADHD Learner Targeted Evaluation + +- Recommended when there are broader concerns related to IQ, executive functioning, and social-emotional development, particularly if ASD and ADHD are both suspected. + +### How Pediatric Autism Diagnostic Evaluations Work + +At the Arizona Institute for Autism, we diagnose autism by carefully observing your child's behavior and reviewing developmental history provided by caregivers. Evaluations involve a multidisciplinary team, often including professionals in psychology, speech-language pathology, psychiatry, and neurology. + +Common evaluation methods include: + +#### Autism Diagnostic Observation Schedule (ADOS) + +ADOS is a structured evaluation tool used by our specialists to assess behaviors related to autism spectrum disorders. Appropriate for children of all ages, ADOS helps us understand your child's social and language skills and overall developmental level. + +This evaluation involves observing how your child interacts with various play-based social scenarios. For younger children, this may include activities like playing with blocks or having a snack, while older children who communicate verbally may participate in conversations about daily activities, such as attending school. + +[Make an Appointment](/client-consultation) diff --git a/www/src/content/pages/en/careers.md b/www/src/content/pages/en/careers.md new file mode 100644 index 0000000..70b2025 --- /dev/null +++ b/www/src/content/pages/en/careers.md @@ -0,0 +1,170 @@ +--- +title: "Join Our Team | Autism Careers in AZ | Arizona Institute for Autism" +description: "Join our caring team. Arizona Institute for Autism is hiring compassionate professionals dedicated to supporting individuals with autism. Apply online now!" +slug: "careers" +canonical: "https://www.azinstitute4autism.com/careers" +lang: "en" +translationKey: "careers" +draft: false +--- +## Join the AIA Team + +Apply to join the Arizona Institute for Autism (AIA) team today. We are on a mission to improve special education and strengthen communities throughout Arizona. + +Our talented and passionate employees are a critical piece to the high-quality Autism services we provide along with our commitment to behavioral health, school solutions, and community outreach. + +[View Open Positions](https://www.indeed.com/cmp/Arizona-Institute-For-Autism/jobs) + +### Our Benefits + +- Competitive Salary + +- Giveback Opportunity + +- Medical Insurance Plan + +- Dental Life Insurance Plan + +- Vision Insurance Plan + +- Life Insurance Plan + +- 401 K + +- Vacation Time + +- Sick Time + +![integrated aba model](/assets/images/integrated-aba-model_400x300.webp) + +![compassionate aia staff members](/assets/images/proud-aia-staff.webp) + +### Our Diverse Culture + +- Family-Oriented + +- Supportive + +- Educational + +- Motivating + +- Transparent + +- Inclusive + +![toddler-bcba-support](/assets/images/toddler-bcba-support.webp) + +![aba-learn-play-skills](/assets/images/aba-learn-play-skills.webp) + +### See Your Impact + +The work we do has a direct impact on our learners, families, our communities, our team members, and the healthcare industry. + +Every day you'll work with others driven to make a difference through transforming primary autism and pediatric care. + +![scottsdale location ribbon-cutting ceremony](/assets/images/scottsdale-ribbon-cutting.webp) + +### Expand & Explore Your Potential + +We're growing fast, and that makes us a great place for you to grow. Focus on learning, discovering, and trying new areas that interest you. Advance in your chosen field. We'll help you get there. + +### Scholarships Awarded in Partnership with GCU + +Through AIA's partnership with GCU , all AIA employees, along with their spouses and dependents, are eligible for a tuition discount when they enroll in one of GCU's programs. + +![logo - grand canyon university](/assets/images/logo-gcu.webp) + +### Build Your Resume with BCBA Internships & Practicum + +At the Arizona Institute for Autism, we afford students at Arizona State University to gain practicum experience. Due to our partnership with the Arizona State University Department of Psychology, future Board Certified Behavior Analysts will meet the training requirements of the ASU Department of Psychology MS ABA Program and the BACB . + +Students will be given the opportunity to obtain thorough behavior-analytic experience and training in a fashion that fulfills its service provision related functions as an organization, so long as those functions are analytic in nature and the goals of the practicum experience are in accordance with the Behavior Analyst Certification Board. + +![asu](/assets/images/asu.webp) + +## Choose Your Clinical Career Path + +Work someone you love. Begin your journey with Arizona's leading ABA Integrated Therapy provider today! + +- Behavioral Technician + +- Registered Behavioral Technician (RBT) + +- Senior Behavioral Technician, RBT + +- Clinical Case Supervisor + +- BCBA (Board Certified Behavioral Analyst) + +- Clinical Assistant Director, BCBA + +- Clinical Director, BCBA + +![the council of autism service providers member - logo](/assets/images/casp-member-logo.webp) + +![logo-BACB](/assets/images/logo-BACB.png) + +[View Open Positions](https://www.indeed.com/cmp/Arizona-Institute-For-Autism/jobs) + +## Benefits of Working at Arizona Institute for Autism + +![competitive-compensation_blue](/assets/images/competitive-compensation_blue.svg) + +### Competitive Compensation + +![flexible-scheduling_blue](/assets/images/flexible-scheduling_blue.svg) + +### Flexible Scheduling + +![caseload-teamwork_blue](/assets/images/caseload-teamwork_blue.svg) + +### Caseload Teamwork + +![career-growth_blue](/assets/images/career-growth_blue.svg) + +### Career Growth + +![monthly-training_blue](/assets/images/monthly-training_blue.svg) + +### Monthly Training + +![diversity-inclusion-opportunity_blue](/assets/images/diversity-inclusion-opportunity_blue.svg) + +### Diversity & Inclusive Opportunities + +## Your Clinical Path to Success + +Behavioral Technician Registered Behavioral Technician Senior Behavioral Technician + +Clinical Case Supervisor BCBA Clinical Assistant Director Clinical Director + +### Find Your Path + +If you have an interest, we have a department for you to step into and teams to support you in your growth. + +![clinical-careers](/assets/images/clinical-careers.webp) + +#### Clinical + +Bring your specialized knowledge to the clinical team. You'll get the training tools you need to serve a community you'll love. + +![non-clinical-careers](/assets/images/non-clinical-careers.webp) + +#### Non-Clinical + +Build a career you love as a member of our non-clinical team. In this role, you'll service team members, families, and the community while ensuring quality service. + +![corporate-center-team-support](/assets/images/corporate-center-team-support.webp) + +#### Center Support + +Take a fresh and innovative approach as a member of the Corporate team. Take on new challenges and opportunities to help shape the future of Pediatric care. + +![internships-practicum](/assets/images/internships-practicum.webp) + +#### Internships + +Our specialty interns help shape the future of our center carefully curated clinical, operations, advocacy, people, and other departments. + +[View Open Positions](https://www.indeed.com/cmp/Arizona-Institute-For-Autism/jobs) diff --git a/www/src/content/pages/en/client-consultation.md b/www/src/content/pages/en/client-consultation.md new file mode 100644 index 0000000..830134b --- /dev/null +++ b/www/src/content/pages/en/client-consultation.md @@ -0,0 +1,14 @@ +--- +title: "Client Consultation Form | Arizona Institute for Autism | Scottsdale" +description: "Schedule your free consultation with a Client Advocate at Arizona Institute for Autism to find out what we can do for your child diagnosed with autism." +slug: "client-consultation" +canonical: "https://www.azinstitute4autism.com/client-consultation" +lang: "en" +translationKey: "client-consultation" +draft: false +--- +Here at the Arizona Institute for Autism (AIA), we have a no wait list policy and provide expert clinical care for children and teens diagnosed with autism. We currently serve families in Scottsdale, Gilbert, Mesa, Tempe, and Phoenix Metropolitan areas. + +## Our ABA Therapy Services + +Along with ABA therapy for children and teens, our services include autism advocacy support, evaluation and assessment support, and family training. diff --git a/www/src/content/pages/en/client-forms.md b/www/src/content/pages/en/client-forms.md new file mode 100644 index 0000000..57fa524 --- /dev/null +++ b/www/src/content/pages/en/client-forms.md @@ -0,0 +1,64 @@ +--- +title: "Essential Forms for Autism Support | Arizona Institute for Autism" +description: "Conveniently access and download autism service forms from Arizona Institute for Autism. Get started right away with our simplified intake process." +slug: "client-forms" +canonical: "https://www.azinstitute4autism.com/client-forms" +lang: "en" +translationKey: "client-forms" +draft: false +--- +## Client Forms + +The intake process to become a client at the Arizona Institute for Autism: + +- Step 1: Complete the client Intake form for the selected program + +- Step 2: Read and sign all intake agreements with the assigned Client Case Advocate + +- Step 3: Complete the Clinical Learner Pre-Assessment Forms + +- Step 4: Get Approved + +- Step 5: Start Service + +### Behavioral + +#### ABA Therapy Client Forms + +*Autism Diagnosis Required + +- Step 1: ABA CR Client Intake Form [Step 1: Start Signing](https://members.centralreach.com/?public=true#forms/form?id=DF3D21C5-3A33-4906-9803-3E4580D32277) + +- Step 2: ABA Client Intake Agreement Form [Step 2: Start Signing](https://form.jotform.com/Arizona_Institute/aba-intake-agreement-form) + +- Step 3: ABA Learner Intake Pre-Assessment Form [Step 3: Start Signing](https://form.jotform.com/Arizona_Institute/aba-learner-pre-assessment-form) + +- Step 4: ABA Parent Handbook Signature [Step 4: Parent Handbook](https://www.jotform.com/sign/232958430113048/invite/01hdfv3jsd3f45ea0a9ba20e42) + +*Once the intake forms are complete, we will contact you to schedule your assessment screening with your assigned provider. Once your assessment has been signed of and you're approved for service, a Client Case Advocate will confirm your selected start date for quality service. + +### Psychological + +#### Psychological Client Forms + +*Autism Diagnosis Not Required + +- Step 1: PSY CR Client Intake Form [Step 1: Start Signing](https://members.centralreach.com/?public=true#forms/form?id=DF3D21C5-3A33-4906-9803-3E4580D32277) + +- Step 2: PSY Client Intake Agreement Form [Step 2: Start Signing](https://form.jotform.com/Arizona_Institute/psy-intake-agreement-form) + +- Step 3: PSY Learner Intake Pre-Assessment Form [Step 3: Start Signing](https://form.jotform.com/Arizona_Institute/aia-psychological-pre-assessment-fo) + +- Step 4: PSY Handbooks [Step 4a: Print & Sign (Age 2 - 5)](/assets/downloads/psychological-assessment-ages-2-5.pdf) [Step 4b: Print & Sign (Ages 6+)](/assets/downloads/psychological-assessment-ages-6+.pdf) + +### Sociological + +#### Learner Social Club Client Forms + +*Autism Diagnosis Not Required . Both neurodivergent and neurotypical learners are welcome . + +- Step 1: Learner Social Club CR Client Intake Form [Step 1: Start Signing](https://members.centralreach.com/?public=true#forms/form?id=DF3D21C5-3A33-4906-9803-3E4580D32277) + +- Step 2: Learner Social Club Client Intake Agreement Form [Step 2: Start Signing](https://form.jotform.com/Arizona_Institute/aia-learner-social-club-intake-agre) + +- Step 3: AIA Learner Intake Pre-Assessment Form [Step 3: Start Signing](https://form.jotform.com/Arizona_Institute/aba-learner-pre-assessment-form) diff --git a/www/src/content/pages/en/contact.md b/www/src/content/pages/en/contact.md new file mode 100644 index 0000000..791e480 --- /dev/null +++ b/www/src/content/pages/en/contact.md @@ -0,0 +1,30 @@ +--- +title: "Contact AIA | Arizona Institute for Autism | Scottsdale" +description: "Reach out to learn more about our comprehensive wellness services for children with autism, including behavioral health, education, and consultation." +slug: "contact" +canonical: "https://www.azinstitute4autism.com/contact" +lang: "en" +translationKey: "contact" +draft: false +--- +## Schedule a Tour + +Reach out to one of our expert Client Advocates to see if ABA-integrated therapy is right for your learner. + + Schedule Tour + +## Reach Out + +If you have questions about any of our services and programs, feel free to use the contact form on this page. You may also call or email using the following information. + +General Inquiries: 9907-786 (084) + +Billing Inquiries: 9240-807 (206) + +Email: moc.msitua4etutitsniza@ofni + +Address: 8901 E. Raintree Drive, St #160 Scottsdale, AZ 85260 + +Hours: Monday - Friday, 8am - 6pm MST + +### Contact AIA diff --git a/www/src/content/pages/en/donate-autism-giveback.md b/www/src/content/pages/en/donate-autism-giveback.md new file mode 100644 index 0000000..0a9ae05 --- /dev/null +++ b/www/src/content/pages/en/donate-autism-giveback.md @@ -0,0 +1,32 @@ +--- +title: "Help Autism Families Thrive | Donate to Arizona Institute for Autism" +description: "Empower families of children with autism. Donate now to help expand therapy, education, research, & community support. Your contribution transforms lives." +slug: "donate-autism-giveback" +canonical: "https://www.azinstitute4autism.com/donate-autism-giveback" +lang: "en" +translationKey: "donate-autism-giveback" +draft: false +--- +## Ways to Giveback + +Every act of generosity, no matter how big or small, makes a difference at the Arizona Institute for Autism. Whether you donate items directly, support our Amazon iGiveback Wishlist, or contribute to our 501(c)(3) public charity, your support helps improve the lives of children with autism, their families, and the communities around them. + +![giveback donation gift](/assets/images/giveback-donation-gift.webp) + +### Give the Gift of a Smile! + +Visit AIA’s Amazon iGiveback Wishlist today, pick an item (or two!), and help us turn everyday needs into moments of happiness and growth. + + View our Amazon Wishlist + +### Host a Fundraiser + +Would you like to host a fundraiser to benefit the Arizona Institute for Autism? Please contact us at moc.msitua4etutitsniza@ofni and a member of our team will be in touch to discuss next steps! All potential third party events will be evaluated in terms of their alignment with Arizona Institute for Autism's mission. + +## Community 4 Autism + +A 501(c)(3) nonprofit organization (EIN 92-2808564), Community 4 Autism was established in June 2023. Your tax-deductible donation directly supports families of children and individuals diagnosed with autism. + +![Community 4 Autism - Nonprofit Giveback Solution](/assets/images/community-4-autism-logo-blue-1.png) + + Donate with GivingFountain diff --git a/www/src/content/pages/en/employee-portal.md b/www/src/content/pages/en/employee-portal.md new file mode 100644 index 0000000..2c9d058 --- /dev/null +++ b/www/src/content/pages/en/employee-portal.md @@ -0,0 +1,9 @@ +--- +title: "AIA Employee Portal | Arizona Institute for Autism" +description: "Information, forms, and resources to help guide employees during their tenure with Arizona Institute for Autism." +slug: "employee-portal" +canonical: "https://www.azinstitute4autism.com/employee-portal" +lang: "en" +translationKey: "employee-portal" +draft: false +--- diff --git a/www/src/content/pages/en/faqs.md b/www/src/content/pages/en/faqs.md new file mode 100644 index 0000000..9b6f988 --- /dev/null +++ b/www/src/content/pages/en/faqs.md @@ -0,0 +1,768 @@ +--- +title: "Helpful Autism Diagnosis & Therapy FAQs | Arizona Institute for Autism" +description: "Discover how ABA therapy works at Arizona Institute for Autism. Explore assessments, program design, and prompt fading FAQs to empower your child today." +slug: "faqs" +canonical: "https://www.azinstitute4autism.com/faqs" +lang: "en" +translationKey: "faqs" +draft: false +--- +## FAQs + +## From Questions to Confidence! + +Whether you’re just beginning to explore ABA (Applied Behavior Analysis) or you’ve already seen its impact and want to learn more, this comprehensive FAQ is designed with you in mind. + +You’ll learn how our BCBA s (Board Certified Behavior Analysts) and RBT s (Registered Behavior Technicians) collaborate to create individualized plans, break skills into achievable steps, and use data-driven methods to monitor progress. We’ll walk you through each phase of the therapeutic journey, from initial assessment and program design to prompt fading, generalization, and family training, so you know exactly what to expect when your learner joins us. + +## Questions & Answers + +### What is ABA? + +Applied Behavior Analysis (ABA) is an evidence-based approach that uses learning theory to enhance socially important behaviors. Carefully analyzing how behavior works by considering the Discriminative Stimulus (Sd) , the Response (R) , and the Reinforcing Stimulus (Sr), therapists break skills into manageable steps, build motivation, and reinforce successes. Over time, desired behaviors increase while interfering behaviors decrease. + +### How does ABA work in practice? + +- Assessment: A Board Certified Behavior Analyst (BCBA) evaluates your learner’s strengths, challenges, and environment. + +- Program Design: Skills are divided into component parts, from basic manding (requesting) to complex social exchanges. + +- Implementation: Registered Behavior Technicians (RBTs), under BCBA supervision, deliver one-on-one instruction, carefully delivering prompts and reinforcement. + +- Prompt Fading: As learners master steps, prompts are gradually reduced so cues (Sd’s) and rewards (Sr’s) become more natural. + +- Data Collection: Every session is tracked (frequency, accuracy, independence) to help us identify learners' progress and needs. + +- Generalization: Skills are practiced across different individuals and settings to ensure they carry over into everyday life. + +### Who can benefit from ABA? + +While ABA is most commonly associated with autism spectrum disorders, its principles apply to many developmental and behavioral challenges. Children as young as 18 months can begin to see gains, with the brain’s greatest plasticity occurring between ages 1 and 10 . However, learners of any age can make meaningful progress when programs are tailored to their needs. + +### How many hours of ABA does my learner need? + +Research supports that 20–40 hours per week of intensive ABA therapy can significantly improve developmental trajectories and help bridge the gaps with typical peers. However, hours are based on individual clinical recommendations and tailored to each child’s unique needs. + +At the Arizona Institute for Autism, we require a minimum of 20 hours/week. However, final recommendations are determined through a comprehensive needs assessment conducted during the intake and initial evaluation process. + +### Who is a BCBA and why do I need one? + +A Board Certified Behavior Analyst (BCBA) + +- Holds a master’s degree in behavior analysis and has passed a national certification exam + +- Conducts assessments, designs, oversees, and adjusts intervention plans + +- Trains RBTs and parents to implement strategies ethically and effectively + +By having a BCBA on your team, you ensure your ABA program is guided by the latest research and professional standards. + +### What qualities should I look for in a Registered Behavioral Technician or Therapist? + +Great ABA therapists blend empathy with analytic thinking : + +- Warmth & Playfulness: To build trusting connections + +- Curiosity & Creativity: To find motivating activities + +- Reliability & Consistency: To reinforce progress + +- Patience & Persistence: To navigate setbacks and celebrate small wins + +### How are goals set and progress measured? + +- Individualized Care Plans: Every learner has a unique profile, so goals are based on developmental levels and family priorities. + +- Data-Driven Decisions: We track each objective—accuracy, independence, prompt level—and review weekly with families during Parent Consultation sessions. + +- Regular Updates: Your BCBA meets with you to review programs and data, celebrate successes, and plan next steps. + +### What is prompt fading and why is it important? + +Prompt fading is the step-by-step removal of adult assistance so that learners come to respond to natural cues on their own. Rather than jumping from full support to no support, we guide each child through a carefully timed sequence: + +- Full physical prompt (Hand-over-hand guidance) + +- Partial physical prompt (Light touch or guiding pressure) + +- Model prompt (Therapist demonstrates the correct response) + +- Gesture or visual prompt (Pointing, eye gaze, picture cue) + +- Verbal prompt (“What do you say?” or a vocal hint) + +- Natural cue only (No additional prompts—learner responds independently) + +#### Why We Fade Prompts Gradually + +- Promotes Independence: By easing off support only when a skill is reliably mastered, learners build confidence and self-reliance. + +- Prevents Prompt Dependence: Moving too slowly can cause a child to wait for help; moving too quickly can lead to frustration or errors. A measured pace ensures true mastery. + +- Ensures Generalization: When prompts match real-world cues, such as natural instructions or environmental signals, skills transfer more smoothly to school, home, and community settings. + +#### How We Decide When to Fade + +- Data-Driven Decisions: We track each learner’s accuracy and prompt level. Once performance hits a predefined criterion (e.g., 80% correct with the current prompt level over two consecutive weeks' sessions), the next less guided prompt is introduced. + +- Individualized Pacing: Some children move through levels rapidly; others need extra practice at one step. Our therapists tailor the timeline to each learner’s unique learning profile. + +By following these guidelines, the Arizona Institute for Autism helps ensure that every child grows toward meaningful independence… one prompt at a time. + +### How does ABA support language and communication? + +ABA addresses all verbal operants ( functional units of language) through structured programs that: + +- Increase Vocabulary: Matching, naming, categorizing + +- Build Receptive Skills: Following instructions, understanding questions + +- Shape Expressive Skills: By weaving language targets such as requests (mands), descriptions (tacts), and answering (intraverbals) into play, academics, motor activities, and daily routines, learners generalize communication beyond the therapy room. + +### How does ABA improve social skills? + +Many social routines, such as turn-taking or conversational back-and-forth, aren’t intuitive for learners on the spectrum. Applied Behavior Analysis: + +- Identifies specific social deficits (e.g., initiating play, sharing) + +- Breaks them into teachable steps (e.g., hold out toy, wait, release) + +- Uses reinforcement (social praise, preferred activities) to build skills + +- Practices across peers and settings until interactions become natural + +### How long until I see results? + +While every learner is unique, many families notice early wins, such as increased eye contact or fewer tantrums, within 4-8 weeks of consistent programming. Significant shifts in communication or social engagement often emerge over 3-6 months , with continued gains as programs evolve. + +### What role do families play in ABA therapy? + +You’re an essential member of the team! + +- Observation & Feedback: Attending periodic parent sessions to learn strategies + +- Home Practice: Reinforcing skills between clinic visits + +- Goal Setting: Sharing priorities so programs reflect real-life needs + +Strong parent involvement accelerates learning and helps skills generalize across environments. + +### Does ABA only focus on challenging behaviors? + +No. While reducing harmful or disruptive behaviors is part of ABA, we also build replacement skills and focus on: + +- Language development + +- Social engagement + +- Daily living skills (toileting, self-care) + +- Academics and play + +### What does ABA therapy look like day to day for a child? + +ABA therapy is structured but flexible. It may include play-based learning, communication practice, behavior support, and skill-building activities that are individualized to your child’s needs and interests. + +### Why does my child have frequent meltdowns, and what can I do to reduce them? + +Meltdowns are often not intentional behaviors. They are usually a child’s way of communicating overwhelm, expressing needs & wants, or frustration, especially when they do not yet have the language or skills to express what they need. Identifying triggers, teaching coping strategies, and supporting communication can significantly reduce the frequency and intensity of meltdowns. + +#### Strategies that can help reduce meltdowns + +- Teach functional communication (words, gestures, pictures, AAC, or signs) + +- Use visual supports, as they make expectations predictable and clear. ##### Visual Support Examples Visual schedules + +- First/Then boards + +- Choice boards + +- Emotion charts + +- Break cards + +- Teach coping skills during calm moments. ##### Coping Skill Examples Deep breathing or counting + +- Squeezing a stress ball + +- Requesting a break + +- Going to a calm space + +- Using words or visuals to label feelings + +- Reduce demands when needed If your child is overwhelmed: Break tasks into smaller steps + +- Offer choices instead of demands + +- Lower expectations temporarily to help them regulate + +### My daughter has frequent meltdowns throughout the day. What can cause meltdowns? + +Meltdowns happen for different reasons. Observing your child and identifying antecedents that lead to the meltdown can help in determining the best way to respond and support your child. Meltdown occurs because of different reasons, including, but not limited to: + +- Limited communication skills (your child knows something is wrong but can’t say what) + +- Difficulty expressing wants or needs (help, break, attention, sensory input) + +- Changes in routine or unexpected transitions + +- Sensory overload (noise, lights, crowds, textures) + +- Task demands that feel too hard or unclear + +- Fatigue, hunger, or emotional overload + +#### What helps in the moment + +- Stay calm and use a neutral tone + +- Reduce language and stimulation + +- Ensure safety + +- Allow space if needed + +- Support calming, not compliance + +Teaching happens after the child is calm, not during the meltdown. + +### How do I help my child cope with changes in routine or transitions? + +Many children need support with predictability. Visual schedules, advance warnings, transition cues, and consistent routines can help children feel more secure and prepared for change. + +### What skills should my child be learning at their age? + +Skills vary by child, but often include communication, play, independence, emotional regulation, and social interaction. + +### How can I support my child’s emotional regulation at home? + +Emotional regulation develops over time. Teaching simple coping skills, modeling calm behavior, using visuals, and validating feelings can help your child learn to manage emotions more effectively. + +### My child engages in aggressive or unsafe behaviors, where do I start? + +Safety is always the priority. Understanding why the behavior is happening (function of a behavior) is the first step to determine the best strategy. Support may include teaching safer alternatives, improving communication, and modifying the environment to reduce triggers. + +### What strategies can I use when my child refuses to follow directions? + +Refusal often means a task is too hard, unclear, or overwhelming. Breaking tasks into smaller steps, offering choices, visual schedule and using positive reinforcement can help increase cooperation. + +### How can I help my child learn to play appropriately with peers? + +Play skills are learned, not automatic. Children may need support learning how to share, take turns, and engage with peers through structured play opportunities and modeling. + +### Is my child’s behavior related to sensory needs, and how do I support that? + +Some behaviors may be related to sensory sensitivities or sensory-seeking needs. When a child’s sensory system is overwhelmed or under-stimulated, it can impact their ability to stay regulated, communicate needs, and engage appropriately. Identifying sensory patterns and offering targeted supports can significantly improve comfort, regulation, and participation. + +#### Common Sensory-Related Behaviors + +Your child may be communicating a sensory need if you notice behaviors such as: + +- Covering ears in loud or busy environments + +- Avoiding certain textures (clothing, foods, materials) + +- Becoming distressed during grooming tasks (hair brushing, nail cutting) + +- Seeking movement (spinning, jumping, crashing) + +- Chewing on clothing, toys, or non-food items + +- Becoming dysregulated in bright lights or crowded spaces + +#### How to Support Sensory Needs + +Supporting sensory needs does not mean avoiding challenges, but rather providing the right input at the right time to help your child regulate. + +#### Examples of Sensory Supports + +- For auditory sensitivity: noise-canceling headphones, quieter spaces, advance warnings before loud sounds + +- For tactile sensitivity: soft clothing, removing tags, gradual exposure to new textures + +- For movement seekers: trampoline time, obstacle courses, heavy-work activities (pushing, pulling, carrying) + +- For oral sensory needs: chewy tubes, crunchy snacks, safe oral sensory tools + +- For visual sensitivity: dimmer lighting, sunglasses indoors when appropriate, reduced visual clutter + +### How do I teach my child coping skills instead of reacting with tantrums? + +Coping skills are most effective when they are taught proactively, not during moments of crisis. Children need repeated practice using calming strategies, communication skills, and emotional identification during calm, regulated moments so they are more likely to access those skills when they feel overwhelmed. + +#### What Coping Skills Can Look Like + +Coping skills help children manage big emotions before they escalate into tantrums. Examples include: + +- Taking deep breaths + +- Asking for help or a break + +- Using words, pictures, or gestures to express feelings + +- Squeezing a stress ball or holding a comfort item + +- Going to a calm-down space + +- Listening to calming music + +### My son gets upset when I ask him to fix his behavior during times of frustration. How may I teach him Coping Skills in an effective way? + +- Practice During Calm Moments Teach and practice coping strategies when your child is relaxed. Example: Practice “smell the flower, blow the candle” breathing before bedtime or during play. + +- Example: Role-play asking for a break during a fun activity. + +- Teach Emotional Labeling Help your child name their emotions so they can recognize them early. Example: Use emotion cards or a feelings chart daily. + +- Model Coping Skills Children learn by watching adults regulate themselves. Example: “I’m feeling overwhelmed, so I’m going to take a deep breath.” + +- Example: Show calming strategies when something doesn’t go as planned. + +- Use Visual Support Visuals make coping skills easier to remember and use. Example: A calm-down choice board with pictures of breathing, squeezing, or asking for help. + +- Example: First/Then cards that show calming before returning to an activity. + +- Reinforce Skill Use Praise and reinforce your child for using coping strategies, even with support. Example: “You asked for help instead of yelling. Great job using your words!” + +- Example: Provide immediate positive feedback or small rewards. + +During moments of escalation, make sure: + +- Keep language minimal and calm + +- Support safety and regulation + +- Avoid teaching new skills in the moment + +After your child has calmed, briefly review: + +- What feeling came up + +- Which coping skill helped or could help next time + +#### Building Long-Term Success + +With consistent practice, children learn that coping skills are effective and empowering. Over time, this reduces tantrum frequency and helps children respond to challenges in more adaptive ways. + +### What can I do if my child struggles with attention or group activities? + +Many children need gradual exposure to group expectations. Short, supported activities with movement breaks and positive reinforcement can build tolerance and success. + +### How does ABA support school readiness and learning skills? + +ABA can help children develop foundational skills such as following directions, attending to tasks, transitioning, communication, and social interaction; all of which support learning readiness. + +### How do I know if my child is making progress in therapy? + +Progress may look like improved communication, fewer meltdowns, increased independence, or better coping; even if changes feel small. Reviewing programs data, communication, and observation help track growth. + +### How can I help my child generalize skills from therapy to home or school? + +Skills generalize best when practiced across settings and people. Consistency, collaboration, and using the same strategies at home can help skills transfer more naturally. + +### What does "reinforcement" mean in ABA? + +Reinforcement means giving your child something motivating after a behavior to help the targeted behavior happen more often. It helps children understand, "When I do this, good things happen." + +### Is reinforcement the same as bribing my child? + +Reinforcement and bribing are not the same. Bribing is usually offered in the moment to stop a maladaptive behavior that is already happening (for example, "If you stop crying, you'll get a toy"). Reinforcement is planned and happens after a behavior and your child uses a skill or shows a positive behavior, such as following directions, communicating appropriately, or trying their best. + +Reinforcement is used to teach and strengthen skills, not to control behavior. Over time, reinforcement is reduced as your child becomes more confident and independent, while bribing does not build long-term learning. + +### Why does my child need reinforcement to learn? + +Every child learns best when learning feels clear and motivating. Reinforcement helps by clearly showing your child which behaviors lead to success. It makes expectations predictable, reduces frustration, and builds confidence. Over time, as skills become easier and more familiar, reinforcement is gradually faded and replaced with more natural rewards, such as independence, pride, and social connection. + +### How does reinforcement help reduce challenging behaviors? + +Challenging behaviors often happen when a child is trying to communicate a need, escape a difficult situation, or manage big emotions, but doesn't yet have the right skills to do so. Reinforcement helps by teaching and strengthening appropriate skills such as asking for help, using words or visuals, taking a break, or using calming strategies. + +When these appropriate behaviors are consistently reinforced, your child learns that they are an effective way to get their needs met. Over time, as positive and functional behaviors work better, challenging behaviors naturally decrease. + +### Will my child become dependent on rewards? + +When a skill is new or difficult, reinforcement helps your child understand expectations and stay motivated. As the skill becomes easier and more consistent, reinforcement is gradually reduced and replaced with more natural rewards such as social connection & praise. Reinforcement is gradually faded as skills grow. + +The long-term goal is always for your child to use skills independently and feel motivated by everyday experiences & natural motivation, not by rewards. + +### How do I know what is motivating for my child? + +The best way to identify what motivates your child is to observe what they naturally choose during free time. Notice what they return to repeatedly, what holds their attention the longest, and what makes them smile, calm, or engaged. Motivation can look different for every child and may include toys, activities, movement, music, sensory input, attention, or short breaks. + +It's also important to remember that motivation can change from day to day. Offering choices, rotating items, and keeping access brief can help maintain interest. Your ABA team may also use preference assessments to help identify and update reinforcers as your child grows and their interests change. + +### What if my child loses interest in rewards quickly? + +This is very common, especially for young children or children who are still learning how to stay engaged. Motivation naturally changes, and a reward that works today may not work tomorrow. To keep reinforcement effective, try rotating different rewards, offering your child choices, and limiting how long they have access to the reward so it stays special. + +It is important to remember that losing interest does not mean reinforcement isn't working, it simply means it's time to switch things up. + +### Can everyday items be used as reinforcement? + +Yes, everyday items and activities often make the best reinforcement. Simple things like extra playtime, music, movement breaks, attention, praise, tickles, snacks, or a favorite activity can be highly motivating for children. These natural reinforcers are easy to use at home, feel fun and familiar, and help skills carry over into daily life. + +### Are food rewards okay to use? + +Food rewards can be appropriate when used thoughtfully, in small portions, and as part of a broader reinforcement plan. For some children, food can be highly motivating, especially when learning new or difficult skills. When food is used, it is typically paired with praise and other positive feedback so that motivation doesn't rely on food alone. + +Over time, food rewards are gradually reduced and replaced with more natural reinforcement, such as social praise, access to activities, etc. and then faded. + +### What do I do if reinforcement stops working? + +This happens sometimes and is completely normal. Motivation can change as your child grows. When reinforcement seems less effective, it usually means the reinforcer is no longer as motivating. Try offering choices, rotating to new reinforcers, limiting access so rewards stay special, or breaking the task into smaller steps. Your ABA team can help reassess preferences and adjust reinforcement to better match your child's effort and skill level. Reinforcement "not working" is not a failure, it's a sign that the plan needs a small adjustment. + +### Is verbal praise considered reinforcement? + +Yes, if your child finds praise motivating. + +### Should I reinforce my child during tantrums? + +Reinforcement should be given for calm, appropriate behaviors, not during the tantrum itself. During a tantrum, your child is often overwhelmed and not in a place to learn. Providing reinforcement at that moment can unintentionally teach that the tantrum is a way to get needs met. + +Instead, focus on keeping your child safe and calm. Once the tantrum has passed, reinforce positive behaviors such as calming down, using communication, asking for help, or following directions. Over time, reinforcing these skills helps your child learn more effective ways to cope and communicate, which reduces future tantrums. + +### Can reinforcement be used for emotional regulation? + +Yes. Reinforcement is very effective for building emotional regulation skills. When your child uses coping strategies such as taking calm breaths, asking for a break, using words or visuals to express feelings, or choosing a calming activity, reinforcing those moments helps strengthen those skills. + +By consistently reinforcing calm and regulated behaviors, your child learns that using coping tools works better than becoming overwhelmed. Over time, these strategies become more natural and are used independently, even without reinforcement. + +### Do you accept Blue Cross Blue Shield of Arizona (PPO)? + +Yes, we accept most major insurance plans, including Blue Cross Blue Shield of Arizona PPO plans. Coverage can vary depending on the specific policy. Our billing team verifies benefits and walks families through the authorization process to ensure clarity before services begin. + +### How do you define success in ABA therapy? + +Success in ABA is defined as: + +- Increased functional communication + +- Greater independence + +- Improved emotional regulation + +- Reduced frustration + +- Meaningful participation at home, school, and in the community + +Our goal is to build skills that improve quality of life, not only reduce behaviors. + +### Do you use punishment-based interventions or only reinforcement strategies? + +We only use reinforcement and skill-building strategies. Our approach focuses on: + +- Teaching replacement skills + +- Strengthening communication + +- Preventing challenging behavior through proactive supports + +Any intervention plan is individualized and evidence-based. + +### How do you incorporate a child’s autonomy and consent into sessions? + +Child assent and comfort are important to us. The clinical team + +- Watch for verbal and non-verbal cues + +- Offer choices whenever possible + +- Use play-based and relationship-driven approaches + +- Allow breaks and regulation time + +- Respect a child’s need for space + +### Do you prioritize masking behaviors or supporting communication and regulation? + +Our focus in therapy is: + +- Functional communication + +- Emotional regulation + +- Self-advocacy + +- Independence + +We support children in developing skills that help them navigate the world, while honoring their individuality. + +### What is trauma-informed? What does that look like in practice? + +Trauma-informed care means: + +- Building rapport before demands + +- Avoiding power struggles + +- Teaching coping skills + +- Preventing distress when possible + +- Supporting regulation rather than escalating behavior + +We approach each child with empathy, patience, and clinical judgment. + +### How often do you meet with parents to review progress? + +Parent collaboration is essential. The Case Supervisor/Case BCBA meet with parent weekly to discuss the child’s progress and support parents with their questions, to ensure collaboration and consistent support for all our patients. + +At Arizona Institute for Autism, we offer: + +- Regular parent consultation sessions + +- Ongoing progress updates + +- Formal progress reports + +- Treatment plan reviews + +### Do you collaborate with other providers (speech, OT, teachers)? + +Yes, collaboration strengthens consistency and outcomes.We strongly value interdisciplinary collaboration. + +With parent consent, we coordinate with: + +- Speech therapists + +- Occupational therapists + +- Schools and teachers + +- Pediatricians + +### How are your RBTs trained and supervised? + +Our Registered Behavior Technicians (RBTs): + +- Complete formal certification requirements + +- Receive structured onboarding training + +- Are supervised regularly by licensed BCBAs + +- Participate in ongoing professional development + +Supervision ensures clinical integrity and quality care. + +### Will my child have a consistent therapist? + +Whenever possible, we assign consistent therapists to build rapport and trust. + +If schedule adjustments are necessary, transitions are planned carefully to maintain continuity of care, and parents are informed of any changes. + +### What happens if my child says “no” or refuses a task? + +Refusal is communication. + +We: + +- Assess why the task is difficult + +- Break it into smaller steps + +- Offer choices + +- Adjust motivation + +- Teach appropriate ways to request a break + +### Do you offer natural environment teaching (NET)? + +Yes. We use: + +- Natural Environment Teaching (NET) + +- Play-based learning + +- Structured teaching when appropriate + +- Skill generalization across settings + +Learning should feel engaging and meaningful. + +### What are your protocols if a child becomes dysregulated? + +If a child becomes distressed, we prioritize safety and regulation. + +We: + +- Reduce demands + +- Provide calming supports + +- Use previously taught coping strategies + +- Ensure the child feels supported + +Our goal is to help children learn how to regulate, not to suppress emotions. + +### Can you walk me through a sample therapy day? + +Each session is individualized based on the child’s goals and regulation level. A typical session at the Arizona Institute for Autism may include: + +- Warm-up and rapport-building + +- Communication goals + +- Play-based skill teaching + +- Social interaction practice + +- Daily living skills + +- Movement or sensory breaks + +- Parent update + +### Can ABA goals align with school goals? + +Yes. ABA goals can often align with school goals, particularly when they focus on skills that support learning and participation in the classroom. Many ABA programs target areas that are also important in educational settings, such as communication, social interaction, attention, following instructions, attending, and self-regulation. + +When appropriate and with parent consent, ABA providers may collaborate with families and school teams to ensure strategies and goals are consistent across environments. Consistency between school, therapy, and home helps children generalize skills more effectively and supports steady progress. + +When everyone on the child’s team, teachers, therapists, and parents, works toward similar goals and uses similar strategies, it creates a more supportive and predictable learning environment for the child. + +The goal is to promote meaningful skill development that helps the child succeed across settings, including home, school, and the community. + +### How do I know if my child might have autism? + +Every child develops at their own pace, but some signs may suggest that a child could benefit from further evaluation. These may include limited response to their name, delayed speech or language development, reduced eye contact, difficulty engaging with others, repetitive behaviors, or strong reactions to changes in routine or sensory experiences. + +If you notice several of these behaviors or feel concerned about your child’s development, it is a good idea to speak with your pediatrician and request a developmental screening. Early identification can help children access supportive services that promote communication, learning, and independence. + +### My child is 2 and not talking yet. Should I be concerned? + +Speech develops at different rates, but by around age two, many children begin using simple words or short phrases to communicate. If a child is not yet speaking, has limited gestures (such as pointing), or seems to have difficulty communicating needs, it may be helpful to discuss this with your pediatrician. + +A professional may recommend a developmental evaluation or referrals for services such as speech therapy or other early intervention supports. Seeking guidance early can help identify ways to support your child’s communication and development. + +### Who diagnoses autism? + +Autism is typically diagnosed by qualified healthcare professionals who specialize in child development. This may include developmental pediatricians, child psychologists, neurologists, or other trained specialists. The evaluation process usually involves observing the child’s behavior, reviewing developmental history, and sometimes using standardized assessment tools. Parents often play an important role in sharing information about their child’s development and daily behaviors. + +### How many hours of ABA does my child need? + +The number of ABA therapy hours varies depending on each child’s individual needs, strengths, and developmental goals. After an evaluation, a Board Certified Behavior Analyst (BCBA) will recommend a treatment plan based on factors such as the child’s communication skills, learning needs, behavioral challenges, and daily functioning. + +Some children may benefit from a more intensive program, while others may need fewer hours focused on specific skill areas. Therapy hours are designed to provide the level of support necessary to help the child build meaningful skills, while also allowing time for family routines, school, and other activities. + +The goal is always to provide the appropriate level of support based on the child’s needs, and recommendations may be adjusted over time as the child progresses. + +### When do children transition out of ABA? + +Children transition out of ABA therapy when they have developed the skills needed to function more independently in their daily environments, such as home, school, and the community. The timeline is different for every child and depends on their individual goals, progress, and level of support needed. Throughout therapy, the clinical team regularly reviews progress and adjusts goals as skills improve. As children gain stronger communication, social, and self-regulation skills, therapy hours may gradually decrease. The focus during this phase is helping the child maintain and generalize their skills across settings with less direct support. In many cases, children transition to other supports such as school based services, social skills groups, or periodic consultations to ensure continued success. The goal is to help the child build the independence and confidence needed to thrive beyond therapy. + +### Why does my child have meltdowns? + +Meltdowns often happen when a child feels overwhelmed and does not yet have the skills to communicate their needs or manage strong emotions. Common triggers may include difficulty with communication, sensory sensitivities, changes in routine, fatigue, or frustration when a task feels too challenging. + +A meltdown is often a child’s way of expressing that something is too difficult or uncomfortable for them. Identifying patterns such as when and where the meltdowns occur can help caregivers better understand the cause and provide appropriate support. + +Therapies like ABA focus on teaching children alternative ways to communicate their needs and developing coping skills that help reduce frustration and improve emotional regulation. + +### How can I help my child with transitions? + +Transitions can be challenging for many children, especially when they involve stopping a preferred activity or moving to something unfamiliar. A few strategies that may help include: + +- Giving advance warnings (for example, “5 more minutes, then we clean up.”) + +- Using visual schedules to show what comes next + +- Using timers to signal when an activity is ending + +- Keeping routines predictable whenever possible + +- Using simple First/Then language (e.g., “First clean up, then play outside.”) + +These strategies help children understand expectations and reduce anxiety during changes in activities. + +### How can ABA help with aggression or self-injury? + +ABA therapy focuses on understanding why a behavior is occurring and teaching safer, more effective ways for a child to communicate or cope. Sometimes behaviors like aggression or self-injury happen because a child is trying to express frustration, escape a difficult situation, or seek attention. + +A BCBA will assess the function of the behavior and develop a plan that may include teaching communication skills, coping strategies, and replacement behaviors that help the child express their needs safely. The goal is not only to reduce challenging behaviors but also to help the child build skills that improve their overall well-being and daily functioning. + +### What strategies help with emotional regulation? + +Emotional regulation skills develop over time, and children often need support learning how to manage strong feelings. Helpful strategies may include: + +- Teaching children to identify and label emotions + +- Practicing calming techniques such as deep breathing + +- Offering a quiet space for breaks when needed + +- Using visual supports that show coping options (such as asking for help or taking a break) + +- Modeling calm responses and supportive language + +Consistent support across home, school, and therapy can help children learn how to recognize their emotions and respond in healthier ways. + +### Why isn’t my child talking yet? Should I be concerned? + +Many autistic children develop speech later than other children, and some may use different ways to communicate before spoken language develops. + +Some children communicate first through gestures, pictures, sounds, or behavior before developing words. With the right support, many children gradually expand their communication skills over time. The important goal is helping children develop functional communication, whether through speech, gestures, pictures, or communication devices. When children are given consistent opportunities to communicate, their ability to express themselves often grows significantly. + +### Should I use a communication device with my child? + +Communication devices, often referred to as AAC (Augmentative and Alternative Communication) can be extremely helpful for many children who have difficulty using spoken language. It provides children with a way to express their thoughts, needs, and feelings when speech is difficult and participate in conversations and share interests with others. AAC gives children a reliable way to communicate, which can significantly reduce frustration and help them feel understood. + +However, it is important that the device is used consistently across different environments, such as home, therapy sessions, school and community settings to allow children to learn that communication is meaningful and effective everywhere, not just in therapy. + +This consistency also helps children develop functional communication, which means learning how to use communication in real-life situations to connect with others and get their needs met. + +### How can I teach my child to ask for help in public? + +Learning to ask for help is an important safety and independence skill for children. For children with autism, this skill may need to be explicitly taught and practiced across different settings so they feel comfortable using it when needed. + +- Start teaching the skill at home Before practicing in public places, teach the skill in familiar environments such as home or therapy. Parents can model simple phrases like: “Help please.” + +- “I need help.” + +- “Can you help me?” + +Practice responding immediately when the child attempts to ask for help so they learn that communication works. + +- Use Role-play Practice Role-playing can help children learn what to do in different situations. Practicing these situations helps children feel more confident when the situation happens in real life. For example, parents can practice scenarios such as: asking a teacher for help + +- asking a store employee for help + +- asking a parent when something is difficult + +- Teach children strangers vs safe adults Children should learn how to identify safe adults vs stragers so they can identify who they need to approach in the community and level of communication. practicing this skill by showing pictures or pointing out safe adults during community outings can be a helpful strategy. + +- Practice in real community settings Once the child understands the skill, practice it during community settings. For example: At a restaurant, encourage your child to ask a server for a napkin. Real-life opportunities help children understand that communication works in different environments. + +### How do I prepare my child for crowded places? + +Crowded environments such as malls, airports, or busy settings can feel overwhelming for many children with autism due to sensory input and unpredictable situations. Preparing ahead of time can make these experiences more manageable. + +- Talk about the plan before leaving: Explain where you are going and what will happen. Example: “We are going to the grocery store. There will be many people and carts. We will get food and then go home.” Using visual schedules or pictures can help children understand what to expect. + +- Bring comfort and sensory tools: Some children benefit from tools that help manage sensory input such as noise-reducing headphones + +- sensory fidget toys + +- sunglasses or hats + +- comfort items from home + +These tools can help children regulate their sensory system in busy environments. + +- Ensure giving break Opportunities:Plan breaks during outings so children can regulate such as stepping outside for a few minutes, sitting in a quiet area or even taking a short walk away from the crowd. Teaching children that they can ask for a break also supports emotional regulation. + + Still have questions? + +## Reach Out to Learn More + +We hope this FAQ gives you a clear picture of how Applied Behavior Analysis (ABA) therapy at the Arizona Institute for Autism can support your child’s growth. If you have more questions or would like to [schedule an assessment](client-consultation), please reach out. Our team is here to guide you and your learner every step of the way! + +## Need Support in Getting an Autism Diagnosis? + +To meet diagnostic criteria for ASD, a child must have persistent deficits in each of three areas of social communication and interaction plus at least two of four types of restricted repetitive behaviors. Consult with a Client Advocate today to receive individual and family support! + +[Request an Appointment](/client-consultation) diff --git a/www/src/content/pages/en/index.md b/www/src/content/pages/en/index.md new file mode 100644 index 0000000..f0ea8ac --- /dev/null +++ b/www/src/content/pages/en/index.md @@ -0,0 +1,192 @@ +--- +title: "ABA Therapy Near Me | Arizona Institute for Autism | Scottsdale" +description: "Arizona Institute for Autism: center for behavioral health & education services located in Scottsdale. We serve individuals with Autism and their families." +slug: "index" +canonical: "https://www.azinstitute4autism.com/" +lang: "en" +translationKey: "index" +draft: false +--- +Arizona's Leading Experts + +# Behavioral Health & Special Education + +Here at the Arizona Institute for Autism (AIA), we provide expert clinical care for children and teens who have an autism diagnosis. We currently serve families in Scottsdale, Gilbert, Mesa, Tempe, and Phoenix Metropolitan areas. + + Get Started + +![bcba therapist with happy toddler](/assets/images/bcba-with-happy-toddler.webp) + +## ABA Therapy Services for Children and Teens Diagnosed with Autism Spectrum Disorder + +- Autism Advocacy Support + +- Evaluation & Assessment Support + +- Children Autism Services + +- Community Autism Services + +- Family Training Services + +![girl learning by playing](/assets/images/playing-girl.webp) + +![girl learning by playing](/assets/images/playing-girl.webp) + +## ABA Therapy Services for Children and Teens Diagnosed with Autism Spectrum Disorder + +- Autism Advocacy Support + +- Evaluation & Assessment Support + +- Children Autism Services + +- Community Autism Services + +- Family Training Services + +### Our Commitment To Your Learner's Success + +- In-Center + +- In-Home + +- Integrated Therapy Treatment + +- Early Intervention + +- Academic Readiness + +- Clinical Supervision + +- Parent Consultation + + Schedule an Assessment + +![boy playing while learning](/assets/images/playing-boy.webp) + +## Benefits that go Beyond a Typical Integrated Therapy Provider + +### The AIA Difference + +- Compassionate Care + +- Individualized Results + +- Sensory-Friendly Rooms + +- Convenient and Affordable + +![link - learner journey for children with autism video](/assets/images/learner-journey.webp) + +## Does Your Learner Struggle With These Skills? ![icon-Social_Engagement](/assets/images/icon-Social_Engagement.png) ### Social Engagement ![icon-Eye_Contact](/assets/images/icon-Eye_Contact.png) ### Eye Contact ![icon-Listening](/assets/images/icon-Listening.png) ### Listening ![icon-Repetitive_Movement](/assets/images/icon-Repetitive_Movement.png) ### Repetitive Movement ![icon-Playing](/assets/images/icon-Playing.png) ### Playing ![icon-Speach](/assets/images/icon-Speach.png) ### Speech ## Yes, We Take Insurance An all-in-one integrated service for your kiddo’s special education needs, the Arizona Institute for Autism (AIA) offers and accepts most insurance plans that cover ABA therapy. These include BCBS AZ, Aetna, Optum, Tricare, United Healthcare AHCCCS, and UnitedHealth. + +![logo for bluecross/blueshield](/assets/images/bluecrossblueshield-logo-1.webp) + +![aetna logo](/assets/images/aetna.png) + +![logo for optum](/assets/images/logo-optum.webp) + +![logo for tricare](/assets/images/logo-tricare-1.webp) + +![logo for ahcccs](/assets/images/logo-ahcccs.webp) + +![logo for united healthcare](/assets/images/united-healthcare-logo-1.webp) + +## Arizona Scholarship Account (ESA) + +Thousands of Arizona learners are currently eligible for the state funded ESA, which awards $4,000 – $6,500 annually per student towards private education tuition, home based education, and other services. The Arizona Institute for Autism (AIA) is approved by the Arizona Department of Education as a vendor for parents with learners who qualify for the Empowerment Scholarship Award. If you are eligible for the ESA program, you can use your funds towards tuition for our ABA programs. + +![logo-az-dept-of-education](/assets/images/logo-az-dept-of-education.webp) + +## Need Help Paying for Your Care? + +T he Arizona Institute for Autism offers flexible financial assistance to the uninsured. Get the care you want or need and pay over time. + + Request an Appointment + +## Our Process + +![learner journey first step](/assets/images/learner-journey-step-1a.svg) + +Fill Out Learner Information Form + +![learner journey second step](/assets/images/learner-journey-step-2.svg) + +Speak with a Client Advocate + +![learner journey third step](/assets/images/learner-journey-step-3.svg) + +Fill and Sign a Client Intake Packet + +![learner journey fourth step](/assets/images/learner-journey-step-4.svg) + +Verify Billing and Insurance Information and Benefits + +![learner journey fifth step](/assets/images/learner-journey-step-5.svg) + +Schedule an Assessment + +![learner journey sixth step](/assets/images/learner-journey-step-6.svg) + +Collaborate on a Care Plan + +![rula-diab](/assets/images/rula-diab.webp) + +### Clinical Director Rula Diab, BCBA, LBA, M.Ed. + +## An Extension of Your Family + +"At AIA, We strive to provide excellent and compassionate care to all communities we serve. We could not accomplish that without excellent, passionate, and committed staff and families. We look forward to our collaboration with you as we continue to grow, serve and support our Learners in the pursuit of their individual potential." + +![clinical-director-rula-diab](/assets/images/clinical-director-rula-diab.png) + +### What Clients Say + +Claudia + +Our son 💙 is an autistic kid. We struggled to find the correct place for him, that place where you can feel comfortable leaving your kid. We visited five companies, and no one gave us that confidence until we found AIA. You can see the dedication from each employee (Director, therapists, coordinators, etc.) to every kid. Their therapy rooms are huge and spacious; every kid can play and learn simultaneously in their own spaces. We are thankful 🙏 to Arizona Institute for Autism for caring for Misael. All of you are Amazing!!! Thank you 😊 + +Kristin + +My son has grown and learned so much from the team at AIA. He loves the team and they love him... + +Amanda + +My son loves this program. He started when he was 21 months year old, so I was picky in choosing where he would go. I love that it is play based and he is 1-on-1 with a therapist the whole time. + +Dave + +I highly recommend Arizona Institute for Autism. Rula Diab runs a fantastic clinic and has an amazing team. Shoutout to Coach D - it is incredible that they have a former NFL Player helping with P.E.! They also held a birthday party for our son. Amazing and so full of love & care... + +Meagan + +We are incredibly grateful for the support and guidance our child has received from the team at Arizona Institute for Autism. The professionalism and dedication of the team have made a remarkable difference in our child's development. They truly care about each child's growth and tailor their approach to meet individual needs. Our child has made significant strides in communication and social skills, and we couldn't be happier with the positive impact they've had on our family. Highly recommend AIA. + +Macey + +We love AIA, you can expect amazing staff and a clean facility. Along with a safe environment for your children. We love the mission behind AIA and feel like there’s no other place here in Arizona that does what they do here. + +S.L. + +My son has developed faster and been happier at this Autism center over all others he’s experienced. The therapist/teachers and all the way to the Rula the manager have gone above and beyond to work with my son’s special needs. As every Autistic child is different they have developed a plan specifically fit to him. We have weekly meetings to join our knowledge to develop my son as quickly and efficiently comfortably for him as possible. I’m blown away by how I finally feel like part of a team that is my son’s team. Thank you. + +Emily + +AIA is phenomenal!!! Rula and her staff are fantastic. They are patient, professional, compassionate and extremely knowledgeable. My son loves his providers. They have helped me navigate some extremely tough times. I highly recommend AIA. + +Raye + +I absolutely love it here! They care about your child so much! They work with you when it comes to your schedule. They are all so very friendly here. Anytime I step in here I feel a warm welcoming from everyone. My son loves coming here. They care about helping your child succeed in every possible way, my din is going to flourish here! + +Danielle + +AIA has done wonders for my son. I drive from NW Peoria just to come here. Everyone is very professional and kind. They truly care about the kids and seeing them succeed. I’m so lucky to have found them. I would recommend them to anyone! + +Tim + +The staff at AIA is my second family. Not only does my son receive the best care possible, they also keep me in check and help make sure I’m doing my part. That’s the kind of love you get in this big family! + +![logo for Behavior Analyst Certification Board (BACB)](/assets/images/logo-BACB.png) + +![the council of autism service providers member logo](/assets/images/casp-member-logo.webp) diff --git a/www/src/content/pages/en/insurance.md b/www/src/content/pages/en/insurance.md new file mode 100644 index 0000000..1b4f46f --- /dev/null +++ b/www/src/content/pages/en/insurance.md @@ -0,0 +1,44 @@ +--- +title: "Arizona Autism Therapy Insurance Guide | AZ Institute for Autism" +description: "Take the first step to affordable autism care for your child. Verify insurance benefits and coverage quickly and easily with Arizona Institute for Autism." +slug: "insurance" +canonical: "https://www.azinstitute4autism.com/insurance" +lang: "en" +translationKey: "insurance" +draft: false +--- +## Insurance Coverage for Autism Treatment in Arizona + +Navigating insurance coverage for autism therapy can be complex. At the Arizona Institute for Autism (AIA), we're committed to guiding you through your insurance options to ensure your child receives the necessary care. + +## Accepted Insurance Carriers + +We proudly partner with most major insurance carriers providing autism treatment benefits in Arizona. Our team regularly works with insurance plans such as the following. + +![bluecross blueshield logo](/assets/images/bluecrossblueshield-logo-1.webp) + +![aetna logo](/assets/images/aetna.png) + +![optum logo](/assets/images/logo-optum.webp) + +![tricare logo](/assets/images/logo-tricare-1.webp) + +![ahcccs logo](/assets/images/logo-ahcccs.webp) + +![united healthcare logo](/assets/images/united-healthcare-logo-1.webp) + + Our team continually strives to expand this list, increasing access to affordable Applied Behavior Analysis (ABA) therapy coverage. If you do not see your insurance provider listed here, please contact our office. Our staff is always happy to help determine your specific coverage and options. + +## Support for Families + +We recognize the dedication and immense effort families devote to supporting their children. Our helpful team offers personalized consultations—both in person by appointment and over the phone—to explain the billing process thoroughly. Our goal is to ensure you feel informed and supported at every stage. + +### Frequently Asked Insurance Questions + +#### What is the Tricare ECHO Program, and how do I qualify? + +The Extended Care Health Option (ECHO) offers financial assistance to eligible military families for services and supplies beyond standard coverage, including ABA therapy. Eligibility requires enrollment in the Exceptional Family Member Program (EFMP). For detailed information and application steps, visit the [Tricare ECHO website](https://tricare.mil/echo). + +#### What is the ESA Program, and how do I apply? + +Arizona's Empowerment Scholarship Account (ESA) program provides funds to eligible families for educational expenses, which can include therapies for children with autism. To learn more about eligibility criteria and the application process, visit the [Arizona Department of Education's ESA page](https://www.azed.gov). diff --git a/www/src/content/pages/en/learner-social-club.md b/www/src/content/pages/en/learner-social-club.md new file mode 100644 index 0000000..adc99b7 --- /dev/null +++ b/www/src/content/pages/en/learner-social-club.md @@ -0,0 +1,60 @@ +--- +title: "Boost Emotional and Social Functioning with Learner Social Club at AIA" +description: "Contact AIA for a free 1-day trial pass to see how your child" +slug: "learner-social-club" +canonical: "https://www.azinstitute4autism.com/learner-social-club" +lang: "en" +translationKey: "learner-social-club" +draft: false +--- +## Learner Social Club + +Every child needs opportunities to have fun, make friends, and build social connections while developing valuable skills. The Learner Social Club is designed specifically to support your learner’s emotional and social well-being through engaging, evidence-based enrichment activities. + +### What We Offer + +Our integrative wellness enrichment services include: + +- Music + +- Art + +- Games + +- Dance + +- Recreational activities + +These thoughtfully designed activities help nurture your learner’s mind and body, providing holistic wellness and saving you valuable time. + +### Enrollment Reminders for Parents/Guardians + +To ensure the best experience for your learner, please keep the following in mind: + +- Potty Training: Learners must be potty-trained before enrolling. + +- Wipes: Pack wipes for your learner. These can be stored at our clinic. + +- Snack & Water: Send your learner with a snack and water. These items can also be stored on-site. + +- Pause/Cancellation Notice: Please provide AIA staff with at least a 30-day notice if you plan to pause or cancel your Learner Social Club services. + +### Program Schedule & Ages Served + +![stem-sped-social-learners](/assets/images/stem-sped-social-learners.webp) + +The Learner Social Club currently serves youth learners aged 8–17 years . Our flexible scheduling options currently include: + +- 2 days/week (Monday, Wednesday): 4:00 PM – 6:00 PM + +- 1 day/week (Wednesday only): 4:00 PM – 6:00 PM + +### Payment Information + +- Payment Type: Private Pay + +Interested in Trying Out Our Program? + +Get a 1-Day Trial Pass by emailing us at info [at] azinstitute4autism [dot] com . + +[Enroll Now](/client-consultation) diff --git a/www/src/content/pages/en/library.md b/www/src/content/pages/en/library.md new file mode 100644 index 0000000..4067b64 --- /dev/null +++ b/www/src/content/pages/en/library.md @@ -0,0 +1,54 @@ +--- +title: "Library & News Room | Arizona Institute for Autism" +description: "ABA therapy and special education news articles, case studies, recipes, editorials, tutorials, and more… for and about our learners with autism." +slug: "library" +canonical: "https://www.azinstitute4autism.com/library" +lang: "en" +translationKey: "library" +draft: false +--- +Welcome to # The Library at AZ Institute for Autism 100.120.92.4 ## Library Welcome to the Library at AIA, where we share valuable insights, strategies, and resources to support individuals with autism, their families, and professionals in the field. Our articles explore key topics in Applied Behavior Analysis (ABA) therapy, including teaching self-advocacy, proactive and reactive strategies, and innovative intervention techniques. + +We also highlight community events, success stories, and expert guidance to foster understanding and empowerment. Whether you're a parent, caregiver, educator, or advocate, our goal is to provide meaningful content that helps children with autism reach their highest potential in a compassionate and supportive environment. Stay connected with us as we continue to share knowledge and celebrate progress! + + All Post + +- [All Post](library) ###### Popular Posts - [Master Proactive & Reactive ABA Techniques – Schedule a Consultation](library/proactive-reactive-aba-strategies-guide) - [Ease Back-to-School Time | ABA Antecedent & Consequence Interventions](library/aba-school-readiness-guide) - [Guide to Teaching Self‑Advocacy in ABA](library/autism-self-advocacy-skills-aba) - [Executive Functioning Skills and Autism](library/executive-functioning-skills-autism) - [ASD Sensory-Friendly Recipes: Pancakes](library/asd-sensory-friendly-recipes-pancakes) [![Supporting Friendships and Social Play for Children with Autism](/assets/images/parallel-players-hero.png)](library/autism-friendships-social-play-support) ![Rula Diab, Clinical Director, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) [Rula Diab, Clinical Director, M.Ed, BCBA, LBA](library/author/rula-diab) 1 June 2026 ##### [Supporting Friendships and Social Play for Children with Autism](library/autism-friendships-social-play-support) Learn how to support friendships and social play for autistic children. Discover practical tips for... 8 minutes read [Read More](library/autism-friendships-social-play-support) 0 views + +0 + +![AAC and Visual Supports 101: Helping Your Child Be Heard](/assets/images/visual-supports-aac-communication.png) ![Rula Diab, Clinical Director, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) [Rula Diab, Clinical Director, M.Ed, BCBA, LBA](library/author/rula-diab) 28 May 2026 ##### [AAC and Visual Supports 101: Helping Your Child Be Heard](library/aac-visual-supports-autism) Learn how AAC and visual supports help autistic children communicate, reduce frustration, and build... 7 minutes read [Read More](library/aac-visual-supports-autism) 0 views + +0 + +![Autism Guide for Parents and Caregivers](/assets/images/family-guide-to-autism-aba-at-home_hero.png) ![Rula Diab, Clinical Director, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) [Rula Diab, Clinical Director, M.Ed, BCBA, LBA](library/author/rula-diab) 2 April 2026 ##### [Autism Guide for Parents and Caregivers](library/parents-guide-to-autism-and-aba) Learn practical autism and ABA-informed strategies parents and caregivers can use to support... 10 minutes read [Read More](library/parents-guide-to-autism-and-aba) 0 views + +0 + +![Building Communication & Social Skills in Autistic Children: A Practical Guide for Families](/assets/images/communication-skills-autistic-children-hero_img.png) ![Rula Diab, Clinical Director, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) [Rula Diab, Clinical Director, M.Ed, BCBA, LBA](library/author/rula-diab) 2 April 2026 ##### [Building Communication & Social Skills in Autistic Children: A Practical Guide for Families](library/communication-social-skills-autistic-children-guide) Learn how to build communication and social skills in autistic children. Discover practical... 9 minutes read [Read More](library/communication-social-skills-autistic-children-guide) 0 views + +0 + +![What to Expect at Your Child’s First Autism Evaluation](/assets/images/autism-evaluation-expectations_hero.png) ![Rula Diab, Clinical Director, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) [Rula Diab, Clinical Director, M.Ed, BCBA, LBA](library/author/rula-diab) 1 March 2026 ##### [What to Expect at Your Child’s First Autism Evaluation](library/autism-evaluation-what-to-expect) Learn what happens before, during, and after a child’s autism evaluation. See who you’ll meet, how... 7 minutes read [Read More](library/autism-evaluation-what-to-expect) 0 views + +0 + +![Early Signs of Autism by Age: 12 Months to 4 Years](/assets/images/early_signs_autism_by_age_hero.png) ![Rula Diab, Clinical Director, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) [Rula Diab, Clinical Director, M.Ed, BCBA, LBA](library/author/rula-diab) 1 February 2026 ##### [Early Signs of Autism by Age: 12 Months to 4 Years](library/early-signs-autism-by-age) Learn early autism signs by age (12–24 months and 2–4 years), what patterns matter most, and how... 15 minutes read [Read More](library/early-signs-autism-by-age) 0 views + +0 + +![Autism Evaluation in Arizona: A Parent](/assets/images/autism_evaluation_arizona_hero.jpg) ![Rula Diab, Clinical Director, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) [Rula Diab, Clinical Director, M.Ed, BCBA, LBA](library/author/rula-diab) 1 January 2026 ##### [Autism Evaluation in Arizona: A Parent's Step-by-Step Guide](library/autism-evaluation-diagnosis-arizona-parent-guide) Learn autism signs by age, who can diagnose in Arizona, and next steps after diagnosis. Get ABA,... 7 minutes read [Read More](library/autism-evaluation-diagnosis-arizona-parent-guide) 0 views + +0 + +![Why My Child Can Talk but Still Struggles Socially](/assets/images/talk-not-social.jpg) ![Rula Diab, Clinical Director, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) [Rula Diab, Clinical Director, M.Ed, BCBA, LBA](library/author/rula-diab) 1 December 2025 ##### [Why My Child Can Talk but Still Struggles Socially](library/social-pragmatic-communication-autism) Your child can talk yet struggles socially. See how pragmatic language, inference, and nonverbal... 8 minutes read [Read More](library/social-pragmatic-communication-autism) 0 views + +0 + +![Heart Full of Gratitude](/assets/images/giving-thanks-1.jpg) ![Rula Diab, Clinical Director, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) [Rula Diab, Clinical Director, M.Ed, BCBA, LBA](library/author/rula-diab) 24 November 2025 ##### [Heart Full of Gratitude](library/heart-full-of-gratitude) Clinic Director Rula Diab reflects back on her journey so far with Arizona Institute for Autism and... 2 minutes read [Read More](library/heart-full-of-gratitude) 0 views + +0 + +![Why Emotional Regulation Should Be the Heart of Every ABA Program](/assets/images/child-shopping-cart-tired-cranky.jpg) ![Rula Diab, Clinical Director, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) [Rula Diab, Clinical Director, M.Ed, BCBA, LBA](library/author/rula-diab) 1 November 2025 ##### [Why Emotional Regulation Should Be the Heart of Every ABA Program](library/emotional-regulation-aba) Why emotional regulation should lead ABA therapy. Learn co-regulation steps, coping tools, and... 7 minutes read [Read More](library/emotional-regulation-aba) 0 views + +0 diff --git a/www/src/content/pages/en/privacy-policy.md b/www/src/content/pages/en/privacy-policy.md new file mode 100644 index 0000000..3a5d4f5 --- /dev/null +++ b/www/src/content/pages/en/privacy-policy.md @@ -0,0 +1,132 @@ +--- +title: "Privacy Policy | Arizona Institute for Autism" +description: "Discover how the Arizona Institute for Autism protects your data. Our Privacy Policy details collection, usage, and security to keep your information safe." +slug: "privacy-policy" +canonical: "https://www.azinstitute4autism.com/privacy-policy" +lang: "en" +translationKey: "privacy-policy" +draft: false +--- +Last updated: February 19, 2025 + +## Introduction + +At Arizona Institute for Autism, we are dedicated to protecting the privacy and security of our website visitors, clients, and their families. This policy explains how we collect, use, and safeguard your personal information. + +As a healthcare provider, we strictly adhere to the [HIPAA](https://www.hhs.gov/hipaa/for-professionals/privacy/laws-regulations/index) (Health Insurance Portability and Accountability Act), [COPPA](https://www.ecfr.gov/current/title-16/chapter-I/subchapter-C/part-312) (Children's Online Privacy Protection Act), and all applicable federal and state regulations governing the privacy and security of [PHI](https://cphs.berkeley.edu/hipaa/hipaa18) (Protected Health Information). + +## Information We Collect + +We may collect the following types of information: + +- Personal Identification Information: Your name, address, phone number, email address, and other contact details. + +- Health Information: Diagnoses, treatment plans, medical history, and other health-related information required to provide autism treatment services. + +- Website Usage Data: Information such as IP addresses, browser type, device type, operating system, and pages visited. This data is collected in a non-identifiable, aggregated form for analytics purposes. + +- Payment Information: Credit card numbers, expiration dates, and other payment details needed to process transactions securely. + +## How We Use Your Information + +We use the collected information for the following purposes: + +- Providing Services: To deliver autism treatment services, including Applied Behavior Analysis (ABA) therapy and related programs. + +- Communication: To respond to inquiries, send newsletters, and provide updates about our services. + +- Marketing (Non-Personalized & HIPAA-Compliant): We use aggregated, anonymized data to analyze trends and enhance our outreach efforts. + +- We do not use any health-related data for targeted advertising or remarketing. + +- PHI is never shared with third-party marketers, advertisers, or analytics platforms. + +- Research and Development: To improve our services, optimize website functionality, and support research in autism treatment. + +- Legal Compliance: To comply with HIPAA, COPPA, and other relevant laws, including meeting legal and law enforcement requirements. + +## How We Protect Your Information + +We implement robust security measures to ensure the confidentiality and integrity of your data: + +- Encryption: We use HIPAA-compliant encryption protocols to protect data during transmission and storage. + +- Access Controls: Only authorized personnel, with proper background checks and confidentiality training, can access your information. + +- Secure Data Storage: All data is stored on secure, HIPAA-compliant servers, both physically and electronically. + +- Incident Response: We maintain a comprehensive data breach response plan to promptly address and mitigate any security incidents. + +## Sharing Your Information + +We do not sell, rent, or share PHI with third-party advertisers. Information may be shared only in the following necessary and permitted circumstances: + +- Service Providers: Contractors, vendors, and partners who assist in delivering our services in a HIPAA-compliant manner. + +- Insurance Companies: For processing claims and obtaining reimbursement for services. + +- Research Institutions: In a de-identified format to support research and the advancement of autism treatment. + +- Legal Obligations: When required by law, regulation, or court order. + +## Your Rights + +You have the following rights regarding your personal and health information: + +- Access: You may request a copy of your records at any time. + +- Correction: If any information is incorrect or incomplete, you can request corrections. + +- Opt-Out: You may opt out of receiving newsletters, marketing emails, or other non-essential communications. + +- Deletion: You can request the deletion of your personal data when legally permissible. Please note that some records must be retained in accordance with HIPAA regulations. + +## Children's Privacy & COPPA Compliance + +We comply with the Children's Online Privacy Protection Act . This means: + +- We obtain verifiable parental consent before collecting personal information from children under 13. + +- We do not knowingly collect information from children without parental or guardian approval. + +- Any data collected from children is used solely for autism treatment services and is never shared for marketing purposes. + +- If you believe we have inadvertently collected data from a child without proper consent, please contact us immediately for removal. + +## Data Protection Agreements (DPA) + +We have established Data Protection Agreements with our service providers and contractors. These agreements require that: + +- Your information is processed in accordance with HIPAA and all applicable data protection laws. + +- No personal health data is used for advertising, analytics tracking, or marketing purposes. + +- PHI is never shared with third-party marketing platforms. + +## Third-Party Tracking & Website Usage Data + +Our website uses anonymous analytics to improve functionality. Specifically: + +- We do not track website visitors for personalized health-related advertising. + +- We do not use third-party advertising cookies to collect health-related data. + +- We do not engage in behavioral tracking that targets users based on health conditions. + +These practices are designed to ensure compliance with healthcare and sensitive information policies. + +## Changes to This Policy + +We may update this privacy policy periodically. All changes will be posted on this page with an updated Last updated date. Your continued use of our website and services after such changes signifies your acceptance of the revised terms. + +## Contact Us + +If you have any questions or concerns about this privacy policy or wish to exercise your privacy rights, please contact us at: + +- Email: info@azinstitute4autism.com + +- Address: 8901 E. Raintree Drive, Suite #160 Scottsdale Arizona 85260 + +- Phone: [(480) 687-7099](tel:+14806877099) + +By using our website and services, you confirm that you have read, understood, and agree to the terms outlined in this privacy policy. diff --git a/www/src/content/pages/en/referrals.md b/www/src/content/pages/en/referrals.md new file mode 100644 index 0000000..3c9cef1 --- /dev/null +++ b/www/src/content/pages/en/referrals.md @@ -0,0 +1,26 @@ +--- +title: "Submit Your Autism Referral Online | Arizona Institute for Autism" +description: "Arizona Institute for Autism simplifies autism referrals. Submit online now to connect families with the compassionate autism care specialists of AIA." +slug: "referrals" +canonical: "https://www.azinstitute4autism.com/referrals" +lang: "en" +translationKey: "referrals" +draft: false +--- +## Physician and Insurer Referrals + +Do you have a client recently diagnosed with autism? + +At the Arizona Institute for Autism, we are here to support your clients reach new milestones in a diverse integrated learning environment. Our mission is to improve special education and to strengthen neurodivergent communities. We offer dependable educational and therapeutic programs for children ages 2-17 that have been diagnosed with autism. + +### Our Services + +- Behavioral + +- Psychological + +- Socialogical + +To provide the highest level of optimal care, we know that it is essential to provide a working partnership with the client’s diagnostic provider, physician, and their insurance company. To facilitate this collaboration, we have built a system of reporting metrics on the child’s treatment plan with supporting progress charts we share with our partners. This information keeps everyone involved up to date on the client’s progress and future needs. If you are an insurance company or diagnostic provider interested in working with us, contact us to learn more about our referral process. + + Refer a Client diff --git a/www/src/content/pages/en/schedule-consultation.md b/www/src/content/pages/en/schedule-consultation.md new file mode 100644 index 0000000..c199579 --- /dev/null +++ b/www/src/content/pages/en/schedule-consultation.md @@ -0,0 +1,52 @@ +--- +title: "Contact Arizona Institute for Autism for Your Free ASD Consultation" +description: "Reach out to discuss autism treatment for your child with AZ Institute for Autism. Early intervention makes a difference; schedule your consultation today!" +slug: "schedule-consultation" +canonical: "https://www.azinstitute4autism.com/schedule-consultation" +lang: "en" +translationKey: "schedule-consultation" +draft: false +--- +We're here for you! + +A Client Advocate from Arizona Institute for Autism will contact you within one business day upon submission of this form. + +![toddler daughter reach out](/assets/images/toddler-daughter-reach-out.png) + +### Start Here + +## The AIA Difference + +Compassionate Care + +Individualized Results + +Sensory-Friendly Rooms + +Convenient & Affordable + +###### + +## ABA Therapy Services + +Arizona Institute for Autism (AIA) is home to leading experts in behavioral health and special education. We provide clinical care for children and teens diagnosed with autism and have a no wait list policy. + +AIA currently serves families in the Greater Phoenix Metropolitan area including Scottsdale, Gilbert, Mesa, and Tempe. We also provide in-home ABA therapy services for families of children diagnosed with autism in Tucson. + +Along with ABA therapy for children and teens diagnosed with autism, our supportive services include autism advocacy, family training, and community outreach. + +![stem sped tech kids](/assets/images/stem-sped-tech-kids_446x.jpg) ![call us to schedule a free consultation](/assets/images/phone-1.svg) Phone + +(480) 687-7099 + +![email for more information](/assets/images/mail.svg) + +Email + +info@abaclinicaz.com + +![located in scottsdale](/assets/images/map-pin.svg) + +Address + +8901 E. Raintree Drive, Suite #160 Scottsdale AZ 85260 diff --git a/www/src/content/pages/en/services.md b/www/src/content/pages/en/services.md new file mode 100644 index 0000000..59e0aa3 --- /dev/null +++ b/www/src/content/pages/en/services.md @@ -0,0 +1,60 @@ +--- +title: "Behavioral, Psychological, and Sociological Pediatric Autism Services" +description: "Discover comprehensive autism services for children, from integrative ABA therapy to educational and family support, at the Arizona Institute for Autism." +slug: "services" +canonical: "https://www.azinstitute4autism.com/services" +lang: "en" +translationKey: "services" +draft: false +--- + Discover More + +[Get Started](/client-consultation) + +- [Home](/) + +- Services + +## Autism Spectrum Disorder Services + +Autism Spectrum Disorder (ASD) refers to a group of complex brain development disorders and is characterized by difficulties with social interaction, verbal and non-verbal communication, and emotional control. + +The Arizona Institute for Autism helps with Autism Evaluations and Diagnostic Screenings, Applied Behavior Analysis (ABA) Therapy, and Educational Programming tailored to each learner’s needs. To support meaningful skill development, we design integrative ABA programs for children diagnosed with autism. We offer both individualized and group ABA Therapy, along with educational services that reflect each child’s unique strengths and goals. + +### AIA ABA & Educational Options + +- In-Center + +- In-School + +- In-Home + +- Early Intervention + +- Academic Readiness + +- Clinical Supervision + +- Parent Consultation + +### Does My Learner Have Autism? + +Approximately 1 in 36 children in the United States will receive an autism diagnosis each year. If your child exhibits any of the behaviors listed above, it is possible that he or she may be diagnosed on the autism spectrum. Diagnosing children with Autism Spectrum Disorder can be challenging and complex. The most important thing you can do is consult a professional if you think your child is displaying atypical behavior. + +[Consult with a Client Advocate](/client-consultation) + +## Our Services + +Arizona Institute for Autism (AIA) offers a comprehensive range of services tailored to individuals with Autism Spectrum Disorder (ASD). Our programs include early intervention for young children, Applied Behavior Analysis (ABA) therapy, social skills groups, and educational support services. AIA is committed to providing personalized care plans to enhance the quality of life for children with autism and their families. + +### [Behavioral Services](/aba-therapy) + +### [Psychological Services](/autism-evaluations) + +### [Sociological Services](/learner-social-club) + +## Need Autism Diagnosis Support? + +To meet diagnostic criteria for ASD, a child must have persistent deficits in each of three areas of social communication and interaction plus at least two of four types of restricted repetitive behaviors. Consult with a Client Advocate today to receive individual and family support! + +[Get a Free Consultation](/client-consultation) diff --git a/www/src/content/pages/en/team.md b/www/src/content/pages/en/team.md new file mode 100644 index 0000000..45e35a2 --- /dev/null +++ b/www/src/content/pages/en/team.md @@ -0,0 +1,122 @@ +--- +title: "Meet Our Dedicated Autism Support Team | Arizona Institute for Autism" +description: "Meet the all-star team of compassionate, experienced professionals transforming personalized autism therapy and education at Arizona Institute for Autism." +slug: "team" +canonical: "https://www.azinstitute4autism.com/team" +lang: "en" +translationKey: "team" +draft: false +--- +## Our Clinical Team + +### Arizona Institute for Autism Scottsdale, Arizona + +AIA's clinical team consists of experienced professionals and paraprofessionals as well as Board Certified Behavior Analysts (BCBA) and Psychologists who have diverse experience and expertise. + +### Board Certified Behavioral Analysts & Psychologists + +## + +![chief clinical director rula diab](/assets/images/team-rula-diab.webp) + +### Rula Diab, BCBA, LBA, M.Ed + +Clinical Director + +![team jennifer espinoza](/assets/images/team-jennifer-espinoza.webp) + +### Jennifer Espinoza, MAOL/ABA + +Clinical BCBA + +![team timirah clay](/assets/images/team-timirah-clay.webp) + +### Timirah Clay, M.Psy/ABA + +Clinical BCBA + +### Clinical Support + +## Our Creative Team + +![team carol harrington](/assets/images/team-carol-harrington.webp) + +### Carol Harrington, A.A. Spec. Ed. + +Clinical Manger + +![team rachel crosby](/assets/images/team-rachel-crosby.webp) + +### Rachel Crosby + +Clinical Administrator + +![team jennifer bonefont](/assets/images/team-jennifer-bonefont.webp) + +### Jennifer Bonefont, B.A. Psy + +Clinical Client Advocate Supervisor + +### Clinical Case Supervisors + +## Our Creative Team + +![team rachael sanchez](/assets/images/team-rachael-sanchez.webp) + +### Rachael Sanchez, BS, M Psy/ABA + +Clinical Supervisor + +### Clinical Education Specialists + +## Our Creative Team + +![team mahima bedi](/assets/images/team-mahima-bedi.webp) + +### Mahima Bedi + +Clinical Instructor + +## Our ABA Care Team + +### ABA Clinic Management + +Applied Behavior Analysis "(ABA) at your service" + +## Our Creative Team + +![team mariah marley](/assets/images/team-mariah-marley.webp) + +### Mariah Marley + +Claims Billing + +![team eney garcia](/assets/images/team-eney-garcia.webp) + +### Eney Garcia, BA + +Accounts Billing + +![team ayah shahbander](/assets/images/team-ayah-shahbander.webp) + +### Ayah Shahbander + +Human Resources + +![team barbara samanich](/assets/images/team-barbara-samanich.webp) + +### Barbara Samanich, BFA + +Creative Marketing Developer + +ABA's leading experts in special education and clinical care. + + Join the AIA Team! + +## Employment Opportunities + +Apply online to join the AIA team! At the Arizona Institute for Autism (AIA) we are on a mission to improve special education and strengthen communities throughout Arizona. + +Our talented and passionate employees are a critical piece to the high-quality ABA therapy we provide along with our commitment to behavioral health, school solutions, and community outreach. For questions regarding open positions, please contact us at hr [at] abaclinicaz [dot] com . + + View Open Positions diff --git a/www/src/content/pages/en/tour.md b/www/src/content/pages/en/tour.md new file mode 100644 index 0000000..1535cf6 --- /dev/null +++ b/www/src/content/pages/en/tour.md @@ -0,0 +1,104 @@ +--- +title: "Tour Arizona's Premier Autism Therapy Center | Schedule Your AIA Visit" +description: "Schedule your tour today and discover why Arizona Institute for Autism is the trusted choice for compassionate autism therapy and supportive care." +slug: "tour" +canonical: "https://www.azinstitute4autism.com/tour" +lang: "en" +translationKey: "tour" +draft: false +--- +## Tour Arizona Institute for Autism + +Reach out to one of our expert Client Advocates to see if ABA-integrated therapy is right for your learner. + +Arizona's Leading Modern Learning Experience for Children Diagnosed with Autism + +![AIA Scottsdale Location](/assets/images/01-aia-front-entrance.webp) + + Our Scottsdale Location + +![Receptionist Area](/assets/images/02-aia-receptionist-area.webp) + + Receptionist Area + +![AIA Main Entrance Hallway](/assets/images/03-aia-entrance-hallway.webp) + + Entrance Hallway + +![AIA Common Room](/assets/images/04-common-room.webp) + + Common Room + +![AIA Sensory-Recreational Room](/assets/images/05-sensory-recreational-room.webp) + + Sensory-Recreational Room + +![Academic Readiness Room Entrance](/assets/images/06-aba-academic-readiness-room-entrance.webp) + + Academic Readiness Room Entrance + +![Academic Readiness Room](/assets/images/07-aba-academic-readiness-room.webp) + + Academic Readiness Room + +![Academic Readiness Room Reading Corner](/assets/images/08-aba-academic-readiness-room-reading-corner.webp) + + Academic Readiness Room Reading Corner + +![Art Gallery](/assets/images/09-aia-art-gallery.webp) + + Art Gallery + + ❮ ❯ + +- ![AIA Scottsdale Location](/assets/images/01-aia-front-entrance.webp) + +- ![Receptionist Area](/assets/images/02-aia-receptionist-area.webp) + +- ![AIA Main Entrance Hallway](/assets/images/03-aia-entrance-hallway.webp) + +- ![AIA Common Room](/assets/images/04-common-room.webp) + +- ![AIA Sensory-Recreational Room](/assets/images/05-sensory-recreational-room.webp) + +- ![Academic Readiness Room Entrance](/assets/images/06-aba-academic-readiness-room-entrance.webp) + +- ![Academic Readiness Room](/assets/images/07-aba-academic-readiness-room.webp) + +- ![Academic Readiness Room Reading Corner](/assets/images/08-aba-academic-readiness-room-reading-corner.webp) + +- ![Art Gallery](/assets/images/09-aia-art-gallery.webp) + +### Amenities + +- Age Appropriate Learner pods + +- 24-Hour Internet Access + +- ABA Therapy Room + +- ABA Academic Readiness Room + +- Learner Sensory Recreational Room + +- Learner Calm Room + +- Learner Nap Room + +- Learner Teen Group Area + +- Community Cafe + +- Group Learning + +- Individual Learning + +- ABA Test and Assessment Room + +- Learner Pick-up & Drop Off Zone + +- Expert BCBA's & Clinicians + +- On-Site Clinical Case Supervisor + + Schedule a Tour Today diff --git a/www/src/content/pages/es/aba-therapy-intake-process.md b/www/src/content/pages/es/aba-therapy-intake-process.md new file mode 100644 index 0000000..92604e9 --- /dev/null +++ b/www/src/content/pages/es/aba-therapy-intake-process.md @@ -0,0 +1,62 @@ +--- +title: "Guía paso a paso para comenzar la terapia ABA | Arizona Institute for Autism" +description: "Descubra cómo comenzar la terapia ABA en el Instituto de Autismo de Arizona. Nuestro proceso de admisión simple y de apoyo guía a su hijo hacia el crecimiento y el éxito." +slug: "aba-therapy-intake-process" +canonical: "https://www.azinstitute4autism.com/es/aba-therapy-intake-process" +lang: "es" +translationKey: "aba-therapy-intake-process" +draft: false +--- +## Cómo empezar con la terapia ABA en el Instituto de Autismo de Arizona + +Comenzar la terapia de Análisis de Comportamiento Aplicado (ABA) con el Instituto de Autismo de Arizona (AIA) es un proceso sencillo, de apoyo y claramente guiado. Siga los pasos a continuación para comenzar el viaje de su hijo hacia el crecimiento, el desarrollo y el éxito. + +### 1. Complete el Formulario de Información del Estudiante + +Comience completando nuestro Paquete de Información para Estudiantes, que recopila información esencial sobre su hijo. Este paquete proporciona a nuestro equipo información inicial para comprender las necesidades únicas de su hijo. Después de enviar el paquete, nuestro Defensor del Cliente se pondrá en contacto con usted de inmediato para discutir los próximos pasos, responder a sus preguntas y guiarlo a través del proceso de admisión. Estamos aquí para apoyarte en cada paso del camino, asegurándonos de que te sientas cómodo e informado desde el principio. + +### 2. Hable con un Defensor del Cliente de AIA + +Nuestro equipo dedicado de Defensores del Cliente es apasionado por ayudar a las familias en cada aspecto de comenzar la terapia ABA. Durante esta conversación inicial, su Defensor/a: + +- Escuche y aprenda sobre las necesidades y circunstancias específicas de su hijo. + +- Explique claramente los servicios y el apoyo disponibles en AIA. + +- Aborde cualquier pregunta o inquietud que pueda tener. + +- Guiarte sin problemas a través de cada paso del proceso de admisión e incorporación. + +Nuestro objetivo es garantizar que su experiencia sea de apoyo, transparente y sin estrés desde el primer día. + +### 3. Complete y firme el paquete de admisión del cliente + +El siguiente paso implica completar y firmar nuestro paquete de admisión de clientes. Este paquete recopila información detallada sobre las fortalezas, los desafíos y la historia del desarrollo de su hijo. Proporcionar información completa y precisa en esta etapa ayuda a nuestro equipo clínico a prepararse eficazmente para la evaluación de su hijo, permitiéndonos adaptar nuestro enfoque terapéutico específicamente a las necesidades y objetivos individuales de su hijo. + +### 4. Verificar la información del seguro y la facturación + +Para asegurar un inicio fluido de la terapia, nuestro gerente de facturación verificará su cobertura y beneficios de seguro una vez que su paquete de admisión esté completo. Nuestro equipo de facturación: + +- Revisa los detalles de tu plan de seguro, incluida la cobertura de terapia ABA. + +- Aclare sus copagos, deducibles y cualquier autorización requerida. + +- Responda a sus preguntas relacionadas con la facturación, manteniendo la transparencia y la claridad. + +Nos esforzamos por simplificar el aspecto financiero de la terapia ABA, guiándote a través del proceso para que puedas concentrarte con confianza en el cuidado de tu hijo. + +### 5. Programa la evaluación de tu hijo + +Con sus detalles de admisión y facturación finalizados, nuestro Defensor del Cliente le ayudará a programar una evaluación exhaustiva con nuestro equipo clínico. Trabajaremos estrechamente con usted para encontrar un horario de cita que se adapte a la agenda de su familia y a la comodidad de su hijo. Esta evaluación es un paso vital para comprender las fortalezas de su hijo e identificar áreas donde necesita apoyo específico. La información recopilada durante la evaluación guiará la creación de un plan de tratamiento personalizado diseñado específicamente para apoyar el crecimiento y los hitos de desarrollo de su hijo. + +### 6. Colaborar en un Plan de Atención Personalizado + +En el Instituto de Autismo de Arizona, la colaboración es fundamental para el éxito a largo plazo de su hijo. La comunicación y coordinación constantes entre nuestro equipo, su familia, cuidadores, educadores y clínicos externos ayudan a garantizar expectativas claras, generalización efectiva de habilidades y progreso sostenido. Una vez que comience la terapia, el progreso de su hijo será supervisado de cerca por un Analista de Conducta Certificado por la Junta (BCBA), quien monitoreará y ajustará regularmente su programa de terapia individualizado. La participación de los padres también es crucial para lograr un progreso significativo, por lo que ofrecemos sesiones semanales de consulta para padres. Estas sesiones te brindarán conocimientos sobre el progreso de tu hijo, estrategias para apoyar la terapia ABA en casa y orientación continua para ayudar a tu hijo a alcanzar su máximo potencial. + + ¿Listo para empezar? + +## La intervención temprana marca la diferencia + +¡Estamos emocionados de asociarnos con usted en este viaje para apoyar el crecimiento y el éxito de su hijo! + + Take the First Step diff --git a/www/src/content/pages/es/aba-therapy.md b/www/src/content/pages/es/aba-therapy.md new file mode 100644 index 0000000..29b8255 --- /dev/null +++ b/www/src/content/pages/es/aba-therapy.md @@ -0,0 +1,60 @@ +--- +title: "Terapia ABA Integrada para el Autismo | Arizona Institute for Autism" +description: "Empodere a su hijo para la vida con terapia ABA integrada individualizada. ¡Reserva una consulta gratuita y únete a nuestra comunidad de apoyo para el autismo!" +slug: "aba-therapy" +canonical: "https://www.azinstitute4autism.com/es/aba-therapy" +lang: "es" +translationKey: "aba-therapy" +draft: false +--- +## Terapia ABA + +El Instituto de Autismo de Arizona ofrece una variedad de servicios clínicos basados en evidencia para personas de 2 a 17 años de edad, que han sido diagnosticadas con Trastorno del Espectro Autista u otros trastornos del desarrollo relacionados. Dependiendo de sus preferencias individuales, así como de las necesidades específicas de su hijo, algunos de nuestros servicios clínicos integrales se llevan a cabo en nuestro instituto con el objetivo de ayudar a su hijo a alcanzar una mejor calidad de vida y un mayor sentido de independencia. + +Nuestros programas de terapia ABA abordan las necesidades integrales de cada estudiante, equipando a los niños con las habilidades necesarias para convertirse en aprendices independientes. + +### Servicios que ofrecemos + + Aprendizaje individual + +#### Programa de Terapia ABA 1:1 + +![aba-daughter-toddler-belonging](/assets/images/aba-daughter-toddler-belonging.webp) + +El programa de Terapia ABA 1:1, diseñado para niños de 2 a 8 años, adopta un enfoque integrador destinado a fomentar el aprendizaje independiente. El Instituto de Autismo de Arizona emplea un modelo naturalista y que afirma la neurodiversidad dentro de su programa de análisis de comportamiento aplicado (ABA), incorporando conocimientos esenciales de la investigación neurocientífica. + +Nuestra terapia ABA se centra en mejorar comportamientos socialmente significativos mediante el uso de refuerzo positivo, enseñanza sistemática y métodos basados en datos. Los clínicos de AIA se centran en adaptar nuestros servicios para acomodar los perfiles únicos de desarrollo neurológico de cada estudiante. + + Aprendizaje en grupo + +#### Terapia ABA 1:2 Programa de Preparación Académica + +![aba-academic-readiness](/assets/images/aba-academic-readiness.webp) + +El Programa de Preparación Académica 1:2 de Terapia ABA está diseñado específicamente para niños de 2 a 6 años y utiliza un enfoque de terapia grupal personalizado para preparar a los estudiantes para una integración exitosa en el aula regular. Este programa incorpora el currículo de la [Academia Preparatoria AIA©](https://aiaprep.org/), combinando el estimado método Montessori con el Análisis de Comportamiento Aplicado (ABA). Este enfoque integrado fomenta un entorno de apoyo adaptado a los estilos de aprendizaje y fortalezas individuales de nuestros estudiantes, facilitando el desarrollo de habilidades sociales, comunicativas, cognitivas y motoras esenciales necesarias para el éxito en las aulas regulares. + +Los principales hitos del desarrollo que se enfatizan en este programa incluyen las habilidades sociales, de comunicación, cognitivas, socioemocionales, de funcionamiento ejecutivo y motoras. A lo largo del Programa de Preparación Académica, su hijo participará en una variedad de asignaturas optativas estructuradas, como terapia del habla, terapia recreativa y musicoterapia. Estos cursos optativos, que incluyen el tiempo en círculo, manualidades, música, juego y otras interacciones grupales, están diseñados para apoyar el desarrollo de habilidades en estas áreas clave. + + Educación Familiar + +#### Programa de Consulta para Padres + +![aba-daughter-toddler-belonging](/assets/images/aba-speech-therapy.webp) + +Creemos que los padres, hermanos y cuidadores desempeñan un papel crucial en el éxito de la terapia de su hijo. Por eso ofrecemos Servicios de Consulta para Padres como parte de nuestro programa integral de ABA. + +Nuestro objetivo es empoderar a las familias con el conocimiento, las herramientas y el apoyo que necesitan para ayudar a su hijo a navegar este viaje de desarrollo con confianza. La consulta con los padres es un componente vital de la terapia ABA, diseñada para asegurar que el progreso logrado durante la terapia se extienda más allá de la clínica. + +Estas consultas brindan a los padres orientación, capacitación y estrategias personalizadas adaptadas a las necesidades únicas de su hijo. + + Hacer una cita + +## Acerca de Rula Diab, Directora Clínica Principal, BCBA, LBA + +![rula-diab-1](/assets/images/rula-diab-1.webp) + +Rula Diab, M.Ed, BCBA, LBA, es la Directora Clínica del Instituto de Autismo de Arizona y una experta de la industria con más de 15 años de experiencia en Educación Especial y Análisis de Comportamiento. En su papel de Directora Clínica, Diab guía y da forma a las prácticas clínicas y a los programas de terapia ABA en el Instituto de Autismo de Arizona. + +Rula colabora estrechamente con profesionales, académicos, legisladores, maestros, familias y, lo más importante, niños con discapacidades del desarrollo en todo Arizona. + +Reconociendo brechas significativas en la forma en que tradicionalmente se implementaban los principios del Análisis de Comportamiento Aplicado (ABA), Rula fue pionera en el modelo educativo del Instituto de Autismo de Arizona. Este enfoque innovador celebra la individualidad al tiempo que honra la dignidad y nutre los intereses, preferencias y motivaciones únicos de cada niño. Ella cree firmemente que la educación debe ser atractiva y agradable para cada niño. diff --git a/www/src/content/pages/es/autism-evaluations.md b/www/src/content/pages/es/autism-evaluations.md new file mode 100644 index 0000000..7a8f4c4 --- /dev/null +++ b/www/src/content/pages/es/autism-evaluations.md @@ -0,0 +1,50 @@ +--- +title: "Evaluación precisa del autismo para niños | Arizona Institute for Autism" +description: "Obtenga evaluaciones integrales de autismo infantil en Scottsdale, AZ. Nuestro equipo de expertos proporciona evaluaciones precisas para apoyar el desarrollo único de su hijo." +slug: "autism-evaluations" +canonical: "https://www.azinstitute4autism.com/es/autism-evaluations" +lang: "es" +translationKey: "autism-evaluations" +draft: false +--- +## Evaluaciones de autismo + +En el Arizona Institute for Autism, no existe una sola prueba de laboratorio para diagnosticar el autismo. En cambio, nuestro equipo realiza evaluaciones integrales mediante una serie de observaciones y pruebas para comprender las posibles causas subyacentes de los síntomas de su hijo/a. + +Con un diagnóstico preciso de [trastorno del espectro autista (TEA)](https://www.childrens.com/specialties-services/conditions/autism-spectrum-disorder), podemos brindarle a su hijo/a apoyo personalizado y atención especializada adaptada a sus necesidades únicas. + +### Condiciones que evaluamos y tratamos + +![niño recibiendo apoyo individualizado en un entorno terapéutico](/assets/images/hero-home.jpg) + +- Trastorno del espectro autista (TEA) + +- Trastorno por déficit de atención e hiperactividad (TDAH) + +### Servicios de evaluación que ofrecemos + +#### Evaluación focalizada para TEA + +- Recomendada cuando existen inquietudes específicas sobre el trastorno del espectro autista. + +#### Evaluación focalizada para TDAH + +- Recomendada cuando existen inquietudes específicas sobre el trastorno por déficit de atención e hiperactividad. + +#### Evaluación focalizada combinada para TEA/TDAH + +- Recomendada cuando existen inquietudes más amplias relacionadas con el coeficiente intelectual, el funcionamiento ejecutivo y el desarrollo socioemocional, especialmente si se sospechan tanto TEA como TDAH. + +### Cómo funcionan las evaluaciones pediátricas para el diagnóstico de autismo + +En el Arizona Institute for Autism, diagnosticamos el autismo observando cuidadosamente el comportamiento de su hijo/a y revisando la historia del desarrollo proporcionada por los cuidadores. Las evaluaciones incluyen un equipo multidisciplinario, que a menudo cuenta con profesionales de psicología, patología del habla y lenguaje, psiquiatría y neurología. + +Los métodos comunes de evaluación incluyen: + +#### Escala de Observación para el Diagnóstico del Autismo (ADOS) + +ADOS es una herramienta de evaluación estructurada que utilizan nuestros especialistas para evaluar comportamientos relacionados con los trastornos del espectro autista. Apropiada para niños de todas las edades, ADOS nos ayuda a comprender las habilidades sociales y del lenguaje de su hijo/a, así como su nivel general de desarrollo. + +Esta evaluación implica observar cómo su hijo/a interactúa en diferentes situaciones sociales basadas en el juego. Para los niños más pequeños, esto puede incluir actividades como jugar con bloques o tomar una merienda, mientras que los niños mayores que se comunican verbalmente pueden participar en conversaciones sobre actividades cotidianas, como asistir a la escuela. + + Programar una cita diff --git a/www/src/content/pages/es/client-consultation.md b/www/src/content/pages/es/client-consultation.md new file mode 100644 index 0000000..c9396d8 --- /dev/null +++ b/www/src/content/pages/es/client-consultation.md @@ -0,0 +1,14 @@ +--- +title: "Formulario de Consulta del Cliente | Arizona Institute for Autism | Scottsdale" +description: "Programa tu consulta gratuita con un Defensor del Cliente en el Instituto de Autismo de Arizona para descubrir qué podemos hacer por tu hijo diagnosticado con autismo." +slug: "client-consultation" +canonical: "https://www.azinstitute4autism.com/es/client-consultation" +lang: "es" +translationKey: "client-consultation" +draft: false +--- +Aquí en el Instituto de Autismo de Arizona (AIA), tenemos una política de lista de espera cero y brindamos atención clínica experta para niños y adolescentes diagnosticados con autismo. Actualmente atendemos a familias en las áreas metropolitanas de Scottsdale, Gilbert, Mesa, Tempe y Phoenix. + +## Nuestros Servicios de Terapia ABA + +Además de la terapia ABA para niños y adolescentes, nuestros servicios incluyen apoyo para la defensa del autismo, apoyo para la evaluación y el diagnóstico, y capacitación familiar. diff --git a/www/src/content/pages/es/contact.md b/www/src/content/pages/es/contact.md new file mode 100644 index 0000000..d986f16 --- /dev/null +++ b/www/src/content/pages/es/contact.md @@ -0,0 +1,30 @@ +--- +title: "Contactar a AIA | Arizona Institute for Autism | Scottsdale" +description: "Comuníquese con nosotros para obtener más información sobre nuestros servicios integrales de bienestar para niños con autismo, que incluyen salud conductual, educación y consulta." +slug: "contact" +canonical: "https://www.azinstitute4autism.com/es/contact" +lang: "es" +translationKey: "contact" +draft: false +--- +## Programar una visita + +Comuníquese con uno de nuestros defensores de clientes expertos para ver si la terapia integrada con ABA es adecuada para su alumno. + + Programar visita + +## Comunícate + +Si tiene preguntas sobre alguno de nuestros servicios y programas, no dude en utilizar el formulario de contacto de esta página. También puede llamar o enviar un correo electrónico utilizando la siguiente información. + +Consultas generales: 9907-786 (084) + +Consultas de facturación: 9240-807 (206) + +Correo electrónico: moc.msitua4etutitsniza@ofni + +Dirección: 8901 E. Raintree Drive, St #160 Scottsdale, AZ 85260 + +Horas: Lunes - Viernes, 8am - 6pm MST + +### Contactar a AIA diff --git a/www/src/content/pages/es/index.md b/www/src/content/pages/es/index.md new file mode 100644 index 0000000..f39a2ec --- /dev/null +++ b/www/src/content/pages/es/index.md @@ -0,0 +1,192 @@ +--- +title: "Terapia ABA cerca de mí | Arizona Institute for Autism | Scottsdale" +description: "Arizona Institute for Autism: centro de servicios de salud conductual y educación ubicado en Scottsdale. Atendemos a personas con autismo y a sus familias." +slug: "index" +canonical: "https://www.azinstitute4autism.com/es" +lang: "es" +translationKey: "index" +draft: false +--- +Los principales expertos de Arizona + +# Salud Mental y Educación Especial + +Aquí en el Instituto de Autismo de Arizona (AIA), brindamos atención clínica experta para niños y adolescentes con diagnóstico de autismo. Actualmente atendemos a familias en las áreas metropolitanas de Scottsdale, Gilbert, Mesa, Tempe y Phoenix. + + Empezar + +![bcba therapist with happy toddler](/assets/images/bcba-with-happy-toddler.webp) + +## Servicios de terapia ABA para niños y adolescentes diagnosticados con TEA + +- Apoyo a la defensa del autismo + +- Apoyo a la evaluación y valoración + +- Servicios de Autismo para Niños + +- Servicios Comunitarios de Autismo + +- Servicios de Capacitación Familiar + +![girl learning by playing](/assets/images/playing-girl.webp) + +![girl learning by playing](/assets/images/playing-girl.webp) + +## Servicios de terapia ABA para niños y adolescentes diagnosticados con TEA + +- Apoyo a la defensa del autismo + +- Apoyo a la evaluación y valoración + +- Servicios de Autismo para Niños + +- Servicios Comunitarios de Autismo + +- Servicios de Capacitación Familiar + +### Nuestro compromiso con el éxito de su estudiante + +- En el centro + +- En casa + +- Tratamiento de terapia integrada + +- Intervención temprana + +- Preparación Académica + +- Supervisión clínica + +- Consulta de padres + + Programar una evaluación + +![boy playing while learning](/assets/images/playing-boy.webp) + +## Beneficios que van más allá de un proveedor de terapia integrada típico + +### La Diferencia AIA + +- Cuidado compasivo + +- Resultados individualizados + +- Salas sensoriales + +- Conveniente y asequible + +![link - learner journey for children with autism video](/assets/images/learner-journey.webp) + +## ¿Su alumno tiene dificultades con estas habilidades? ![icon-Social_Engagement](/assets/images/icon-Social_Engagement.png) ### Compromiso social ![icon-Eye_Contact](/assets/images/icon-Eye_Contact.png) ### Contacto visual ![icon-Listening](/assets/images/icon-Listening.png) ### Escuchar ![icon-Repetitive_Movement](/assets/images/icon-Repetitive_Movement.png) ### Movimiento repetitivo ![icon-Playing](/assets/images/icon-Playing.png) ### Jugando ![icon-Speach](/assets/images/icon-Speach.png) ### Discurso ## Sí, aceptamos seguros. Un servicio integrado todo en uno para las necesidades de educación especial de su hijo, el Instituto de Autismo de Arizona (AIA) ofrece y acepta la mayoría de los planes de seguro que cubren la terapia ABA. Estos incluyen BCBS AZ, Aetna, Optum, Tricare, United Healthcare AHCCCS y UnitedHealth. + +![logo for bluecross/blueshield](/assets/images/bluecrossblueshield-logo-1.webp) + +![aetna logo](/assets/images/aetna.png) + +![logo for optum](/assets/images/logo-optum.webp) + +![logo for tricare](/assets/images/logo-tricare-1.webp) + +![logo for ahcccs](/assets/images/logo-ahcccs.webp) + +![logo for united healthcare](/assets/images/united-healthcare-logo-1.webp) + +## Cuenta de Becas de Arizona (ESA) + +Miles de estudiantes de Arizona son actualmente elegibles para la ESA financiada por el estado, que otorga entre $4,000 y $6,500 anualmente por estudiante para la matrícula de educación privada, educación en el hogar y otros servicios. El Instituto de Autismo de Arizona (AIA) está aprobado por el Departamento de Educación de Arizona como proveedor para padres con estudiantes que califican para la Beca de Empoderamiento. Si eres elegible para el programa ESA, puedes usar tus fondos para la matrícula de nuestros programas ABA. + +![logo-az-dept-of-education](/assets/images/logo-az-dept-of-education.webp) + +## ¿Necesita ayuda para pagar su atención? + +El Instituto de Autismo de Arizona ofrece asistencia financiera flexible a las personas sin seguro. Obtén la atención que deseas o necesitas y paga a plazos. + + Solicitar cita + +## Nuestro proceso + +![Primer paso del recorrido del estudiante](/assets/images/learner-journey-step-1a.svg) + +Complete el formulario de información del estudiante + +![segundo paso del recorrido del estudiante](/assets/images/learner-journey-step-2.svg) + +Hable con un Defensor del Cliente + +![Tercer paso del recorrido del estudiante](/assets/images/learner-journey-step-3.svg) + +Llenar y firmar un paquete de admisión de clientes + +![Cuarto paso del recorrido del estudiante](/assets/images/learner-journey-step-4.svg) + +Verificar la información de facturación, seguro y beneficios + +![Quinto paso del recorrido del estudiante](/assets/images/learner-journey-step-5.svg) + +Programar una evaluación + +![sexto paso del recorrido del estudiante](/assets/images/learner-journey-step-6.svg) + +Colaborar en un Plan de Cuidados + +![rula-diab](/assets/images/rula-diab.webp) + +### Directora Clínica Rula Diab, BCBA, LBA, M.Ed. + +## Una extensión de tu familia + +"En AIA, nos esforzamos por brindar atención excelente y compasiva a todas las comunidades a las que servimos. No podríamos lograr eso sin un personal y familias excelentes, apasionados y comprometidos. Esperamos con ansias nuestra colaboración con usted a medida que continuamos creciendo, sirviendo y apoyando a nuestros estudiantes en la búsqueda de su potencial individual." + +![clinical-director-rula-diab](/assets/images/clinical-director-rula-diab.png) + +### Lo que dicen los clientes + +Claudia + +Our son 💙 is an autistic kid. We struggled to find the correct place for him, that place where you can feel comfortable leaving your kid. We visited five companies, and no one gave us that confidence until we found AIA. You can see the dedication from each employee (Director, therapists, coordinators, etc.) to every kid. Their therapy rooms are huge and spacious; every kid can play and learn simultaneously in their own spaces. We are thankful 🙏 to Arizona Institute for Autism for caring for Misael. All of you are Amazing!!! Thank you 😊 + +Kristin + +My son has grown and learned so much from the team at AIA. He loves the team and they love him... + +Amanda + +My son loves this program. He started when he was 21 months year old, so I was picky in choosing where he would go. I love that it is play based and he is 1-on-1 with a therapist the whole time. + +Dave + +I highly recommend Arizona Institute for Autism. Rula Diab runs a fantastic clinic and has an amazing team. Shoutout to Coach D - it is incredible that they have a former NFL Player helping with P.E.! They also held a birthday party for our son. Amazing and so full of love & care... + +Meagan + +We are incredibly grateful for the support and guidance our child has received from the team at Arizona Institute for Autism. The professionalism and dedication of the team have made a remarkable difference in our child's development. They truly care about each child's growth and tailor their approach to meet individual needs. Our child has made significant strides in communication and social skills, and we couldn't be happier with the positive impact they've had on our family. Highly recommend AIA. + +Macey + +We love AIA, you can expect amazing staff and a clean facility. Along with a safe environment for your children. We love the mission behind AIA and feel like there’s no other place here in Arizona that does what they do here. + +S.L. + +My son has developed faster and been happier at this Autism center over all others he’s experienced. The therapist/teachers and all the way to the Rula the manager have gone above and beyond to work with my son’s special needs. As every Autistic child is different they have developed a plan specifically fit to him. We have weekly meetings to join our knowledge to develop my son as quickly and efficiently comfortably for him as possible. I’m blown away by how I finally feel like part of a team that is my son’s team. Thank you. + +Emily + +AIA is phenomenal!!! Rula and her staff are fantastic. They are patient, professional, compassionate and extremely knowledgeable. My son loves his providers. They have helped me navigate some extremely tough times. I highly recommend AIA. + +Raye + +I absolutely love it here! They care about your child so much! They work with you when it comes to your schedule. They are all so very friendly here. Anytime I step in here I feel a warm welcoming from everyone. My son loves coming here. They care about helping your child succeed in every possible way, my din is going to flourish here! + +Danielle + +AIA has done wonders for my son. I drive from NW Peoria just to come here. Everyone is very professional and kind. They truly care about the kids and seeing them succeed. I’m so lucky to have found them. I would recommend them to anyone! + +Tim + +The staff at AIA is my second family. Not only does my son receive the best care possible, they also keep me in check and help make sure I’m doing my part. That’s the kind of love you get in this big family! + +![logo for Behavior Analyst Certification Board (BACB)](/assets/images/logo-BACB.png) + +![the council of autism service providers member logo](/assets/images/casp-member-logo.webp) diff --git a/www/src/content/pages/es/learner-social-club.md b/www/src/content/pages/es/learner-social-club.md new file mode 100644 index 0000000..93895c4 --- /dev/null +++ b/www/src/content/pages/es/learner-social-club.md @@ -0,0 +1,60 @@ +--- +title: "Impulsa el funcionamiento emocional y social con Learner Social Club en AIA" +description: "Póngase en contacto con AIA para obtener un pase de prueba gratuito de 1 día y ver cómo el desarrollo social y emocional de su hijo puede beneficiarse de nuestro Learner Social Club de 8 a 17 años." +slug: "learner-social-club" +canonical: "https://www.azinstitute4autism.com/es/learner-social-club" +lang: "es" +translationKey: "learner-social-club" +draft: false +--- +## Learner Social Club + +Todo niño necesita oportunidades para divertirse, hacer amigos y crear conexiones sociales mientras desarrolla habilidades valiosas. Learner Social Club está diseñado específicamente para apoyar el bienestar emocional y social de su hijo/a mediante actividades de enriquecimiento atractivas y basadas en evidencia. + +### Lo que ofrecemos + +Nuestros servicios integrales de enriquecimiento para el bienestar incluyen: + +- Música + +- Arte + +- Juegos + +- Baile + +- Actividades recreativas + +Estas actividades cuidadosamente diseñadas ayudan a nutrir la mente y el cuerpo de su hijo/a, brindan bienestar integral y le ahorran tiempo valioso. + +### Recordatorios de inscripción para padres/tutores + +Para garantizar la mejor experiencia para su hijo/a, tenga en cuenta lo siguiente: + +- Control de esfínteres: Los participantes deben saber usar el baño antes de inscribirse. + +- Toallitas húmedas: Envíe toallitas húmedas para su hijo/a. Estas pueden guardarse en nuestra clínica. + +- Merienda y agua: Envíe a su hijo/a con una merienda y agua. Estos artículos también pueden guardarse en el centro. + +- Aviso de pausa/cancelación: Proporcione al personal de AIA un aviso con al menos 30 días de anticipación si planea pausar o cancelar los servicios de Learner Social Club. + +### Horario del programa y edades atendidas + +![estudiantes participando en actividades sociales y STEM](/assets/images/stem-sped-social-learners.webp) + +Learner Social Club actualmente atiende a jóvenes de 8 a 17 años . Nuestras opciones de horario flexible actualmente incluyen: + +- 2 días/semana (lunes y miércoles): 4:00 p. m. – 6:00 p. m. + +- 1 día/semana (solo miércoles): 4:00 p. m. – 6:00 p. m. + +### Información de pago + +- Tipo de pago: Pago particular + +¿Le interesa probar nuestro programa? + +Obtenga un pase de prueba de 1 día enviándonos un correo electrónico a info [at] azinstitute4autism [dot] com . + +[Enroll Now](/es/client-consultation) diff --git a/www/src/content/pages/es/library.md b/www/src/content/pages/es/library.md new file mode 100644 index 0000000..46d7e72 --- /dev/null +++ b/www/src/content/pages/es/library.md @@ -0,0 +1,52 @@ +--- +title: "Biblioteca y Noticias | Instituto de Autismo de Arizona" +description: "Noticias sobre terapia ABA y educación especial, casos de estudio, recetas, editoriales y tutoriales para y sobre nuestros estudiantes con autismo." +slug: "library" +canonical: "https://www.azinstitute4autism.com/es/library" +lang: "es" +translationKey: "library" +draft: false +--- +Bienvenido a # La Biblioteca en AZ Institute for Autism 100.120.237.218 ## Biblioteca Bienvenido a la Biblioteca en AIA, donde compartimos valiosas ideas, estrategias y recursos para apoyar a las personas con autismo, a sus familias y a los profesionales en el campo. Nuestros artículos exploran temas clave en la terapia de Análisis Conductual Aplicado (ABA), incluyendo la enseñanza de la auto-defensa, estrategias proactivas y reactivas, y técnicas innovadoras de intervención. También destacamos eventos comunitarios, historias de éxito y orientación de expertos para fomentar la comprensión y el empoderamiento. Ya sea que seas padre, cuidador, educador o defensor, nuestro objetivo es brindar contenido significativo que ayude a los niños con autismo a alcanzar su máximo potencial en un entorno compasivo y solidario. ¡Mantente conectado con nosotros mientras seguimos compartiendo conocimiento y celebrando los avances! + + All Post + +- [All Post](../library) ###### Popular Posts - [Ya se inscriben alumnos: Academia Preparatoria AIA para niños de 2 a 6 años](library/aba-school-readiness-arizona) - [Por qué la regulación emocional debería ser el corazón de cada programa de ABA](library/emotional-regulation-aba) - [Refuerzo positivo en la terapia ABA para fomentar el desarrollo de habilidades](library/positive-reinforcement-techniques) - [Por qué mi hijo puede hablar pero aún tiene dificultades sociales](library/social-pragmatic-communication-autism) - [Qué esperar en la primera evaluación de autismo de su hijo](library/autism-evaluation-what-to-expect) [![Mejorando la generalización para un impacto más amplio en el autismo](/assets/images/hero-enhancing-generalization-skills_800x.jpg)](library/enhancing-generalization-skills) ![Rula Diab, Directora Clínica, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) [Rula Diab, Directora Clínica, M.Ed, BCBA, LBA](library/author/rula-diab) 8 abril 2026 ##### [Mejorando la generalización para un impacto más amplio en el autismo](library/enhancing-generalization-skills) Mejorar la generalización en el autismo implica generalizaciones de estímulos, respuestas y... 1 minute read [Leer Más](library/enhancing-generalization-skills) 0 views + +0 + +![Qué esperar en la primera evaluación de autismo de su hijo](/assets/images/autism-evaluation-expectations_hero.png) ![Rula Diab, Directora Clínica, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) [Rula Diab, Directora Clínica, M.Ed, BCBA, LBA](library/author/rula-diab) 8 abril 2026 ##### [Qué esperar en la primera evaluación de autismo de su hijo](library/autism-evaluation-what-to-expect) Aprenda qué sucede antes, durante y después de una evaluación de autismo en un niño. Vea a quién... 8 minutes read [Leer Más](library/autism-evaluation-what-to-expect) 0 views + +0 + +![Guía de Autismo para Padres y Cuidadores](/assets/images/family-guide-to-autism-aba-at-home_hero.png) ![Rula Diab, Directora Clínica, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) [Rula Diab, Directora Clínica, M.Ed, BCBA, LBA](library/author/rula-diab) 8 abril 2026 ##### [Guía de Autismo para Padres y Cuidadores](library/parents-guide-to-autism-and-aba) Learn practical autism and ABA-informed strategies parents and caregivers can use to support... 11 minutes read [Leer Más](library/parents-guide-to-autism-and-aba) 0 views + +0 + +![Refuerzo positivo en la terapia ABA para fomentar el desarrollo de habilidades](/assets/images/hero-positive-reinforcement-techniques.webp) ![Rula Diab, Directora Clínica, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) [Rula Diab, Directora Clínica, M.Ed, BCBA, LBA](library/author/rula-diab) 8 abril 2026 ##### [Refuerzo positivo en la terapia ABA para fomentar el desarrollo de habilidades](library/positive-reinforcement-techniques) Aprenda técnicas efectivas de refuerzo positivo para fomentar el comportamiento deseado en los... 4 minutes read [Leer Más](library/positive-reinforcement-techniques) 0 views + +0 + +![Habilidades de funcionamiento ejecutivo y autismo](/assets/images/hero-executive-functioning-skills-autism.webp) ![Rula Diab, Directora Clínica, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) [Rula Diab, Directora Clínica, M.Ed, BCBA, LBA](library/author/rula-diab) 8 abril 2026 ##### [Habilidades de funcionamiento ejecutivo y autismo](library/executive-functioning-skills-autism) Estrategias basadas en evidencia para la función ejecutiva en el autismo: apoyos visuales para la... 3 minutes read [Leer Más](library/executive-functioning-skills-autism) 0 views + +0 + +![Guía para enseñar la autodefensa en el ABA](/assets/images/hero-teach-self-advocacy.webp) ![Rula Diab, Directora Clínica, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) [Rula Diab, Directora Clínica, M.Ed, BCBA, LBA](library/author/rula-diab) 8 abril 2026 ##### [Guía para enseñar la autodefensa en el ABA](library/autism-self-advocacy-skills-aba) Empodere a su hijo con terapia ABA individualizada en el Instituto de Autismo de Arizona. ¡Reserva... 2 minutes read [Leer Más](library/autism-self-advocacy-skills-aba) 0 views + +0 + +![Tarjetas Primero/Después : Empoderando las transiciones para niños autistas](/assets/images/hero-first-then-cards.webp) ![Rula Diab, Directora Clínica, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) [Rula Diab, Directora Clínica, M.Ed, BCBA, LBA](library/author/rula-diab) 8 abril 2026 ##### [Tarjetas Primero/Después : Empoderando las transiciones para niños autistas](library/first-then-cards-autism-transitions) Aprenda cómo Primero/después, las tarjetas apoyan transiciones más suaves y comportamientos... 2 minutes read [Leer Más](library/first-then-cards-autism-transitions) 0 views + +0 + +![Descubre consejos para el autocuidado de padres de niños con autismo](/assets/images/hero-self-care-priority.webp) ![Rula Diab, Directora Clínica, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) [Rula Diab, Directora Clínica, M.Ed, BCBA, LBA](library/author/rula-diab) 8 abril 2026 ##### [Descubre consejos para el autocuidado de padres de niños con autismo](library/autism-family-self-care-tips) Toma las riendas de tu bienestar como cuidador de una persona con autismo. Explora estrategias... 3 minutes read [Leer Más](library/autism-family-self-care-tips) 0 views + +0 + +![Evaluación del Autismo en Arizona: Guía Paso a Paso para Padres](/assets/images/autism_evaluation_arizona_hero.jpg) ![Rula Diab, Directora Clínica, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) [Rula Diab, Directora Clínica, M.Ed, BCBA, LBA](library/author/rula-diab) 22 enero 2026 ##### [Evaluación del Autismo en Arizona: Guía Paso a Paso para Padres](../library/autism-evaluation-diagnosis-arizona-parent-guide) Aprende los signos del autismo según la edad, quién puede diagnosticar en Arizona y los próximos... 7 minutes read [Leer Más](../library/autism-evaluation-diagnosis-arizona-parent-guide) 0 views + +0 + +![Por qué mi hijo puede hablar pero aún tiene dificultades sociales](/assets/images/talk-not-social.jpg) ![Rula Diab, Directora Clínica, M.Ed, BCBA, LBA](/assets/images/rula-diab-avatar.jpg) [Rula Diab, Directora Clínica, M.Ed, BCBA, LBA](library/author/rula-diab) 22 enero 2026 ##### [Por qué mi hijo puede hablar pero aún tiene dificultades sociales](library/social-pragmatic-communication-autism) Tu hijo puede hablar, pero tiene dificultades sociales. Vea cómo el lenguaje pragmático, la... 8 minutes read [Leer Más](library/social-pragmatic-communication-autism) 0 views + +0 diff --git a/www/src/content/pages/es/services.md b/www/src/content/pages/es/services.md new file mode 100644 index 0000000..fd08305 --- /dev/null +++ b/www/src/content/pages/es/services.md @@ -0,0 +1,60 @@ +--- +title: "Servicios pediátricos de autismo conductuales, psicológicos y sociológicos" +description: "Descubra servicios integrales para el autismo para niños, desde terapia ABA integrativa hasta apoyo educativo y familiar, en el Instituto de Autismo de Arizona." +slug: "services" +canonical: "https://www.azinstitute4autism.com/es/services" +lang: "es" +translationKey: "services" +draft: false +--- + Discover More + +[Get Started](/es/client-consultation) + +- [Inicio](/) + +- Servicios + +## Servicios para el Trastorno del Espectro Autista + +El Trastorno del Espectro Autista (TEA) se refiere a un grupo de trastornos complejos del desarrollo cerebral y se caracteriza por dificultades en la interacción social, la comunicación verbal y no verbal, y el control emocional. + +El Instituto de Autismo de Arizona ayuda con evaluaciones de autismo y cribados diagnósticos, terapia de análisis de comportamiento aplicado (ABA) y programación educativa adaptada a las necesidades de cada estudiante. Para apoyar el desarrollo significativo de habilidades, diseñamos programas integrativos de ABA para niños diagnosticados con autismo. Ofrecemos terapia ABA tanto individualizada como grupal, junto con servicios educativos que reflejan las fortalezas y metas únicas de cada niño. + +### AIA ABA y Opciones Educativas + +- En el centro + +- En la escuela + +- En el hogar + +- Intervención temprana + +- Preparación académica + +- Supervisión clínica + +- Consulta de padres + +### ¿Mi alumno tiene autismo? + +Aproximadamente 1 de cada 36 niños en los Estados Unidos recibirá un diagnóstico de autismo cada año. Si su hijo presenta alguno de los comportamientos enumerados anteriormente, es posible que le diagnostiquen un trastorno del espectro autista. Diagnosticar a niños con Trastorno del Espectro Autista puede ser desafiante y complejo. Lo más importante que puedes hacer es consultar a un profesional si crees que tu hijo muestra un comportamiento atípico. + +[Consulte con un Defensor del Cliente](/es/client-consultation) + +## Nuestros Servicios + +El Instituto de Autismo de Arizona (AIA) ofrece una amplia gama de servicios adaptados a personas con Trastorno del Espectro Autista (TEA). Nuestros programas incluyen intervención temprana para niños pequeños, terapia de Análisis de Comportamiento Aplicado (ABA), grupos de habilidades sociales y servicios de apoyo educativo. AIA se compromete a proporcionar planes de atención personalizados para mejorar la calidad de vida de los niños con autismo y sus familias. + +### [Servicios Conductuales](/es/aba-therapy) + +### [Servicios Psicológicos](/es/autism-evaluations) + +### [Servicios Sociológicos](/es/learner-social-club) + +## ¿Necesita apoyo para el diagnóstico de autismo? + +Para cumplir los criterios diagnósticos de TEA, un niño debe tener déficits persistentes en cada una de las tres áreas de comunicación e interacción social, además de al menos dos de los cuatro tipos de comportamientos repetitivos restringidos. ¡Consulte hoy mismo a un Defensor del Cliente para recibir apoyo individual y familiar! + +[Programe una consulta gratuita](/es/client-consultation) diff --git a/www/src/data/navigation.ar.json b/www/src/data/navigation.ar.json new file mode 100644 index 0000000..5bcc037 --- /dev/null +++ b/www/src/data/navigation.ar.json @@ -0,0 +1,10 @@ +{ + "primary": [ + { "label": "الرئيسية", "href": "/ar" }, + { "label": "الخدمات", "href": "/services" }, + { "label": "المكتبة", "href": "/ar/library" }, + { "label": "اتصل بنا", "href": "/contact" } + ], + "services": [], + "footer": [] +} diff --git a/www/src/data/navigation.en.json b/www/src/data/navigation.en.json new file mode 100644 index 0000000..f9436ad --- /dev/null +++ b/www/src/data/navigation.en.json @@ -0,0 +1,21 @@ +{ + "primary": [ + { "label": "Home", "href": "/" }, + { "label": "About", "href": "/about" }, + { "label": "Services", "href": "/services" }, + { "label": "Library", "href": "/library" }, + { "label": "Contact", "href": "/contact" } + ], + "services": [ + { "label": "Behavioral", "href": "/aba-therapy" }, + { "label": "Psychological", "href": "/autism-evaluations" }, + { "label": "Sociological", "href": "/learner-social-club" } + ], + "footer": [ + { "label": "Team", "href": "/team" }, + { "label": "Careers", "href": "/careers" }, + { "label": "Forms", "href": "/client-forms" }, + { "label": "Insurance", "href": "/insurance" }, + { "label": "Referrals", "href": "/referrals" } + ] +} diff --git a/www/src/data/navigation.es.json b/www/src/data/navigation.es.json new file mode 100644 index 0000000..0f06ad7 --- /dev/null +++ b/www/src/data/navigation.es.json @@ -0,0 +1,15 @@ +{ + "primary": [ + { "label": "Inicio", "href": "/es" }, + { "label": "Sobre", "href": "/about" }, + { "label": "Servicios", "href": "/es/services" }, + { "label": "Biblioteca", "href": "/es/library" }, + { "label": "Contacto", "href": "/es/contact" } + ], + "services": [ + { "label": "Terapia ABA", "href": "/es/aba-therapy" }, + { "label": "Evaluaciones", "href": "/es/autism-evaluations" }, + { "label": "Club Social", "href": "/es/learner-social-club" } + ], + "footer": [] +} diff --git a/www/src/data/redirects.json b/www/src/data/redirects.json new file mode 100644 index 0000000..e2f2cae --- /dev/null +++ b/www/src/data/redirects.json @@ -0,0 +1,20 @@ +[ + { + "from": "/aba", + "to": "/aba-therapy", + "status": 301, + "reason": "Brief alias to preserved mirror URL" + }, + { + "from": "/autismevaluations", + "to": "/autism-evaluations", + "status": 301, + "reason": "Brief alias to preserved mirror URL" + }, + { + "from": "/learnersocialclub", + "to": "/learner-social-club", + "status": 301, + "reason": "Brief alias to preserved mirror URL" + } +] diff --git a/www/src/data/services.json b/www/src/data/services.json new file mode 100644 index 0000000..a722d07 --- /dev/null +++ b/www/src/data/services.json @@ -0,0 +1,20 @@ +[ + { + "title": "Behavioral", + "description": "Integrated, individualized ABA therapy that builds practical skills and independence.", + "href": "/aba-therapy", + "image": "/assets/images/playing-boy.webp" + }, + { + "title": "Psychological", + "description": "Comprehensive autism evaluations for children and families.", + "href": "/autism-evaluations", + "image": "/assets/images/autism_evaluation_arizona_hero.jpg" + }, + { + "title": "Sociological", + "description": "Social and emotional learning opportunities for children and teens.", + "href": "/learner-social-club", + "image": "/assets/images/playing-girl.webp" + } +] diff --git a/www/src/data/site.json b/www/src/data/site.json new file mode 100644 index 0000000..f71d1b8 --- /dev/null +++ b/www/src/data/site.json @@ -0,0 +1,14 @@ +{ + "name": "Arizona Institute for Autism", + "shortName": "AIA", + "url": "https://www.azinstitute4autism.com", + "phone": "(480) 687-7099", + "email": "info@azinstitute4autism.com", + "address": "8901 E Raintree Dr Ste 160, Scottsdale, AZ 85260", + "social": { + "facebook": "https://www.facebook.com/Arizona-Institute-for-Autism-114880900797124/", + "instagram": "https://www.instagram.com/azinstitute4autism/", + "linkedin": "https://www.linkedin.com/company/azinstituteforautism/", + "youtube": "https://www.youtube.com/@arizonainstituteforautism" + } +} diff --git a/www/src/layouts/BaseLayout.astro b/www/src/layouts/BaseLayout.astro new file mode 100644 index 0000000..32d01fb --- /dev/null +++ b/www/src/layouts/BaseLayout.astro @@ -0,0 +1,43 @@ +--- +import Header from '../components/Header.astro'; +import Footer from '../components/Footer.astro'; +import Seo from '../components/Seo.astro'; +import site from '../data/site.json'; +import '../styles/global.css'; +import '../styles/rtl.css'; +const { title, description, canonical, image, lang = 'en', type = 'website' } = Astro.props; +const dir = lang === 'ar' ? 'rtl' : 'ltr'; +const organizationSchema = { + '@context': 'https://schema.org', + '@type': 'MedicalOrganization', + name: site.name, + url: site.url, + telephone: site.phone, + email: site.email, + address: { + '@type': 'PostalAddress', + streetAddress: '8901 E Raintree Dr Ste 160', + addressLocality: 'Scottsdale', + addressRegion: 'AZ', + postalCode: '85260', + addressCountry: 'US' + }, + sameAs: Object.values(site.social) +}; +--- + + + + + + + +