feat: migrate blog FAQs to reusable MDX accordion

- add Astro MDX support and convert FAQ-bearing posts to MDX
- centralize FAQ markup, scoped styling, behavior, and JSON-LD
- preserve FAQ content and links across English and Spanish posts
- extend blog audits and document the MDX editing workflow
- remove obsolete global FAQ styles
- ignore Front Matter CMS generated state
This commit is contained in:
2026-06-08 15:46:20 -07:00
parent 9678fc9a3c
commit 826d5e8c7d
31 changed files with 1923 additions and 736 deletions
+16 -1
View File
@@ -253,6 +253,19 @@ Arabic routes automatically render with `lang="ar"` and `dir="rtl"`.
Do not publish unreviewed machine translations. Clearly mark placeholders. Do not publish unreviewed machine translations. Clearly mark placeholders.
### Edit A Blog FAQ
Posts with live-style FAQ sections use `.mdx` and import:
```mdx
import FAQAccordion from '../../../components/FAQAccordion.astro';
```
Edit the component's `label`, `heading`, and `items` data in the post. Keep
`answer` as plain text for JSON-LD and `answerHtml` as the matching visible
answer. Shared FAQ markup, styling, interaction, and schema generation live in
`src/components/FAQAccordion.astro`.
## Mirror Extraction Workflow ## Mirror Extraction Workflow
The mirror is read-only source material. Never modify: The mirror is read-only source material. Never modify:
@@ -288,7 +301,9 @@ npm run audit:blog
``` ```
Extraction regenerates content files, copied assets, and inventories. Review Extraction regenerates content files, copied assets, and inventories. Review
the complete Git diff before accepting it. the complete Git diff before accepting it. Extraction may recreate FAQ-bearing
posts as Markdown; restore their `FAQAccordion` MDX blocks before accepting the
result. `npm run audit:blog` reports plain Markdown FAQ sections.
## Reports And Utilities ## Reports And Utilities
+2
View File
@@ -1,8 +1,10 @@
import { defineConfig } from 'astro/config'; import { defineConfig } from 'astro/config';
import mdx from '@astrojs/mdx';
export default defineConfig({ export default defineConfig({
site: 'https://www.azinstitute4autism.com', site: 'https://www.azinstitute4autism.com',
trailingSlash: 'never', trailingSlash: 'never',
integrations: [mdx()],
markdown: { markdown: {
shikiConfig: { theme: 'github-light' } shikiConfig: { theme: 'github-light' }
} }
+741
View File
@@ -6,6 +6,7 @@
"": { "": {
"name": "arizona-institute-for-autism", "name": "arizona-institute-for-autism",
"dependencies": { "dependencies": {
"@astrojs/mdx": "^4.3.14",
"astro": "^5.10.0", "astro": "^5.10.0",
"cheerio": "^1.1.0", "cheerio": "^1.1.0",
"fast-glob": "^3.3.3", "fast-glob": "^3.3.3",
@@ -58,6 +59,33 @@
"vfile": "^6.0.3" "vfile": "^6.0.3"
} }
}, },
"node_modules/@astrojs/mdx": {
"version": "4.3.14",
"resolved": "https://registry.npmjs.org/@astrojs/mdx/-/mdx-4.3.14.tgz",
"integrity": "sha512-FBrqJQORVm+rkRa2TS5CjU9PBA6hkhrwLVBSS9A77gN2+iehvjq1w6yya/d0YKC7osiVorKkr3Qd9wNbl0ZkGA==",
"license": "MIT",
"dependencies": {
"@astrojs/markdown-remark": "6.3.11",
"@mdx-js/mdx": "^3.1.1",
"acorn": "^8.15.0",
"es-module-lexer": "^1.7.0",
"estree-util-visit": "^2.0.0",
"hast-util-to-html": "^9.0.5",
"piccolore": "^0.1.3",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.1",
"remark-smartypants": "^3.0.2",
"source-map": "^0.7.6",
"unist-util-visit": "^5.0.0",
"vfile": "^6.0.3"
},
"engines": {
"node": "18.20.8 || ^20.3.0 || >=22.0.0"
},
"peerDependencies": {
"astro": "^5.0.0"
}
},
"node_modules/@astrojs/prism": { "node_modules/@astrojs/prism": {
"version": "3.3.0", "version": "3.3.0",
"resolved": "https://registry.npmjs.org/@astrojs/prism/-/prism-3.3.0.tgz", "resolved": "https://registry.npmjs.org/@astrojs/prism/-/prism-3.3.0.tgz",
@@ -1044,6 +1072,43 @@
"integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==", "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
"license": "MIT" "license": "MIT"
}, },
"node_modules/@mdx-js/mdx": {
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/@mdx-js/mdx/-/mdx-3.1.1.tgz",
"integrity": "sha512-f6ZO2ifpwAQIpzGWaBQT2TXxPv6z3RBzQKpVftEWN78Vl/YweF1uwussDx8ECAXVtr3Rs89fKyG9YlzUs9DyGQ==",
"license": "MIT",
"dependencies": {
"@types/estree": "^1.0.0",
"@types/estree-jsx": "^1.0.0",
"@types/hast": "^3.0.0",
"@types/mdx": "^2.0.0",
"acorn": "^8.0.0",
"collapse-white-space": "^2.0.0",
"devlop": "^1.0.0",
"estree-util-is-identifier-name": "^3.0.0",
"estree-util-scope": "^1.0.0",
"estree-walker": "^3.0.0",
"hast-util-to-jsx-runtime": "^2.0.0",
"markdown-extensions": "^2.0.0",
"recma-build-jsx": "^1.0.0",
"recma-jsx": "^1.0.0",
"recma-stringify": "^1.0.0",
"rehype-recma": "^1.0.0",
"remark-mdx": "^3.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.0.0",
"source-map": "^0.7.0",
"unified": "^11.0.0",
"unist-util-position-from-estree": "^2.0.0",
"unist-util-stringify-position": "^4.0.0",
"unist-util-visit": "^5.0.0",
"vfile": "^6.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/unified"
}
},
"node_modules/@mixmark-io/domino": { "node_modules/@mixmark-io/domino": {
"version": "2.2.0", "version": "2.2.0",
"resolved": "https://registry.npmjs.org/@mixmark-io/domino/-/domino-2.2.0.tgz", "resolved": "https://registry.npmjs.org/@mixmark-io/domino/-/domino-2.2.0.tgz",
@@ -1526,6 +1591,15 @@
"integrity": "sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg==", "integrity": "sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg==",
"license": "MIT" "license": "MIT"
}, },
"node_modules/@types/estree-jsx": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/@types/estree-jsx/-/estree-jsx-1.0.5.tgz",
"integrity": "sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==",
"license": "MIT",
"dependencies": {
"@types/estree": "*"
}
},
"node_modules/@types/hast": { "node_modules/@types/hast": {
"version": "3.0.4", "version": "3.0.4",
"resolved": "https://registry.npmjs.org/@types/hast/-/hast-3.0.4.tgz", "resolved": "https://registry.npmjs.org/@types/hast/-/hast-3.0.4.tgz",
@@ -1544,6 +1618,12 @@
"@types/unist": "*" "@types/unist": "*"
} }
}, },
"node_modules/@types/mdx": {
"version": "2.0.14",
"resolved": "https://registry.npmjs.org/@types/mdx/-/mdx-2.0.14.tgz",
"integrity": "sha512-T48PeuJtvLosNTPVhfnIp3i/n3a4g4Bad7YCq5k64D4u7NwDrAotikQ+5+sjtUvBmxCMlbo3dVL+C2dP0rWHzg==",
"license": "MIT"
},
"node_modules/@types/ms": { "node_modules/@types/ms": {
"version": "2.1.0", "version": "2.1.0",
"resolved": "https://registry.npmjs.org/@types/ms/-/ms-2.1.0.tgz", "resolved": "https://registry.npmjs.org/@types/ms/-/ms-2.1.0.tgz",
@@ -1583,6 +1663,15 @@
"node": ">=0.4.0" "node": ">=0.4.0"
} }
}, },
"node_modules/acorn-jsx": {
"version": "5.3.2",
"resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz",
"integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==",
"license": "MIT",
"peerDependencies": {
"acorn": "^6.0.0 || ^7.0.0 || ^8.0.0"
}
},
"node_modules/ansi-align": { "node_modules/ansi-align": {
"version": "3.0.1", "version": "3.0.1",
"resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.1.tgz", "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.1.tgz",
@@ -1707,6 +1796,15 @@
"url": "https://github.com/sponsors/wooorm" "url": "https://github.com/sponsors/wooorm"
} }
}, },
"node_modules/astring": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/astring/-/astring-1.9.0.tgz",
"integrity": "sha512-LElXdjswlqjWrPpJFg1Fx4wpkOCxj1TDHlSV4PlaRxHGWko024xICaa97ZkMfs6DRKlCguiAI+rbXv5GWwXIkg==",
"license": "MIT",
"bin": {
"astring": "bin/astring"
}
},
"node_modules/astro": { "node_modules/astro": {
"version": "5.18.2", "version": "5.18.2",
"resolved": "https://registry.npmjs.org/astro/-/astro-5.18.2.tgz", "resolved": "https://registry.npmjs.org/astro/-/astro-5.18.2.tgz",
@@ -1922,6 +2020,16 @@
"url": "https://github.com/sponsors/wooorm" "url": "https://github.com/sponsors/wooorm"
} }
}, },
"node_modules/character-reference-invalid": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-2.0.1.tgz",
"integrity": "sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==",
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/wooorm"
}
},
"node_modules/cheerio": { "node_modules/cheerio": {
"version": "1.1.0", "version": "1.1.0",
"resolved": "https://registry.npmjs.org/cheerio/-/cheerio-1.1.0.tgz", "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-1.1.0.tgz",
@@ -2015,6 +2123,16 @@
"node": ">=6" "node": ">=6"
} }
}, },
"node_modules/collapse-white-space": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/collapse-white-space/-/collapse-white-space-2.1.0.tgz",
"integrity": "sha512-loKTxY1zCOuG4j9f6EPnuyyYkf58RnhhWTvRoZEokgB+WbdXehfjFviyOVYkqzEWz1Q5kRiZdBYS5SwxbQYwzw==",
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/wooorm"
}
},
"node_modules/comma-separated-tokens": { "node_modules/comma-separated-tokens": {
"version": "2.0.3", "version": "2.0.3",
"resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz", "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz",
@@ -2362,6 +2480,38 @@
"integrity": "sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==", "integrity": "sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==",
"license": "MIT" "license": "MIT"
}, },
"node_modules/esast-util-from-estree": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/esast-util-from-estree/-/esast-util-from-estree-2.0.0.tgz",
"integrity": "sha512-4CyanoAudUSBAn5K13H4JhsMH6L9ZP7XbLVe/dKybkxMO7eDyLsT8UHl9TRNrU2Gr9nz+FovfSIjuXWJ81uVwQ==",
"license": "MIT",
"dependencies": {
"@types/estree-jsx": "^1.0.0",
"devlop": "^1.0.0",
"estree-util-visit": "^2.0.0",
"unist-util-position-from-estree": "^2.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/unified"
}
},
"node_modules/esast-util-from-js": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/esast-util-from-js/-/esast-util-from-js-2.0.1.tgz",
"integrity": "sha512-8Ja+rNJ0Lt56Pcf3TAmpBZjmx8ZcK5Ts4cAzIOjsjevg9oSXJnl6SUQ2EevU8tv3h6ZLWmoKL5H4fgWvdvfETw==",
"license": "MIT",
"dependencies": {
"@types/estree-jsx": "^1.0.0",
"acorn": "^8.0.0",
"esast-util-from-estree": "^2.0.0",
"vfile-message": "^4.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/unified"
}
},
"node_modules/esbuild": { "node_modules/esbuild": {
"version": "0.27.7", "version": "0.27.7",
"resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.27.7.tgz", "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.27.7.tgz",
@@ -2428,6 +2578,88 @@
"node": ">=4" "node": ">=4"
} }
}, },
"node_modules/estree-util-attach-comments": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/estree-util-attach-comments/-/estree-util-attach-comments-3.0.0.tgz",
"integrity": "sha512-cKUwm/HUcTDsYh/9FgnuFqpfquUbwIqwKM26BVCGDPVgvaCl/nDCCjUfiLlx6lsEZ3Z4RFxNbOQ60pkaEwFxGw==",
"license": "MIT",
"dependencies": {
"@types/estree": "^1.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/unified"
}
},
"node_modules/estree-util-build-jsx": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/estree-util-build-jsx/-/estree-util-build-jsx-3.0.1.tgz",
"integrity": "sha512-8U5eiL6BTrPxp/CHbs2yMgP8ftMhR5ww1eIKoWRMlqvltHF8fZn5LRDvTKuxD3DUn+shRbLGqXemcP51oFCsGQ==",
"license": "MIT",
"dependencies": {
"@types/estree-jsx": "^1.0.0",
"devlop": "^1.0.0",
"estree-util-is-identifier-name": "^3.0.0",
"estree-walker": "^3.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/unified"
}
},
"node_modules/estree-util-is-identifier-name": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/estree-util-is-identifier-name/-/estree-util-is-identifier-name-3.0.0.tgz",
"integrity": "sha512-hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg==",
"license": "MIT",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/unified"
}
},
"node_modules/estree-util-scope": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/estree-util-scope/-/estree-util-scope-1.0.0.tgz",
"integrity": "sha512-2CAASclonf+JFWBNJPndcOpA8EMJwa0Q8LUFJEKqXLW6+qBvbFZuF5gItbQOs/umBUkjviCSDCbBwU2cXbmrhQ==",
"license": "MIT",
"dependencies": {
"@types/estree": "^1.0.0",
"devlop": "^1.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/unified"
}
},
"node_modules/estree-util-to-js": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/estree-util-to-js/-/estree-util-to-js-2.0.0.tgz",
"integrity": "sha512-WDF+xj5rRWmD5tj6bIqRi6CkLIXbbNQUcxQHzGysQzvHmdYG2G7p/Tf0J0gpxGgkeMZNTIjT/AoSvC9Xehcgdg==",
"license": "MIT",
"dependencies": {
"@types/estree-jsx": "^1.0.0",
"astring": "^1.8.0",
"source-map": "^0.7.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/unified"
}
},
"node_modules/estree-util-visit": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/estree-util-visit/-/estree-util-visit-2.0.0.tgz",
"integrity": "sha512-m5KgiH85xAhhW8Wta0vShLcUvOsh3LLPI2YVwcbio1l7E09NTLL1EyMZFM1OyWowoH0skScNbhOPl4kcBgzTww==",
"license": "MIT",
"dependencies": {
"@types/estree-jsx": "^1.0.0",
"@types/unist": "^3.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/unified"
}
},
"node_modules/estree-walker": { "node_modules/estree-walker": {
"version": "3.0.3", "version": "3.0.3",
"resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz",
@@ -2732,6 +2964,34 @@
"url": "https://opencollective.com/unified" "url": "https://opencollective.com/unified"
} }
}, },
"node_modules/hast-util-to-estree": {
"version": "3.1.3",
"resolved": "https://registry.npmjs.org/hast-util-to-estree/-/hast-util-to-estree-3.1.3.tgz",
"integrity": "sha512-48+B/rJWAp0jamNbAAf9M7Uf//UVqAoMmgXhBdxTDJLGKY+LRnZ99qcG+Qjl5HfMpYNzS5v4EAwVEF34LeAj7w==",
"license": "MIT",
"dependencies": {
"@types/estree": "^1.0.0",
"@types/estree-jsx": "^1.0.0",
"@types/hast": "^3.0.0",
"comma-separated-tokens": "^2.0.0",
"devlop": "^1.0.0",
"estree-util-attach-comments": "^3.0.0",
"estree-util-is-identifier-name": "^3.0.0",
"hast-util-whitespace": "^3.0.0",
"mdast-util-mdx-expression": "^2.0.0",
"mdast-util-mdx-jsx": "^3.0.0",
"mdast-util-mdxjs-esm": "^2.0.0",
"property-information": "^7.0.0",
"space-separated-tokens": "^2.0.0",
"style-to-js": "^1.0.0",
"unist-util-position": "^5.0.0",
"zwitch": "^2.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/unified"
}
},
"node_modules/hast-util-to-html": { "node_modules/hast-util-to-html": {
"version": "9.0.5", "version": "9.0.5",
"resolved": "https://registry.npmjs.org/hast-util-to-html/-/hast-util-to-html-9.0.5.tgz", "resolved": "https://registry.npmjs.org/hast-util-to-html/-/hast-util-to-html-9.0.5.tgz",
@@ -2755,6 +3015,33 @@
"url": "https://opencollective.com/unified" "url": "https://opencollective.com/unified"
} }
}, },
"node_modules/hast-util-to-jsx-runtime": {
"version": "2.3.6",
"resolved": "https://registry.npmjs.org/hast-util-to-jsx-runtime/-/hast-util-to-jsx-runtime-2.3.6.tgz",
"integrity": "sha512-zl6s8LwNyo1P9uw+XJGvZtdFF1GdAkOg8ujOw+4Pyb76874fLps4ueHXDhXWdk6YHQ6OgUtinliG7RsYvCbbBg==",
"license": "MIT",
"dependencies": {
"@types/estree": "^1.0.0",
"@types/hast": "^3.0.0",
"@types/unist": "^3.0.0",
"comma-separated-tokens": "^2.0.0",
"devlop": "^1.0.0",
"estree-util-is-identifier-name": "^3.0.0",
"hast-util-whitespace": "^3.0.0",
"mdast-util-mdx-expression": "^2.0.0",
"mdast-util-mdx-jsx": "^3.0.0",
"mdast-util-mdxjs-esm": "^2.0.0",
"property-information": "^7.0.0",
"space-separated-tokens": "^2.0.0",
"style-to-js": "^1.0.0",
"unist-util-position": "^5.0.0",
"vfile-message": "^4.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/unified"
}
},
"node_modules/hast-util-to-parse5": { "node_modules/hast-util-to-parse5": {
"version": "8.0.1", "version": "8.0.1",
"resolved": "https://registry.npmjs.org/hast-util-to-parse5/-/hast-util-to-parse5-8.0.1.tgz", "resolved": "https://registry.npmjs.org/hast-util-to-parse5/-/hast-util-to-parse5-8.0.1.tgz",
@@ -2895,6 +3182,12 @@
"url": "https://github.com/sponsors/wooorm" "url": "https://github.com/sponsors/wooorm"
} }
}, },
"node_modules/inline-style-parser": {
"version": "0.2.7",
"resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.2.7.tgz",
"integrity": "sha512-Nb2ctOyNR8DqQoR0OwRG95uNWIC0C1lCgf5Naz5H6Ji72KZ8OcFZLz2P5sNgwlyoJ8Yif11oMuYs5pBQa86csA==",
"license": "MIT"
},
"node_modules/iron-webcrypto": { "node_modules/iron-webcrypto": {
"version": "1.2.1", "version": "1.2.1",
"resolved": "https://registry.npmjs.org/iron-webcrypto/-/iron-webcrypto-1.2.1.tgz", "resolved": "https://registry.npmjs.org/iron-webcrypto/-/iron-webcrypto-1.2.1.tgz",
@@ -2904,6 +3197,40 @@
"url": "https://github.com/sponsors/brc-dd" "url": "https://github.com/sponsors/brc-dd"
} }
}, },
"node_modules/is-alphabetical": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-2.0.1.tgz",
"integrity": "sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==",
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/wooorm"
}
},
"node_modules/is-alphanumerical": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-2.0.1.tgz",
"integrity": "sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==",
"license": "MIT",
"dependencies": {
"is-alphabetical": "^2.0.0",
"is-decimal": "^2.0.0"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/wooorm"
}
},
"node_modules/is-decimal": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-2.0.1.tgz",
"integrity": "sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==",
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/wooorm"
}
},
"node_modules/is-docker": { "node_modules/is-docker": {
"version": "3.0.0", "version": "3.0.0",
"resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz", "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz",
@@ -2958,6 +3285,16 @@
"node": ">=0.10.0" "node": ">=0.10.0"
} }
}, },
"node_modules/is-hexadecimal": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-2.0.1.tgz",
"integrity": "sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==",
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/wooorm"
}
},
"node_modules/is-inside-container": { "node_modules/is-inside-container": {
"version": "1.0.0", "version": "1.0.0",
"resolved": "https://registry.npmjs.org/is-inside-container/-/is-inside-container-1.0.0.tgz", "resolved": "https://registry.npmjs.org/is-inside-container/-/is-inside-container-1.0.0.tgz",
@@ -3091,6 +3428,18 @@
"source-map-js": "^1.2.1" "source-map-js": "^1.2.1"
} }
}, },
"node_modules/markdown-extensions": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/markdown-extensions/-/markdown-extensions-2.0.0.tgz",
"integrity": "sha512-o5vL7aDWatOTX8LzaS1WMoaoxIiLRQJuIKKe2wAw6IeULDHaqbiqiggmx+pKvZDb1Sj+pE46Sn1T7lCqfFtg1Q==",
"license": "MIT",
"engines": {
"node": ">=16"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/markdown-table": { "node_modules/markdown-table": {
"version": "3.0.4", "version": "3.0.4",
"resolved": "https://registry.npmjs.org/markdown-table/-/markdown-table-3.0.4.tgz", "resolved": "https://registry.npmjs.org/markdown-table/-/markdown-table-3.0.4.tgz",
@@ -3257,6 +3606,83 @@
"url": "https://opencollective.com/unified" "url": "https://opencollective.com/unified"
} }
}, },
"node_modules/mdast-util-mdx": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/mdast-util-mdx/-/mdast-util-mdx-3.0.0.tgz",
"integrity": "sha512-JfbYLAW7XnYTTbUsmpu0kdBUVe+yKVJZBItEjwyYJiDJuZ9w4eeaqks4HQO+R7objWgS2ymV60GYpI14Ug554w==",
"license": "MIT",
"dependencies": {
"mdast-util-from-markdown": "^2.0.0",
"mdast-util-mdx-expression": "^2.0.0",
"mdast-util-mdx-jsx": "^3.0.0",
"mdast-util-mdxjs-esm": "^2.0.0",
"mdast-util-to-markdown": "^2.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/unified"
}
},
"node_modules/mdast-util-mdx-expression": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/mdast-util-mdx-expression/-/mdast-util-mdx-expression-2.0.1.tgz",
"integrity": "sha512-J6f+9hUp+ldTZqKRSg7Vw5V6MqjATc+3E4gf3CFNcuZNWD8XdyI6zQ8GqH7f8169MM6P7hMBRDVGnn7oHB9kXQ==",
"license": "MIT",
"dependencies": {
"@types/estree-jsx": "^1.0.0",
"@types/hast": "^3.0.0",
"@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-mdx-jsx": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-3.2.0.tgz",
"integrity": "sha512-lj/z8v0r6ZtsN/cGNNtemmmfoLAFZnjMbNyLzBafjzikOM+glrjNHPlf6lQDOTccj9n5b0PPihEBbhneMyGs1Q==",
"license": "MIT",
"dependencies": {
"@types/estree-jsx": "^1.0.0",
"@types/hast": "^3.0.0",
"@types/mdast": "^4.0.0",
"@types/unist": "^3.0.0",
"ccount": "^2.0.0",
"devlop": "^1.1.0",
"mdast-util-from-markdown": "^2.0.0",
"mdast-util-to-markdown": "^2.0.0",
"parse-entities": "^4.0.0",
"stringify-entities": "^4.0.0",
"unist-util-stringify-position": "^4.0.0",
"vfile-message": "^4.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/unified"
}
},
"node_modules/mdast-util-mdxjs-esm": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/mdast-util-mdxjs-esm/-/mdast-util-mdxjs-esm-2.0.1.tgz",
"integrity": "sha512-EcmOpxsZ96CvlP03NghtH1EsLtr0n9Tm4lPUJUBccV9RwUOneqSycg19n5HGzCf+10LozMRSObtVr3ee1WoHtg==",
"license": "MIT",
"dependencies": {
"@types/estree-jsx": "^1.0.0",
"@types/hast": "^3.0.0",
"@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": { "node_modules/mdast-util-phrasing": {
"version": "4.1.0", "version": "4.1.0",
"resolved": "https://registry.npmjs.org/mdast-util-phrasing/-/mdast-util-phrasing-4.1.0.tgz", "resolved": "https://registry.npmjs.org/mdast-util-phrasing/-/mdast-util-phrasing-4.1.0.tgz",
@@ -3531,6 +3957,108 @@
"url": "https://opencollective.com/unified" "url": "https://opencollective.com/unified"
} }
}, },
"node_modules/micromark-extension-mdx-expression": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/micromark-extension-mdx-expression/-/micromark-extension-mdx-expression-3.0.1.tgz",
"integrity": "sha512-dD/ADLJ1AeMvSAKBwO22zG22N4ybhe7kFIZ3LsDI0GlsNr2A3KYxb0LdC1u5rj4Nw+CHKY0RVdnHX8vj8ejm4Q==",
"funding": [
{
"type": "GitHub Sponsors",
"url": "https://github.com/sponsors/unifiedjs"
},
{
"type": "OpenCollective",
"url": "https://opencollective.com/unified"
}
],
"license": "MIT",
"dependencies": {
"@types/estree": "^1.0.0",
"devlop": "^1.0.0",
"micromark-factory-mdx-expression": "^2.0.0",
"micromark-factory-space": "^2.0.0",
"micromark-util-character": "^2.0.0",
"micromark-util-events-to-acorn": "^2.0.0",
"micromark-util-symbol": "^2.0.0",
"micromark-util-types": "^2.0.0"
}
},
"node_modules/micromark-extension-mdx-jsx": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/micromark-extension-mdx-jsx/-/micromark-extension-mdx-jsx-3.0.2.tgz",
"integrity": "sha512-e5+q1DjMh62LZAJOnDraSSbDMvGJ8x3cbjygy2qFEi7HCeUT4BDKCvMozPozcD6WmOt6sVvYDNBKhFSz3kjOVQ==",
"license": "MIT",
"dependencies": {
"@types/estree": "^1.0.0",
"devlop": "^1.0.0",
"estree-util-is-identifier-name": "^3.0.0",
"micromark-factory-mdx-expression": "^2.0.0",
"micromark-factory-space": "^2.0.0",
"micromark-util-character": "^2.0.0",
"micromark-util-events-to-acorn": "^2.0.0",
"micromark-util-symbol": "^2.0.0",
"micromark-util-types": "^2.0.0",
"vfile-message": "^4.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/unified"
}
},
"node_modules/micromark-extension-mdx-md": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/micromark-extension-mdx-md/-/micromark-extension-mdx-md-2.0.0.tgz",
"integrity": "sha512-EpAiszsB3blw4Rpba7xTOUptcFeBFi+6PY8VnJ2hhimH+vCQDirWgsMpz7w1XcZE7LVrSAUGb9VJpG9ghlYvYQ==",
"license": "MIT",
"dependencies": {
"micromark-util-types": "^2.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/unified"
}
},
"node_modules/micromark-extension-mdxjs": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/micromark-extension-mdxjs/-/micromark-extension-mdxjs-3.0.0.tgz",
"integrity": "sha512-A873fJfhnJ2siZyUrJ31l34Uqwy4xIFmvPY1oj+Ean5PHcPBYzEsvqvWGaWcfEIr11O5Dlw3p2y0tZWpKHDejQ==",
"license": "MIT",
"dependencies": {
"acorn": "^8.0.0",
"acorn-jsx": "^5.0.0",
"micromark-extension-mdx-expression": "^3.0.0",
"micromark-extension-mdx-jsx": "^3.0.0",
"micromark-extension-mdx-md": "^2.0.0",
"micromark-extension-mdxjs-esm": "^3.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-mdxjs-esm": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/micromark-extension-mdxjs-esm/-/micromark-extension-mdxjs-esm-3.0.0.tgz",
"integrity": "sha512-DJFl4ZqkErRpq/dAPyeWp15tGrcrrJho1hKK5uBS70BCtfrIFg81sqcTVu3Ta+KD1Tk5vAtBNElWxtAa+m8K9A==",
"license": "MIT",
"dependencies": {
"@types/estree": "^1.0.0",
"devlop": "^1.0.0",
"micromark-core-commonmark": "^2.0.0",
"micromark-util-character": "^2.0.0",
"micromark-util-events-to-acorn": "^2.0.0",
"micromark-util-symbol": "^2.0.0",
"micromark-util-types": "^2.0.0",
"unist-util-position-from-estree": "^2.0.0",
"vfile-message": "^4.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/unified"
}
},
"node_modules/micromark-factory-destination": { "node_modules/micromark-factory-destination": {
"version": "2.0.1", "version": "2.0.1",
"resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-2.0.1.tgz", "resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-2.0.1.tgz",
@@ -3574,6 +4102,33 @@
"micromark-util-types": "^2.0.0" "micromark-util-types": "^2.0.0"
} }
}, },
"node_modules/micromark-factory-mdx-expression": {
"version": "2.0.3",
"resolved": "https://registry.npmjs.org/micromark-factory-mdx-expression/-/micromark-factory-mdx-expression-2.0.3.tgz",
"integrity": "sha512-kQnEtA3vzucU2BkrIa8/VaSAsP+EJ3CKOvhMuJgOEGg9KDC6OAY6nSnNDVRiVNRqj7Y4SlSzcStaH/5jge8JdQ==",
"funding": [
{
"type": "GitHub Sponsors",
"url": "https://github.com/sponsors/unifiedjs"
},
{
"type": "OpenCollective",
"url": "https://opencollective.com/unified"
}
],
"license": "MIT",
"dependencies": {
"@types/estree": "^1.0.0",
"devlop": "^1.0.0",
"micromark-factory-space": "^2.0.0",
"micromark-util-character": "^2.0.0",
"micromark-util-events-to-acorn": "^2.0.0",
"micromark-util-symbol": "^2.0.0",
"micromark-util-types": "^2.0.0",
"unist-util-position-from-estree": "^2.0.0",
"vfile-message": "^4.0.0"
}
},
"node_modules/micromark-factory-space": { "node_modules/micromark-factory-space": {
"version": "2.0.1", "version": "2.0.1",
"resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz", "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz",
@@ -3775,6 +4330,31 @@
], ],
"license": "MIT" "license": "MIT"
}, },
"node_modules/micromark-util-events-to-acorn": {
"version": "2.0.3",
"resolved": "https://registry.npmjs.org/micromark-util-events-to-acorn/-/micromark-util-events-to-acorn-2.0.3.tgz",
"integrity": "sha512-jmsiEIiZ1n7X1Rr5k8wVExBQCg5jy4UXVADItHmNk1zkwEVhBuIUKRu3fqv+hs4nxLISi2DQGlqIOGiFxgbfHg==",
"funding": [
{
"type": "GitHub Sponsors",
"url": "https://github.com/sponsors/unifiedjs"
},
{
"type": "OpenCollective",
"url": "https://opencollective.com/unified"
}
],
"license": "MIT",
"dependencies": {
"@types/estree": "^1.0.0",
"@types/unist": "^3.0.0",
"devlop": "^1.0.0",
"estree-util-visit": "^2.0.0",
"micromark-util-symbol": "^2.0.0",
"micromark-util-types": "^2.0.0",
"vfile-message": "^4.0.0"
}
},
"node_modules/micromark-util-html-tag-name": { "node_modules/micromark-util-html-tag-name": {
"version": "2.0.1", "version": "2.0.1",
"resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.1.tgz", "resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.1.tgz",
@@ -4100,6 +4680,31 @@
"integrity": "sha512-61A5ThoTiDG/C8s8UMZwSorAGwMJ0ERVGj2OjoW5pAalsNOg15+iQiPzrLJ4jhZ1HJzmC2PIHT2oEiH3R5fzNA==", "integrity": "sha512-61A5ThoTiDG/C8s8UMZwSorAGwMJ0ERVGj2OjoW5pAalsNOg15+iQiPzrLJ4jhZ1HJzmC2PIHT2oEiH3R5fzNA==",
"license": "MIT" "license": "MIT"
}, },
"node_modules/parse-entities": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-4.0.2.tgz",
"integrity": "sha512-GG2AQYWoLgL877gQIKeRPGO1xF9+eG1ujIb5soS5gPvLQ1y2o8FL90w2QWNdf9I361Mpp7726c+lj3U0qK1uGw==",
"license": "MIT",
"dependencies": {
"@types/unist": "^2.0.0",
"character-entities-legacy": "^3.0.0",
"character-reference-invalid": "^2.0.0",
"decode-named-character-reference": "^1.0.0",
"is-alphanumerical": "^2.0.0",
"is-decimal": "^2.0.0",
"is-hexadecimal": "^2.0.0"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/wooorm"
}
},
"node_modules/parse-entities/node_modules/@types/unist": {
"version": "2.0.11",
"resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz",
"integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==",
"license": "MIT"
},
"node_modules/parse-latin": { "node_modules/parse-latin": {
"version": "7.0.0", "version": "7.0.0",
"resolved": "https://registry.npmjs.org/parse-latin/-/parse-latin-7.0.0.tgz", "resolved": "https://registry.npmjs.org/parse-latin/-/parse-latin-7.0.0.tgz",
@@ -4290,6 +4895,73 @@
"url": "https://paulmillr.com/funding/" "url": "https://paulmillr.com/funding/"
} }
}, },
"node_modules/recma-build-jsx": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/recma-build-jsx/-/recma-build-jsx-1.0.0.tgz",
"integrity": "sha512-8GtdyqaBcDfva+GUKDr3nev3VpKAhup1+RvkMvUxURHpW7QyIvk9F5wz7Vzo06CEMSilw6uArgRqhpiUcWp8ew==",
"license": "MIT",
"dependencies": {
"@types/estree": "^1.0.0",
"estree-util-build-jsx": "^3.0.0",
"vfile": "^6.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/unified"
}
},
"node_modules/recma-jsx": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/recma-jsx/-/recma-jsx-1.0.1.tgz",
"integrity": "sha512-huSIy7VU2Z5OLv6oFLosQGGDqPqdO1iq6bWNAdhzMxSJP7RAso4fCZ1cKu8j9YHCZf3TPrq4dw3okhrylgcd7w==",
"license": "MIT",
"dependencies": {
"acorn-jsx": "^5.0.0",
"estree-util-to-js": "^2.0.0",
"recma-parse": "^1.0.0",
"recma-stringify": "^1.0.0",
"unified": "^11.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/unified"
},
"peerDependencies": {
"acorn": "^6.0.0 || ^7.0.0 || ^8.0.0"
}
},
"node_modules/recma-parse": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/recma-parse/-/recma-parse-1.0.0.tgz",
"integrity": "sha512-OYLsIGBB5Y5wjnSnQW6t3Xg7q3fQ7FWbw/vcXtORTnyaSFscOtABg+7Pnz6YZ6c27fG1/aN8CjfwoUEUIdwqWQ==",
"license": "MIT",
"dependencies": {
"@types/estree": "^1.0.0",
"esast-util-from-js": "^2.0.0",
"unified": "^11.0.0",
"vfile": "^6.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/unified"
}
},
"node_modules/recma-stringify": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/recma-stringify/-/recma-stringify-1.0.0.tgz",
"integrity": "sha512-cjwII1MdIIVloKvC9ErQ+OgAtwHBmcZ0Bg4ciz78FtbT8In39aAYbaA7zvxQ61xVMSPE8WxhLwLbhif4Js2C+g==",
"license": "MIT",
"dependencies": {
"@types/estree": "^1.0.0",
"estree-util-to-js": "^2.0.0",
"unified": "^11.0.0",
"vfile": "^6.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/unified"
}
},
"node_modules/regex": { "node_modules/regex": {
"version": "6.1.0", "version": "6.1.0",
"resolved": "https://registry.npmjs.org/regex/-/regex-6.1.0.tgz", "resolved": "https://registry.npmjs.org/regex/-/regex-6.1.0.tgz",
@@ -4360,6 +5032,21 @@
"url": "https://opencollective.com/unified" "url": "https://opencollective.com/unified"
} }
}, },
"node_modules/rehype-recma": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/rehype-recma/-/rehype-recma-1.0.0.tgz",
"integrity": "sha512-lqA4rGUf1JmacCNWWZx0Wv1dHqMwxzsDWYMTowuplHF3xH0N/MmrZ/G3BDZnzAkRmxDadujCjaKM2hqYdCBOGw==",
"license": "MIT",
"dependencies": {
"@types/estree": "^1.0.0",
"@types/hast": "^3.0.0",
"hast-util-to-estree": "^3.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/unified"
}
},
"node_modules/rehype-stringify": { "node_modules/rehype-stringify": {
"version": "10.0.1", "version": "10.0.1",
"resolved": "https://registry.npmjs.org/rehype-stringify/-/rehype-stringify-10.0.1.tgz", "resolved": "https://registry.npmjs.org/rehype-stringify/-/rehype-stringify-10.0.1.tgz",
@@ -4393,6 +5080,20 @@
"url": "https://opencollective.com/unified" "url": "https://opencollective.com/unified"
} }
}, },
"node_modules/remark-mdx": {
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/remark-mdx/-/remark-mdx-3.1.1.tgz",
"integrity": "sha512-Pjj2IYlUY3+D8x00UJsIOg5BEvfMyeI+2uLPn9VO9Wg4MEtN/VTIq2NEJQfde9PnX15KgtHyl9S0BcTnWrIuWg==",
"license": "MIT",
"dependencies": {
"mdast-util-mdx": "^3.0.0",
"micromark-extension-mdxjs": "^3.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/unified"
}
},
"node_modules/remark-parse": { "node_modules/remark-parse": {
"version": "11.0.0", "version": "11.0.0",
"resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-11.0.0.tgz", "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-11.0.0.tgz",
@@ -4713,6 +5414,15 @@
"url": "https://github.com/sponsors/cyyynthia" "url": "https://github.com/sponsors/cyyynthia"
} }
}, },
"node_modules/source-map": {
"version": "0.7.6",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.6.tgz",
"integrity": "sha512-i5uvt8C3ikiWeNZSVZNWcfZPItFQOsYTUAOkcUPGd8DqDy1uOUikjt5dG+uRlwyvR108Fb9DOd4GvXfT0N2/uQ==",
"license": "BSD-3-Clause",
"engines": {
"node": ">= 12"
}
},
"node_modules/source-map-js": { "node_modules/source-map-js": {
"version": "1.2.1", "version": "1.2.1",
"resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
@@ -4793,6 +5503,24 @@
"node": ">=0.10.0" "node": ">=0.10.0"
} }
}, },
"node_modules/style-to-js": {
"version": "1.1.21",
"resolved": "https://registry.npmjs.org/style-to-js/-/style-to-js-1.1.21.tgz",
"integrity": "sha512-RjQetxJrrUJLQPHbLku6U/ocGtzyjbJMP9lCNK7Ag0CNh690nSH8woqWH9u16nMjYBAok+i7JO1NP2pOy8IsPQ==",
"license": "MIT",
"dependencies": {
"style-to-object": "1.0.14"
}
},
"node_modules/style-to-object": {
"version": "1.0.14",
"resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-1.0.14.tgz",
"integrity": "sha512-LIN7rULI0jBscWQYaSswptyderlarFkjQ+t79nzty8tcIAceVomEVlLzH5VP4Cmsv6MtKhs7qaAiwlcp+Mgaxw==",
"license": "MIT",
"dependencies": {
"inline-style-parser": "0.2.7"
}
},
"node_modules/svgo": { "node_modules/svgo": {
"version": "4.0.1", "version": "4.0.1",
"resolved": "https://registry.npmjs.org/svgo/-/svgo-4.0.1.tgz", "resolved": "https://registry.npmjs.org/svgo/-/svgo-4.0.1.tgz",
@@ -5058,6 +5786,19 @@
"url": "https://opencollective.com/unified" "url": "https://opencollective.com/unified"
} }
}, },
"node_modules/unist-util-position-from-estree": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/unist-util-position-from-estree/-/unist-util-position-from-estree-2.0.0.tgz",
"integrity": "sha512-KaFVRjoqLyF6YXCbVLNad/eS4+OfPQQn2yOd7zF/h5T/CSL2v8NpN6a5TPvtbXthAGw5nG+PuTtq+DdIZr+cRQ==",
"license": "MIT",
"dependencies": {
"@types/unist": "^3.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/unified"
}
},
"node_modules/unist-util-remove-position": { "node_modules/unist-util-remove-position": {
"version": "5.0.0", "version": "5.0.0",
"resolved": "https://registry.npmjs.org/unist-util-remove-position/-/unist-util-remove-position-5.0.0.tgz", "resolved": "https://registry.npmjs.org/unist-util-remove-position/-/unist-util-remove-position-5.0.0.tgz",
+1
View File
@@ -20,6 +20,7 @@
"generate:redirects": "node tools/generate-redirects.mjs" "generate:redirects": "node tools/generate-redirects.mjs"
}, },
"dependencies": { "dependencies": {
"@astrojs/mdx": "^4.3.14",
"astro": "^5.10.0", "astro": "^5.10.0",
"cheerio": "^1.1.0", "cheerio": "^1.1.0",
"fast-glob": "^3.3.3", "fast-glob": "^3.3.3",
+2 -1
View File
@@ -1,5 +1,6 @@
# Blog Content Audit # Blog Content Audit
Checked 65 blog post bodies for layout content duplicated in Markdown. Checked 65 blog post bodies for layout content duplicated in Markdown.
Verified 125 FAQ questions across 19 FAQ-bearing posts.
No duplicated article headers were detected. No duplicated article headers or invalid MDX FAQ components were detected.
+3
View File
@@ -31,5 +31,8 @@
from all 65 blog Markdown bodies; these elements are rendered by the shared from all 65 blog Markdown bodies; these elements are rendered by the shared
blog-post layout. Updated both extractors and added a blog-content audit to blog-post layout. Updated both extractors and added a blog-content audit to
prevent recurrence. prevent recurrence.
- Converted 19 FAQ-bearing blog posts to MDX and restored a reusable
`FAQAccordion.astro` component that owns the live-style accordion and
matching `FAQPage` JSON-LD.
- Added language-qualified content collection IDs to prevent English, Spanish, - Added language-qualified content collection IDs to prevent English, Spanish,
and Arabic entries with the same slug from overwriting each other. and Arabic entries with the same slug from overwriting each other.
+3 -1
View File
@@ -44,6 +44,8 @@ Implemented fidelity work includes:
extracted team content as a generic article. extracted team content as a generic article.
- Rebuilt library indexes and blog-post presentation around the live sidebar, - Rebuilt library indexes and blog-post presentation around the live sidebar,
article list, byline, featured-image, and counter patterns. article list, byline, featured-image, and counter patterns.
- Converted FAQ-bearing posts to MDX and recreated their live-style accordions
with a reusable component that emits matching `FAQPage` JSON-LD.
- Replaced generic oversized cards, rounded controls, and marketing heroes - Replaced generic oversized cards, rounded controls, and marketing heroes
with live-derived typography, palette, widths, spacing, and compact controls. with live-derived typography, palette, widths, spacing, and compact controls.
- Corrected material live/mirror discrepancies found during the pass, - Corrected material live/mirror discrepancies found during the pass,
@@ -115,7 +117,7 @@ unavailable.
- `npm run audit:images`: passed with no missing mapped page banners, section - `npm run audit:images`: passed with no missing mapped page banners, section
backgrounds, or blog featured images. backgrounds, or blog featured images.
- `npm run audit:blog`: passed with no article-header content duplicated in - `npm run audit:blog`: passed with no article-header content duplicated in
blog Markdown bodies. blog content and valid MDX FAQ components for 125 questions across 19 posts.
- `npm run generate:sitemap`: passed; generated 97 URLs. - `npm run generate:sitemap`: passed; generated 97 URLs.
- `npm run generate:redirects`: passed. - `npm run generate:redirects`: passed.
- All migration `.mjs` tools and the sandbox DNS helper pass `node --check`. - All migration `.mjs` tools and the sandbox DNS helper pass `node --check`.
+4 -1
View File
@@ -7,6 +7,8 @@
- Shared templates emit canonical, Open Graph, and Twitter card metadata. - Shared templates emit canonical, Open Graph, and Twitter card metadata.
- Library index layouts emit language-correct canonical URLs. - Library index layouts emit language-correct canonical URLs.
- Blog posts emit article metadata and semantic publication dates. - Blog posts emit article metadata and semantic publication dates.
- Blog FAQ components emit `FAQPage` JSON-LD derived from the same MDX item
data used for the visible accordion.
- `robots.txt` and sitemap generation are included. - `robots.txt` and sitemap generation are included.
- The live navigation hierarchy, clean English/Spanish/Arabic routes, and - The live navigation hierarchy, clean English/Spanish/Arabic routes, and
current library listing structure were checked against the public site during current library listing structure were checked against the public site during
@@ -28,4 +30,5 @@
- Organization JSON-LD is emitted globally; service-specific schema still - Organization JSON-LD is emitted globally; service-specific schema still
requires business review. requires business review.
- Validate social preview images after deployment. - Validate social preview images after deployment.
- Add page-specific JSON-LD only after business review of the appropriate schema. - Add additional page-specific JSON-LD only after business review of the
appropriate schema.
+152 -2
View File
@@ -1,4 +1,154 @@
--- ---
const { question, answer } = Astro.props; interface FAQItem {
question: string;
answer: string;
answerHtml?: string;
}
interface Props {
label: string;
heading: string;
items: FAQItem[];
canonical?: string;
}
const { label, heading, items, canonical } = Astro.props;
const schema = {
'@context': 'https://schema.org',
'@type': 'FAQPage',
...(canonical ? { '@id': `${canonical}#faq` } : {}),
mainEntity: items.map((item) => ({
'@type': 'Question',
name: item.question,
acceptedAnswer: {
'@type': 'Answer',
text: item.answer
}
}))
};
--- ---
<details class="faq"><summary>{question}</summary><p>{answer}</p></details> <section class="blog-faq" aria-labelledby="blog-faq-heading">
<header class="blog-faq-heading">
<h2 id="blog-faq-heading">{label}</h2>
<h3>{heading}</h3>
</header>
<div class="blog-faq-list">
{items.map((item, index) => (
<details class="faq" open={index === 0}>
<summary>
<span>{item.question}</span>
<span class="faq-icon" aria-hidden="true"></span>
</summary>
<div class="faq-answer" set:html={item.answerHtml || `<p>${item.answer}</p>`} />
</details>
))}
</div>
</section>
<script type="application/ld+json" set:html={JSON.stringify(schema)} />
<style>
.blog-faq {
margin-block: 2.5rem 3rem;
}
.blog-faq-heading {
margin-bottom: 1.875rem;
}
.blog-faq-heading h2 {
color: var(--color-accent-strong);
font-family: var(--font-accent);
font-size: 2rem;
font-weight: 400;
line-height: 1;
margin: 0;
}
.blog-faq-heading h3 {
color: var(--color-primary);
font-family: var(--font-heading);
font-size: clamp(2rem, 5vw, 3rem);
line-height: 1.15;
margin: .5rem 0 0;
}
.blog-faq-list {
background: #fcf2e2;
padding: 1.25rem;
}
.faq {
background: transparent;
border-bottom: 1px solid var(--color-accent-strong);
padding: 0;
}
.faq:last-child {
border-bottom: 0;
}
summary {
align-items: center;
cursor: pointer;
display: flex;
gap: 1.875rem;
justify-content: space-between;
list-style: none;
padding: 1rem 0;
}
summary::-webkit-details-marker {
display: none;
}
summary span:first-child {
color: var(--color-primary);
font-family: var(--font-body);
font-size: clamp(1rem, 4vw, 1.25rem);
font-weight: 700;
line-height: 1.4;
}
.faq-icon {
flex: 0 0 auto;
height: 14px;
margin-inline-end: .5rem;
position: relative;
width: 14px;
}
.faq-icon::after {
border-bottom: 1px solid var(--color-accent-strong);
border-right: 1px solid var(--color-accent-strong);
content: "";
display: block;
height: 14px;
transform: translateY(-50%) rotate(45deg);
transform-origin: center;
transition: transform 400ms;
width: 14px;
}
details[open] .faq-icon::after {
transform: rotate(-135deg);
}
.faq-answer {
margin-bottom: 1.25rem;
overflow: hidden;
}
.faq-answer :global(p) {
margin: 0 0 1rem;
}
@media (min-width: 768px) {
.blog-faq {
margin-bottom: 3.125rem;
}
.blog-faq-list {
padding: 2.5rem;
}
}
</style>
@@ -13,6 +13,8 @@ tags: []
draft: false draft: false
--- ---
import FAQAccordion from '../../../components/FAQAccordion.astro';
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." 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. 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.
@@ -85,41 +87,53 @@ Our therapists use visual supports to clarify expectations during sessions. If a
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). 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 <FAQAccordion
label="Frequently Asked Questions"
## About AAC and Visual Supports heading="About AAC and Visual Supports"
canonical="https://www.azinstitute4autism.com/library/aac-visual-supports-autism"
### What does AAC stand for? items={[
{
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. "question": "What does AAC stand for?",
"answer": "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? "answerHtml": "<p>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.</p>"
},
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. {
"question": "Will using AAC stop my child from learning to speak?",
### How do I know if my child needs visual supports? "answer": "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.",
"answerHtml": "<p>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.</p>"
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? "question": "How do I know if my child needs visual supports?",
"answer": "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.",
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. "answerHtml": "<p>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.</p>"
},
### Are visual supports only for nonverbal children? {
"question": "What is a First/Then board?",
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. "answer": "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.",
"answerHtml": "<p>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.</p>"
### 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. "question": "Are visual supports only for nonverbal children?",
"answer": "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.",
### Can I use visual supports at home? "answerHtml": "<p>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.</p>"
},
Yes, visual supports are incredibly effective at home. You can use them to outline bedtime routines, mealtime expectations, or steps for getting dressed. {
"question": "How expensive are AAC devices?",
### How does ABA therapy use AAC? "answer": "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.",
"answerHtml": "<p>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.</p>"
ABA therapy incorporates AAC to help children build functional communication skills, reduce frustration-based behaviors, and practice self-advocacy in a supportive environment. },
{
"question": "Can I use visual supports at home?",
"answer": "Yes, visual supports are incredibly effective at home. You can use them to outline bedtime routines, mealtime expectations, or steps for getting dressed.",
"answerHtml": "<p>Yes, visual supports are incredibly effective at home. You can use them to outline bedtime routines, mealtime expectations, or steps for getting dressed.</p>"
},
{
"question": "How does ABA therapy use AAC?",
"answer": "ABA therapy incorporates AAC to help children build functional communication skills, reduce frustration-based behaviors, and practice self-advocacy in a supportive environment.",
"answerHtml": "<p>ABA therapy incorporates AAC to help children build functional communication skills, reduce frustration-based behaviors, and practice self-advocacy in a supportive environment.</p>"
}
]}
/>
Previous Post Previous Post
@@ -13,6 +13,8 @@ tags: []
draft: false draft: false
--- ---
import FAQAccordion from '../../../components/FAQAccordion.astro';
At the Arizona Institute for Autism (AIA), children ages 26 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. At the Arizona Institute for Autism (AIA), children ages 26 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 ## Our Unique Approach to Early Childhood Development
@@ -99,37 +101,48 @@ If your child is between the ages of 2 and 6 and could benefit from a program th
General kindergarten prep General kindergarten prep
Tiered learning paths for smooth transitions Tiered learning paths for smooth transitions
Frequently Asked Questions <FAQAccordion
label="Frequently Asked Questions"
## AIA Preparatory Academy Tips heading="AIA Preparatory Academy Tips"
canonical="https://www.azinstitute4autism.com/library/aba-school-readiness-arizona"
### What is AIA Preparatory Academy? items={[
{
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. "question": "What is AIA Preparatory Academy?",
"answer": "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? "answerHtml": "<p>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.</p>"
},
AIA Preparatory Academy is especially effective for children with autism or developmental delays, but any child who thrives in structured, individualized settings may benefit. {
"question": "Who benefits most from AIA Preparatory Academy?",
### How does Our school readiness program prepare children for kindergarten? "answer": "AIA Preparatory Academy is especially effective for children with autism or developmental delays, but any child who thrives in structured, individualized settings may benefit.",
"answerHtml": "<p>AIA Preparatory Academy is especially effective for children with autism or developmental delays, but any child who thrives in structured, individualized settings may benefit.</p>"
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? "question": "How does Our school readiness program prepare children for kindergarten?",
"answer": "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.",
Our program integrates an accredited curriculum aligned with Arizona early education standards while incorporating ABA practices. "answerHtml": "<p>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.</p>"
},
### How are progress and outcomes measured? {
"question": "Is the AIA Preparatory Academy accredited?",
Progress is tracked continuously by BCBA, using data collection and analysis, ensuring that every childs goals are personalized and updated as they grow. "answer": "Our program integrates an accredited curriculum aligned with Arizona early education standards while incorporating ABA practices.",
"answerHtml": "<p>Our program integrates an accredited curriculum aligned with Arizona early education standards while incorporating ABA practices.</p>"
### 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. "question": "How are progress and outcomes measured?",
"answer": "Progress is tracked continuously by BCBA, using data collection and analysis, ensuring that every childs goals are personalized and updated as they grow.",
### How do I enroll my child? "answerHtml": "<p>Progress is tracked continuously by BCBA, using data collection and analysis, ensuring that every childs goals are personalized and updated as they grow.</p>"
},
Families can contact the Arizona Institute for Autism directly to schedule a consultation and learn more about the enrollment process. {
"question": "What age group does AIA Preparatory Academy serve?",
"answer": "We currently serve children ages 2 to 6 who are in their most critical years of early development.",
"answerHtml": "<p>We currently serve children ages 2 to 6 who are in their most critical years of early development.</p>"
},
{
"question": "How do I enroll my child?",
"answer": "Families can contact the Arizona Institute for Autism directly to schedule a consultation and learn more about the enrollment process.",
"answerHtml": "<p>Families can contact the Arizona Institute for Autism directly to schedule a consultation and learn more about the enrollment process.</p>"
}
]}
/>
Previous Post Previous Post
@@ -1,205 +0,0 @@
---
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
---
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 217. 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 childs 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 whats 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 doesnt 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 childs:
- 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—Were 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 28
- 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 26](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)
@@ -0,0 +1,220 @@
---
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
---
import FAQAccordion from '../../../components/FAQAccordion.astro';
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 217. 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 childs 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 whats 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 doesnt 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 childs:
- 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—Were 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 28
- 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.
<FAQAccordion
label="Frequently Asked Questions"
heading="Summertime ABA Therapy Tips"
canonical="https://www.azinstitute4autism.com/library/aba-therapy-summer-routine-tips"
items={[
{
"question": "How can I create a flexible summer schedule while maintaining structure for my child?",
"answer": "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.",
"answerHtml": "<p>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.</p>"
},
{
"question": "How can I maintain therapy progress if my child is attending a summer camp?",
"answer": "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.",
"answerHtml": "<p>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.</p>"
},
{
"question": "What if my child struggles with transitions during the summer, like going from playtime to therapy?",
"answer": "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.",
"answerHtml": "<p>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.</p>"
},
{
"question": "How can I involve my child's ABA therapist in creating a summer routine?",
"answer": "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.",
"answerHtml": "<p>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.</p>"
},
{
"question": "What are some fun ways to reinforce behavior at home during the summer?",
"answer": "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.",
"answerHtml": "<p>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.</p>"
},
{
"question": "How can I make summer outings, like going to the grocery store, beneficial for my child's learning?",
"answer": "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.",
"answerHtml": "<p>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.</p>"
},
{
"question": "How do I handle meltdowns or difficult behavior when routines change during the summer?",
"answer": "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.",
"answerHtml": "<p>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.</p>"
},
{
"question": "How can I reinforce skills during playdates or family gatherings?",
"answer": "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.",
"answerHtml": "<p>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.</p>"
},
{
"question": "What should I do if my child experiences sleep disturbances during the summer?",
"answer": "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.",
"answerHtml": "<p>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.</p>"
}
]}
/>
## 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 26](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)
@@ -13,6 +13,8 @@ tags: []
draft: false draft: false
--- ---
import FAQAccordion from '../../../components/FAQAccordion.astro';
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. 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. 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.
@@ -167,33 +169,43 @@ Short journal entries such as "did not look when name called" or "cried when sch
- You know your child best. Your observations guide the process. - You know your child best. Your observations guide the process.
Frequently Asked Questions <FAQAccordion
label="Frequently Asked Questions"
## Autism Evaluation Tips for Arizona heading="Autism Evaluation Tips for Arizona"
canonical="https://www.azinstitute4autism.com/library/autism-evaluation-diagnosis-arizona-parent-guide"
### What is the difference between an autism screening and an autism diagnosis? items={[
{
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. "question": "What is the difference between an autism screening and an autism diagnosis?",
"answer": "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? "answerHtml": "<p>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.</p>"
},
Licensed psychologists, developmental pediatricians, child neurologists, and psychiatrists can complete a formal diagnostic evaluation in Arizona. {
"question": "Who can diagnose autism in Arizona?",
### When should I ask for an evaluation? "answer": "Licensed psychologists, developmental pediatricians, child neurologists, and psychiatrists can complete a formal diagnostic evaluation in Arizona.",
"answerHtml": "<p>Licensed psychologists, developmental pediatricians, child neurologists, and psychiatrists can complete a formal diagnostic evaluation in Arizona.</p>"
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? "question": "When should I ask for an evaluation?",
"answer": "If you notice patterns in social communication, play, or flexibility that persist over time, speak with your pediatrician. Early conversation opens access to support.",
Expect a parent interview, direct observation, and standardized tools such as ADOS-2. Results guide treatment recommendations and school or insurance supports. "answerHtml": "<p>If you notice patterns in social communication, play, or flexibility that persist over time, speak with your pediatrician. Early conversation opens access to support.</p>"
},
### Do I need a diagnosis to start ABA therapy in Arizona? {
"question": "What happens during an autism evaluation?",
Insurance plans typically require a formal diagnosis and a referral. AIA can help you understand your coverage and next steps. "answer": "Expect a parent interview, direct observation, and standardized tools such as ADOS-2. Results guide treatment recommendations and school or insurance supports.",
"answerHtml": "<p>Expect a parent interview, direct observation, and standardized tools such as ADOS-2. Results guide treatment recommendations and school or insurance supports.</p>"
### 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. "question": "Do I need a diagnosis to start ABA therapy in Arizona?",
"answer": "Insurance plans typically require a formal diagnosis and a referral. AIA can help you understand your coverage and next steps.",
"answerHtml": "<p>Insurance plans typically require a formal diagnosis and a referral. AIA can help you understand your coverage and next steps.</p>"
},
{
"question": "What should I bring to the first appointment?",
"answer": "Bring notes on behaviors and triggers, teacher reports, previous evaluations, insurance information, and a short video of typical play or routines if available.",
"answerHtml": "<p>Bring notes on behaviors and triggers, teacher reports, previous evaluations, insurance information, and a short video of typical play or routines if available.</p>"
}
]}
/>
Previous Post Previous Post
@@ -13,6 +13,8 @@ tags: []
draft: false draft: false
--- ---
import FAQAccordion from '../../../components/FAQAccordion.astro';
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. 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 childs communication, social connection, play, and support needs so you can move forward with a plan. A child autism evaluation is not a test your child passes or fails. It is a structured way for trained clinicians to understand your childs communication, social connection, play, and support needs so you can move forward with a plan.
@@ -133,41 +135,53 @@ If you are still figuring out where to start, our Arizona-focused guide, "[Autis
After an evaluation, families often want help turning recommendations into a real plan. If you are exploring ABA services, you can review AIAs 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. After an evaluation, families often want help turning recommendations into a real plan. If you are exploring ABA services, you can review AIAs 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 <FAQAccordion
label="Frequently Asked Questions"
## Help with First Autism Evaluation Expectations heading="Help with First Autism Evaluation Expectations"
canonical="https://www.azinstitute4autism.com/library/autism-evaluation-what-to-expect"
### How is an autism screening different from an autism evaluation? items={[
{
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. "question": "How is an autism screening different from an autism evaluation?",
"answer": "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? "answerHtml": "<p>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.</p>"
},
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. {
"question": "Who can diagnose autism in Arizona?",
### What should I bring to the evaluation appointment? "answer": "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.",
"answerHtml": "<p>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.</p>"
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? "question": "What should I bring to the evaluation appointment?",
"answer": "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.",
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. "answerHtml": "<p>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.</p>"
},
### Will my child be asked to talk or follow directions? {
"question": "How long does it take to get results?",
The clinician adapts expectations to your childs developmental level. Many activities are play-based and focus on communication in whatever form your child uses. "answer": "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.",
"answerHtml": "<p>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.</p>"
### 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. "question": "Will my child be asked to talk or follow directions?",
"answer": "The clinician adapts expectations to your childs developmental level. Many activities are play-based and focus on communication in whatever form your child uses.",
### What happens if my child does not meet criteria for autism? "answerHtml": "<p>The clinician adapts expectations to your childs developmental level. Many activities are play-based and focus on communication in whatever form your child uses.</p>"
},
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. {
"question": "Can an evaluation be done by telehealth?",
### Do we need a diagnosis to start ABA therapy? "answer": "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.",
"answerHtml": "<p>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.</p>"
Insurance commonly requires a formal diagnosis and documentation to authorize ABA services. AIA can help Arizona families understand next steps for intake and coverage. },
{
"question": "What happens if my child does not meet criteria for autism?",
"answer": "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.",
"answerHtml": "<p>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.</p>"
},
{
"question": "Do we need a diagnosis to start ABA therapy?",
"answer": "Insurance commonly requires a formal diagnosis and documentation to authorize ABA services. AIA can help Arizona families understand next steps for intake and coverage.",
"answerHtml": "<p>Insurance commonly requires a formal diagnosis and documentation to authorize ABA services. AIA can help Arizona families understand next steps for intake and coverage.</p>"
}
]}
/>
Previous Post Previous Post
@@ -13,6 +13,8 @@ tags: []
draft: false draft: false
--- ---
import FAQAccordion from '../../../components/FAQAccordion.astro';
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. 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. 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.
@@ -155,33 +157,43 @@ Fall break and the holidays dont have to derail progress or well-being. With
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. 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 <FAQAccordion
label="Frequently Asked Questions"
## Fall Break Tips for Children with Autism heading="Fall Break Tips for Children with Autism"
canonical="https://www.azinstitute4autism.com/library/autism-fall-break-routine-tips-halloween-thanksgiving"
### How do I keep structure without a full school schedule? items={[
{
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. "question": "How do I keep structure without a full school schedule?",
"answer": "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? "answerHtml": "<p>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.</p>"
},
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. {
"question": "What if my child refuses a costume?",
### How do I reduce sensory overload during trick-or-treating? "answer": "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.",
"answerHtml": "<p>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.</p>"
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 childs needs. What should I say? "question": "How do I reduce sensory overload during trick-or-treating?",
"answer": "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.",
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. "answerHtml": "<p>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.</p>"
},
### What if the meal is very different from what my child eats? {
"question": "My family does not understand our childs needs. What should I say?",
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. "answer": "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.",
"answerHtml": "<p>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.</p>"
### 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. "question": "What if the meal is very different from what my child eats?",
"answer": "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.",
"answerHtml": "<p>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.</p>"
},
{
"question": "What should I put in a sensory go-bag for the holidays?",
"answer": "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.",
"answerHtml": "<p>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.</p>"
}
]}
/>
Previous Post Previous Post
@@ -13,6 +13,8 @@ tags: []
draft: false draft: false
--- ---
import FAQAccordion from '../../../components/FAQAccordion.astro';
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. 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. 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.
@@ -95,41 +97,53 @@ Our integrated ABA programs focus on functional, meaningful skills. We work on t
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). 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 <FAQAccordion
label="Frequently Asked Questions"
## About Autism & Play heading="About Autism & Play"
canonical="https://www.azinstitute4autism.com/library/autism-friendships-social-play-support"
### Why does my autistic child ignore other children at the park? items={[
{
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. "question": "Why does my autistic child ignore other children at the park?",
"answer": "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? "answerHtml": "<p>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.</p>"
},
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. {
"question": "Is it okay if my child only wants to play with adults?",
### What is parallel play, and is it normal for older children? "answer": "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.",
"answerHtml": "<p>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.</p>"
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? "question": "What is parallel play, and is it normal for older children?",
"answer": "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.",
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. "answerHtml": "<p>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.</p>"
},
### Should I force my child to make eye contact during playdates? {
"question": "How do I stop my child from info-dumping on peers?",
No. Forcing eye contact can be physically uncomfortable and deeply distracting for autistic children, taking their focus away from the actual play and conversation. "answer": "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.",
"answerHtml": "<p>Instead of stopping them, teach them to check for social cues. ABA therapy can help teach a child how to ask, &quot;Do you want to hear more about this?&quot; giving them a tool to share their passion without overwhelming the listener.</p>"
### 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. "question": "Should I force my child to make eye contact during playdates?",
"answer": "No. Forcing eye contact can be physically uncomfortable and deeply distracting for autistic children, taking their focus away from the actual play and conversation.",
### Can AAC devices be used during playdates? "answerHtml": "<p>No. Forcing eye contact can be physically uncomfortable and deeply distracting for autistic children, taking their focus away from the actual play and conversation.</p>"
},
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. {
"question": "How can I tell if my child is lonely or just prefers to be alone?",
### How does ABA help with play if it's mostly structured learning? "answer": "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.",
"answerHtml": "<p>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.</p>"
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. },
{
"question": "Can AAC devices be used during playdates?",
"answer": "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.",
"answerHtml": "<p>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.</p>"
},
{
"question": "How does ABA help with play if it's mostly structured learning?",
"answer": "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.",
"answerHtml": "<p>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.</p>"
}
]}
/>
Previous Post Previous Post
@@ -13,6 +13,8 @@ tags: []
draft: false draft: false
--- ---
import FAQAccordion from '../../../components/FAQAccordion.astro';
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. 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. 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.
@@ -99,33 +101,43 @@ Finally, celebrate every single attempt your child makes to communicate. Whether
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. 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 <FAQAccordion
label="Frequently Asked Questions"
## Help with First Autism Evaluation Expectations heading="Help with First Autism Evaluation Expectations"
canonical="https://www.azinstitute4autism.com/library/communication-social-skills-autistic-children-guide"
### At what age should I be concerned about my child's communication skills? items={[
{
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. "question": "At what age should I be concerned about my child's communication skills?",
"answer": "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? "answerHtml": "<p>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.</p>"
},
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. {
"question": "Will using an AAC device or picture cards stop my child from learning to talk?",
### Why does my child repeat the same phrases from movies over and over? "answer": "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.",
"answerHtml": "<p>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.</p>"
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? "question": "Why does my child repeat the same phrases from movies over and over?",
"answer": "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.",
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. "answerHtml": "<p>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.</p>"
},
### What is the difference between speech therapy and ABA for communication? {
"question": "How can I improve my child's social interaction if they don't like playing with others?",
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. "answer": "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.",
"answerHtml": "<p>Start small by simply sharing space. Engage in &quot;parallel play,&quot; 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.</p>"
### 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. "question": "What is the difference between speech therapy and ABA for communication?",
"answer": "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.",
"answerHtml": "<p>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.</p>"
},
{
"question": "How do I handle public meltdowns when my child can't tell me what's wrong?",
"answer": "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.",
"answerHtml": "<p>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.</p>"
}
]}
/>
Previous Post Previous Post
@@ -13,6 +13,8 @@ tags: []
draft: false draft: false
--- ---
import FAQAccordion from '../../../components/FAQAccordion.astro';
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." 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. That uncertainty is common. It is also why clinicians look for patterns across everyday skills , not one isolated milestone.
@@ -367,33 +369,43 @@ Early understanding helps families:
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). 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 <FAQAccordion
label="Frequently Asked Questions"
## Early Signs of Autism by Age heading="Early Signs of Autism by Age"
canonical="https://www.azinstitute4autism.com/library/early-signs-autism-by-age"
### What are the earliest signs of autism in toddlers? items={[
{
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. "question": "What are the earliest signs of autism in toddlers?",
"answer": "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 includes several early social communication markers.",
### What are signs of autism at 18 months? "answerHtml": "<p>Many families notice differences in joint attention, gestures, response to name, and back-and-forth social play. The CDC's list of <a href=\"https://www.cdc.gov/autism/signs-symptoms/index\">autism signs and symptoms</a> includes several early social communication markers.</p>"
},
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/). {
"question": "What are signs of autism at 18 months?",
### What are signs of autism in a 2-year-old? "answer": "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.",
"answerHtml": "<p>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 <a href=\"https://www.aap.org/en/patient-care/autism/\">18 and 24 months</a>.</p>"
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? "question": "What are signs of autism in a 2-year-old?",
"answer": "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.",
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. "answerHtml": "<p>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 <a href=\"play-leisure-skills\">play and leisure skills</a>.</p>"
},
### When should my child be screened for autism? {
"question": "Does delayed speech automatically mean 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). "answer": "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.",
"answerHtml": "<p>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.</p>"
### 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). "question": "When should my child be screened for autism?",
"answer": "The American Academy of Pediatrics recommends autism-specific screening at 18 and 24 months. The CDC summarizes that guidance for clinicians on its page about clinical autism screening.",
"answerHtml": "<p>The American Academy of Pediatrics recommends autism-specific screening at <a href=\"https://www.aap.org/en/patient-care/autism/\">18 and 24 months</a>. The CDC summarizes that guidance for clinicians on its page about <a href=\"https://www.cdc.gov/autism/hcp/diagnosis/screening\">clinical autism screening</a>.</p>"
},
{
"question": "What happens during an autism evaluation?",
"answer": "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, and Mass General provides a general overview of the ADOS-2 assessment.",
"answerHtml": "<p>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 <a href=\"../autism-evaluations\">autism evaluations page</a>, and Mass General provides a general overview of the <a href=\"https://www.massgeneral.org/children/autism/lurie-center/autism-diagnostic-observation-schedulesecond-edition-ados2\">ADOS-2 assessment</a>.</p>"
}
]}
/>
Previous Post Previous Post
@@ -13,6 +13,8 @@ tags: []
draft: false draft: false
--- ---
import FAQAccordion from '../../../components/FAQAccordion.astro';
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. 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. Key idea: Emotional regulation is not a "nice-to-have." It is the engine that powers learning, independence, and connection.
@@ -182,33 +184,43 @@ Want help designing your plan? [Schedule a free consultation](../client-consulta
Ready to take the next step? Visit our [ABA Therapy](../aba-therapy) page or start the [Learner Intake Process](../aba-therapy-intake-process). 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 <FAQAccordion
label="Frequently Asked Questions"
## Emotional Regulation Tips heading="Emotional Regulation Tips"
canonical="https://www.azinstitute4autism.com/library/emotional-regulation-aba"
### What is emotional regulation in ABA therapy? items={[
{
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. "question": "What is emotional regulation in ABA therapy?",
"answer": "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? "answerHtml": "<p>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.</p>"
},
Co-regulation uses an adults calm presence to guide the child in the moment. Self-regulation is the long-term goal where the child uses the same tools independently. {
"question": "How is co-regulation different from self-regulation?",
### Why focus on emotions instead of compliance? "answer": "Co-regulation uses an adults calm presence to guide the child in the moment. Self-regulation is the long-term goal where the child uses the same tools independently.",
"answerHtml": "<p>Co-regulation uses an adults calm presence to guide the child in the moment. Self-regulation is the long-term goal where the child uses the same tools independently.</p>"
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? "question": "Why focus on emotions instead of compliance?",
"answer": "Compliance may look good briefly. Emotional regulation produces lasting gains that generalize to school, stores, and play. It also strengthens trust and communication.",
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. "answerHtml": "<p>Compliance may look good briefly. Emotional regulation produces lasting gains that generalize to school, stores, and play. It also strengthens trust and communication.</p>"
},
### How do we measure progress? {
"question": "Which tools help most at home?",
We track independent strategy use, recovery time, and how much adult support is needed. The goal is steady progress toward independence and generalization. "answer": "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.",
"answerHtml": "<p>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.</p>"
### 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. "question": "How do we measure progress?",
"answer": "We track independent strategy use, recovery time, and how much adult support is needed. The goal is steady progress toward independence and generalization.",
"answerHtml": "<p>We track independent strategy use, recovery time, and how much adult support is needed. The goal is steady progress toward independence and generalization.</p>"
},
{
"question": "When should we ask for extra help?",
"answer": "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.",
"answerHtml": "<p>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.</p>"
}
]}
/>
Previous Post Previous Post
@@ -13,6 +13,8 @@ tags: []
draft: false draft: false
--- ---
import FAQAccordion from '../../../components/FAQAccordion.astro';
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. 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. 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.
@@ -161,33 +163,43 @@ A strong autism parent guide should say this plainly: your regulation matters to
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. AIAs [Discover Self-Care Hacks for Parents of Children with Autism](autism-family-self-care-tips) keeps this practical and realistic. 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. AIAs [Discover Self-Care Hacks for Parents of Children with Autism](autism-family-self-care-tips) keeps this practical and realistic.
Frequently Asked Questions <FAQAccordion
label="Frequently Asked Questions"
## Parent Guide to Autism and ABA heading="Parent Guide to Autism and ABA"
canonical="https://www.azinstitute4autism.com/library/parents-guide-to-autism-and-aba"
### What should I do if I think my child may be autistic? items={[
{
Talk with your childs pediatrician, ask for a developmental screening, and share specific examples from home. If you want a clearer overview of screening versus diagnosis, AIAs [Autism Evaluation in Arizona: A Parents Step-by-Step Guide](autism-evaluation-diagnosis-arizona-parent-guide) is a helpful next step. "question": "What should I do if I think my child may be autistic?",
"answer": "Talk with your childs pediatrician, ask for a developmental screening, and share specific examples from home. If you want a clearer overview of screening versus diagnosis, AIAs Autism Evaluation in Arizona: A Parents Step-by-Step Guide is a helpful next step.",
### Does every autistic child need ABA therapy? "answerHtml": "<p>Talk with your childs pediatrician, ask for a developmental screening, and share specific examples from home. If you want a clearer overview of screening versus diagnosis, AIAs <a href=\"autism-evaluation-diagnosis-arizona-parent-guide\">Autism Evaluation in Arizona: A Parents Step-by-Step Guide</a> is a helpful next step.</p>"
},
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. {
"question": "Does every autistic child need ABA therapy?",
### How can I help my child communicate if they are minimally verbal? "answer": "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.",
"answerHtml": "<p>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.</p>"
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? "question": "How can I help my child communicate if they are minimally verbal?",
"answer": "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.",
Focus on safety, reduce demands, and lower sensory input when possible. Save teaching and problem-solving for later, after your child is calm. "answerHtml": "<p>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.</p>"
},
### How can I make transitions easier at home? {
"question": "What should I do during a meltdown?",
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. "answer": "Focus on safety, reduce demands, and lower sensory input when possible. Save teaching and problem-solving for later, after your child is calm.",
"answerHtml": "<p>Focus on safety, reduce demands, and lower sensory input when possible. Save teaching and problem-solving for later, after your child is calm.</p>"
### 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. "question": "How can I make transitions easier at home?",
"answer": "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.",
"answerHtml": "<p>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.</p>"
},
{
"question": "How can family members stay consistent without becoming rigid?",
"answer": "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.",
"answerHtml": "<p>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.</p>"
}
]}
/>
## Final thoughts ## Final thoughts
@@ -13,6 +13,8 @@ tags: []
draft: false draft: false
--- ---
import FAQAccordion from '../../../components/FAQAccordion.astro';
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. 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. 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.
@@ -171,27 +173,33 @@ For families looking ahead to preschool, kindergarten, or classroom routines, AI
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. 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 <FAQAccordion
label="Frequently Asked Questions"
## About Play & Leisure heading="About Play & Leisure"
canonical="https://www.azinstitute4autism.com/library/play-leisure-skills"
### Why doesn't my autistic child play with toys the "right" way? items={[
{
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. "question": "Why doesn't my autistic child play with toys the \"right\" way?",
"answer": "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? "answerHtml": "<p>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 &quot;wrong&quot; — it's a starting point. Gently model new ways to use the toy without taking it away.</p>"
},
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. {
"question": "At what age should pretend play emerge?",
### Is repetitive play harmful? "answer": "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.",
"answerHtml": "<p>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.</p>"
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? "question": "Is repetitive play harmful?",
"answer": "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.",
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. "answerHtml": "<p>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.</p>"
},
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. {
"question": "Should I force my child to play with peers?",
"answer": "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 to learn more about evaluation and therapy options for your child.",
"answerHtml": "<p>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. <a href=\"../client-consultation\">Schedule a free consultation</a> to learn more about evaluation and therapy options for your child.</p>"
}
]}
/>
Previous Post Previous Post
@@ -13,6 +13,8 @@ tags: []
draft: false draft: false
--- ---
import FAQAccordion from '../../../components/FAQAccordion.astro';
## 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 doesnt know how to have a conversation." ## 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 doesnt know how to have a conversation."
### The short answer ### The short answer
@@ -132,33 +134,43 @@ Aside for Arizona families: On hot days when the playground is not an option, pr
- [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. - [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 <FAQAccordion
label="Frequently Asked Questions"
## Social Communication Tips heading="Social Communication Tips"
canonical="https://www.azinstitute4autism.com/library/social-pragmatic-communication-autism"
### What is pragmatic language in autism? items={[
{
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. "question": "What is pragmatic language in autism?",
"answer": "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? "answerHtml": "<p>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.</p>"
},
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. {
"question": "Is my child being rude when they miss jokes or interrupt?",
### Does peer practice actually help? "answer": "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.",
"answerHtml": "<p>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.</p>"
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? "question": "Does peer practice actually help?",
"answer": "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.",
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. "answerHtml": "<p>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.</p>"
},
### What visual supports should we start with? {
"question": "How is ABA different from speech therapy for social skills?",
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. "answer": "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.",
"answerHtml": "<p>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.</p>"
### How do I get help in Arizona? },
{
You can [schedule a free consultation](../client-consultation) or read more about [AIAs 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. "question": "What visual supports should we start with?",
"answer": "Start with simple tools such as First-Then cards or mini checklists for a single routine. Our overview of First-Then Cards shows how to set them up and fade them as independence grows.",
"answerHtml": "<p>Start with simple tools such as First-Then cards or mini checklists for a single routine. Our overview of <a href=\"first-then-cards-autism-transitions\">First-Then Cards</a> shows how to set them up and fade them as independence grows.</p>"
},
{
"question": "How do I get help in Arizona?",
"answer": "You can schedule a free consultation or read more about AIAs ABA services and our intake process . We support families across the Phoenix metro area with in-center and at-home options along with caregiver training.",
"answerHtml": "<p>You can <a href=\"../client-consultation\">schedule a free consultation</a> or read more about <a href=\"../aba-therapy\">AIAs ABA services</a> and our <a href=\"../aba-therapy-intake-process\">intake process</a> . We support families across the Phoenix metro area with in-center and at-home options along with caregiver training.</p>"
}
]}
/>
Previous Post Previous Post
@@ -13,6 +13,8 @@ tags: []
draft: false draft: false
--- ---
import FAQAccordion from '../../../components/FAQAccordion.astro';
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. 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 ## Nuestro Enfoque Único para el Desarrollo Infantil Temprano
@@ -99,37 +101,48 @@ Si su hijo tiene entre 2 y 6 años y podría beneficiarse de un programa que int
Preparación general para el Kinder Preparación general para el Kinder
Rutas de aprendizaje escalonadas para transiciones suaves Rutas de aprendizaje escalonadas para transiciones suaves
Preguntas frecuentes <FAQAccordion
label="Preguntas frecuentes"
## Consejos de la Academia Preparatoria AIA heading="Consejos de la Academia Preparatoria AIA"
canonical="https://www.azinstitute4autism.com/es/library/aba-school-readiness-arizona"
### ¿Qué es la Academia Preparatoria AIA? items={[
{
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. "question": "¿Qué es la Academia Preparatoria AIA?",
"answer": "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? "answerHtml": "<p>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.</p>"
},
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. {
"question": "¿Quién se beneficia más de la Academia Preparatoria AIA?",
### ¿Cómo prepara nuestro programa de preparación escolar a los niños para el kinder? "answer": "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.",
"answerHtml": "<p>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.</p>"
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? "question": "¿Cómo prepara nuestro programa de preparación escolar a los niños para el kinder?",
"answer": "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.",
Nuestro programa integra un currículo acreditado alineado con los estándares de educación infantil de Arizona mientras incorpora prácticas de ABA. "answerHtml": "<p>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.</p>"
},
### ¿Cómo se miden el progreso y los resultados? {
"question": "¿Está acreditada la Academia Preparatoria AIA?",
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. "answer": "Nuestro programa integra un currículo acreditado alineado con los estándares de educación infantil de Arizona mientras incorpora prácticas de ABA.",
"answerHtml": "<p>Nuestro programa integra un currículo acreditado alineado con los estándares de educación infantil de Arizona mientras incorpora prácticas de ABA.</p>"
### ¿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. "question": "¿Cómo se miden el progreso y los resultados?",
"answer": "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.",
### ¿Cómo inscribo a mi hijo/hija? "answerHtml": "<p>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.</p>"
},
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. {
"question": "¿Qué grupo de edad atiende la Academia Preparatoria AIA?",
"answer": "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.",
"answerHtml": "<p>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.</p>"
},
{
"question": "¿Cómo inscribo a mi hijo/hija?",
"answer": "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.",
"answerHtml": "<p>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.</p>"
}
]}
/>
Next Post Next Post
@@ -13,6 +13,8 @@ tags: []
draft: false draft: false
--- ---
import FAQAccordion from '../../../components/FAQAccordion.astro';
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? 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. 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.
@@ -167,33 +169,43 @@ Entradas cortas en el diario como "no miró cuando llamaron su nombre" o "lloró
- Conoces mejor a tu hijo. Tus observaciones guían el proceso. - Conoces mejor a tu hijo. Tus observaciones guían el proceso.
Preguntas Frecuentes <FAQAccordion
label="Preguntas Frecuentes"
## Consejos para la Evaluación del Autismo en Arizona heading="Consejos para la Evaluación del Autismo en Arizona"
canonical="https://www.azinstitute4autism.com/es/library/autism-evaluation-diagnosis-arizona-parent-guide"
### ¿Cuál es la diferencia entre una evaluación de autismo y un diagnóstico de autismo? items={[
{
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. "question": "¿Cuál es la diferencia entre una evaluación de autismo y un diagnóstico de autismo?",
"answer": "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? "answerHtml": "<p>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.</p>"
},
Los psicólogos licenciados, pediatras del desarrollo, neurólogos infantiles y psiquiatras pueden realizar una evaluación diagnóstica formal en Arizona. {
"question": "¿Quién puede diagnosticar el autismo en Arizona?",
### ¿Cuándo debo pedir una evaluación? "answer": "Los psicólogos licenciados, pediatras del desarrollo, neurólogos infantiles y psiquiatras pueden realizar una evaluación diagnóstica formal en Arizona.",
"answerHtml": "<p>Los psicólogos licenciados, pediatras del desarrollo, neurólogos infantiles y psiquiatras pueden realizar una evaluación diagnóstica formal en Arizona.</p>"
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? "question": "¿Cuándo debo pedir una evaluación?",
"answer": "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.",
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. "answerHtml": "<p>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.</p>"
},
### ¿Necesito un diagnóstico para comenzar la terapia ABA en Arizona? {
"question": "¿Qué sucede durante una evaluación de autismo?",
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. "answer": "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.",
"answerHtml": "<p>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.</p>"
### ¿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. "question": "¿Necesito un diagnóstico para comenzar la terapia ABA en Arizona?",
"answer": "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.",
"answerHtml": "<p>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.</p>"
},
{
"question": "¿Qué debo llevar a la primera cita?",
"answer": "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.",
"answerHtml": "<p>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.</p>"
}
]}
/>
Previous Post Previous Post
@@ -13,6 +13,8 @@ tags: []
draft: false draft: false
--- ---
import FAQAccordion from '../../../components/FAQAccordion.astro';
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. 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 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.
@@ -133,41 +135,53 @@ Si aún está tratando de decidir por dónde comenzar, nuestra guía enfocada en
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. 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 <FAQAccordion
label="Preguntas Frecuentes"
## Ayuda con las expectativas de la primera evaluación de autismo heading="Ayuda con las expectativas de la primera evaluación de autismo"
canonical="https://www.azinstitute4autism.com/es/library/autism-evaluation-what-to-expect"
### ¿En qué se diferencia un cribado de autismo de una evaluación de autismo? items={[
{
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. "question": "¿En qué se diferencia un cribado de autismo de una evaluación de autismo?",
"answer": "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? "answerHtml": "<p>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.</p>"
},
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. {
"question": "¿Quién puede diagnosticar el autismo en Arizona?",
### ¿Qué debo llevar a la cita de evaluación? "answer": "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.",
"answerHtml": "<p>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.</p>"
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? "question": "¿Qué debo llevar a la cita de evaluación?",
"answer": "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.",
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. "answerHtml": "<p>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.</p>"
},
### ¿Se le pedirá a mi hijo que hable o siga instrucciones? {
"question": "¿Cuánto tiempo se tarda en obtener resultados?",
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. "answer": "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.",
"answerHtml": "<p>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.</p>"
### ¿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. "question": "¿Se le pedirá a mi hijo que hable o siga instrucciones?",
"answer": "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.",
### ¿Qué pasa si mi hijo no cumple los criterios para el autismo? "answerHtml": "<p>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.</p>"
},
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. {
"question": "¿Se puede realizar una evaluación por telemedicina?",
### ¿Necesitamos un diagnóstico para empezar la terapia ABA? "answer": "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.",
"answerHtml": "<p>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.</p>"
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. },
{
"question": "¿Qué pasa si mi hijo no cumple los criterios para el autismo?",
"answer": "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.",
"answerHtml": "<p>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.</p>"
},
{
"question": "¿Necesitamos un diagnóstico para empezar la terapia ABA?",
"answer": "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.",
"answerHtml": "<p>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.</p>"
}
]}
/>
Previous Post Previous Post
@@ -13,6 +13,8 @@ tags: []
draft: false draft: false
--- ---
import FAQAccordion from '../../../components/FAQAccordion.astro';
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. 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. Idea clave: La regulación emocional no es un "extra." Es el motor que impulsa el aprendizaje, la independencia y la conexión.
@@ -182,33 +184,43 @@ Semana 2: Usar y reforzar
¿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). ¿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 <FAQAccordion
label="Preguntas frecuentes"
## Consejos para la Regulación Emocional heading="Consejos para la Regulación Emocional"
canonical="https://www.azinstitute4autism.com/es/library/emotional-regulation-aba"
### ¿Qué es la regulación emocional en la terapia ABA? items={[
{
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. "question": "¿Qué es la regulación emocional en la terapia ABA?",
"answer": "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? "answerHtml": "<p>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.</p>"
},
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. {
"question": "¿Cómo se diferencia la co-regulación de la autorregulación?",
### ¿Por qué centrarse en las emociones en lugar de en el cumplimiento? "answer": "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.",
"answerHtml": "<p>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.</p>"
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? "question": "¿Por qué centrarse en las emociones en lugar de en el cumplimiento?",
"answer": "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.",
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. "answerHtml": "<p>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.</p>"
},
### ¿Cómo medimos el progreso? {
"question": "¿Qué herramientas son las más útiles en casa?",
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. "answer": "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.",
"answerHtml": "<p>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.</p>"
### ¿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. "question": "¿Cómo medimos el progreso?",
"answer": "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.",
"answerHtml": "<p>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.</p>"
},
{
"question": "¿Cuándo deberíamos pedir ayuda adicional?",
"answer": "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.",
"answerHtml": "<p>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.</p>"
}
]}
/>
Previous Post Previous Post
@@ -13,6 +13,8 @@ tags: []
draft: false draft: false
--- ---
import FAQAccordion from '../../../components/FAQAccordion.astro';
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. 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. 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.
@@ -159,33 +161,43 @@ A short caregiver plan can help. Agree on one or two goals, the words adults wil
Una buena guía para padres de niños con autismo debería decir esto claramente: tu regulación también importa. Una buena guía para padres de niños con autismo debería decir esto claramente: tu regulación también importa.
Preguntas Frecuentes <FAQAccordion
label="Preguntas Frecuentes"
## Guía para padres sobre autismo y ABA heading="Guía para padres sobre autismo y ABA"
canonical="https://www.azinstitute4autism.com/es/library/parents-guide-to-autism-and-aba"
### ¿Qué debo hacer si creo que mi hijo podría ser autista? items={[
{
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. "question": "¿Qué debo hacer si creo que mi hijo podría ser autista?",
"answer": "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 es un siguiente paso útil.",
### ¿Todos los niños autistas necesitan terapia ABA? "answerHtml": "<p>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 <a href=\"autism-evaluation-diagnosis-arizona-parent-guide\">Evaluación del autismo en Arizona: una guía paso a paso para padres</a> es un siguiente paso útil.</p>"
},
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. {
"question": "¿Todos los niños autistas necesitan terapia ABA?",
### ¿Cómo puedo ayudar a mi hijo a comunicarse si es mínimamente verbal? "answer": "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.",
"answerHtml": "<p>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.</p>"
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? "question": "¿Cómo puedo ayudar a mi hijo a comunicarse si es mínimamente verbal?",
"answer": "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.",
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. "answerHtml": "<p>Use lenguaje sencillo, imágenes o gestos, tiempo de espera adicional y comunicación funcional como &quot;ayuda&quot;, &quot;más&quot;, &quot;descanso&quot; y &quot;terminado&quot;. La comunicación significativa no tiene que empezar con frases completas.</p>"
},
### ¿Cómo puedo facilitar las transiciones en casa? {
"question": "What should I do during a meltdown?",
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". "answer": "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.",
"answerHtml": "<p>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.</p>"
### ¿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. "question": "¿Cómo puedo facilitar las transiciones en casa?",
"answer": "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\".",
"answerHtml": "<p>Utilice advertencias claras, horarios visuales, lenguaje de &quot;Primero-Después&quot; 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 &quot;primero esto, luego esto&quot;.</p>"
},
{
"question": "¿Cómo pueden los miembros de la familia mantener la coherencia sin volverse rígidos?",
"answer": "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.",
"answerHtml": "<p>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.</p>"
}
]}
/>
## Pensamientos finales ## Pensamientos finales
@@ -13,6 +13,8 @@ tags: []
draft: false draft: false
--- ---
import FAQAccordion from '../../../components/FAQAccordion.astro';
## 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." ## 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 ### La respuesta corta
@@ -132,33 +134,43 @@ Para las familias de Arizona: En los días calurosos cuando el parque infantil n
- [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. - [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 <FAQAccordion
label="Preguntas Frecuentes"
## Consejos de Comunicación Social heading="Consejos de Comunicación Social"
canonical="https://www.azinstitute4autism.com/es/library/social-pragmatic-communication-autism"
### ¿Qué es el lenguaje pragmático en el autismo? items={[
{
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. "question": "¿Qué es el lenguaje pragmático en el autismo?",
"answer": "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? "answerHtml": "<p>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.</p>"
},
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. {
"question": "¿Está siendo grosero mi hijo cuando no entiende los chistes o interrumpe?",
### ¿Realmente ayuda la práctica entre compañeros? "answer": "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.",
"answerHtml": "<p>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.</p>"
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? "question": "¿Realmente ayuda la práctica entre compañeros?",
"answer": "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.",
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. "answerHtml": "<p>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.</p>"
},
### ¿Qué soportes visuales deberíamos empezar a utilizar? {
"question": "¿Cómo se diferencia el ABA de la terapia del habla para las habilidades sociales?",
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. "answer": "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.",
"answerHtml": "<p>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.</p>"
### ¿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. "question": "¿Qué soportes visuales deberíamos empezar a utilizar?",
"answer": "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 muestra cómo configurarlas y desvanecerlas a medida que crece la independencia.",
"answerHtml": "<p>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 <a href=\"../../library/first-then-cards-autism-transitions\">Tarjetas Primero-Luego</a> muestra cómo configurarlas y desvanecerlas a medida que crece la independencia.</p>"
},
{
"question": "¿Cómo consigo ayuda en Arizona?",
"answer": "Puedes programar una consulta gratuita o leer más sobre los servicios de ABA de AIA y nuestro proceso de admisión . 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.",
"answerHtml": "<p>Puedes <a href=\"../../client-consultation\">programar una consulta gratuita</a> o leer más sobre los <a href=\"../../aba-therapy\">servicios de ABA de AIA</a> y nuestro <a href=\"../../aba-therapy-intake-process\">proceso de admisión</a> . 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.</p>"
}
]}
/>
Previous Post Previous Post
-2
View File
@@ -50,8 +50,6 @@
.like-view-counter button { background: white; border: 1px solid var(--color-border); border-radius: 999px; padding: .6rem 1rem; } .like-view-counter button { background: white; border: 1px solid var(--color-border); border-radius: 999px; padding: .6rem 1rem; }
.like-view-counter button.liked { background: var(--color-primary-dark); border-color: var(--color-primary-dark); color: white; } .like-view-counter button.liked { background: var(--color-primary-dark); border-color: var(--color-primary-dark); color: white; }
.like-view-counter button:disabled { cursor: wait; opacity: .65; } .like-view-counter button:disabled { cursor: wait; opacity: .65; }
.faq { border-bottom: 1px solid var(--color-border); padding-block: var(--space-md); }
.faq summary { cursor: pointer; font-weight: 700; }
.source-page-banner { background: var(--color-tint); padding-block: 4rem; text-align: center; } .source-page-banner { background: var(--color-tint); padding-block: 4rem; text-align: center; }
.source-page-banner h1 { margin: 0; } .source-page-banner h1 { margin: 0; }
.source-page-banner.has-source-image { background-color: var(--color-tint); background-position: center; background-repeat: no-repeat; background-size: cover; padding-block: 10rem; text-align: left; } .source-page-banner.has-source-image { background-color: var(--color-tint); background-position: center; background-repeat: no-repeat; background-size: cover; padding-block: 10rem; text-align: left; }
+37 -3
View File
@@ -7,25 +7,59 @@ import matter from 'gray-matter';
const root = path.resolve(path.dirname(fileURLToPath(import.meta.url)), '..'); const root = path.resolve(path.dirname(fileURLToPath(import.meta.url)), '..');
const failures = []; const failures = [];
const files = await fg('src/content/blog/**/*.{md,mdx}', { cwd: root, absolute: true }); const files = await fg('src/content/blog/**/*.{md,mdx}', { cwd: root, absolute: true });
let faqPosts = 0;
let faqQuestions = 0;
for (const file of files) { for (const file of files) {
const { content, data } = matter(await fs.readFile(file, 'utf8')); const source = await fs.readFile(file, 'utf8');
const { content, data } = matter(source);
const body = content.trimStart(); const body = content.trimStart();
if (body.startsWith('# ')) failures.push(`${path.relative(root, file)}: body begins with a duplicate article title`); if (body.startsWith('# ')) failures.push(`${path.relative(root, file)}: body begins with a duplicate article title`);
if (body.includes(data.featuredImage) && body.indexOf(data.featuredImage) < 500) { if (body.includes(data.featuredImage) && body.indexOf(data.featuredImage) < 500) {
failures.push(`${path.relative(root, file)}: body begins with a duplicate featured image`); failures.push(`${path.relative(root, file)}: body begins with a duplicate featured image`);
} }
if (/^\s*(Frequently Asked Questions|Preguntas [Ff]recuentes)\s*$/m.test(content)) {
failures.push(`${path.relative(root, file)}: FAQ section remains plain Markdown instead of using FAQAccordion`);
}
const componentMatch = content.match(/<FAQAccordion[\s\S]*?items=\{(\[[\s\S]*?\])\}\s*\/>/);
if (componentMatch) {
let faqItems;
try {
faqItems = JSON.parse(componentMatch[1]);
} catch {
failures.push(`${path.relative(root, file)}: FAQAccordion items are not valid JSON data`);
continue;
}
faqPosts++;
faqQuestions += faqItems.length;
if (!file.endsWith('.mdx') || !content.includes("import FAQAccordion from '../../../components/FAQAccordion.astro';")) {
failures.push(`${path.relative(root, file)}: FAQAccordion must be used from an MDX post`);
}
if (!/label="(?:Frequently Asked Questions|Preguntas [Ff]recuentes)"/.test(componentMatch[0]) || !/heading="[^"]+"/.test(componentMatch[0])) {
failures.push(`${path.relative(root, file)}: FAQAccordion is missing its label or topic heading`);
}
if (!componentMatch[0].includes(`canonical="${data.canonical}"`)) {
failures.push(`${path.relative(root, file)}: FAQAccordion canonical does not match frontmatter`);
}
for (const item of faqItems) {
if (!item.question || !item.answer || !item.answerHtml) {
failures.push(`${path.relative(root, file)}: FAQAccordion item is incomplete`);
break;
}
}
}
} }
const report = [ const report = [
'# Blog Content Audit', '# Blog Content Audit',
'', '',
`Checked ${files.length} blog post bodies for layout content duplicated in Markdown.`, `Checked ${files.length} blog post bodies for layout content duplicated in Markdown.`,
`Verified ${faqQuestions} FAQ questions across ${faqPosts} FAQ-bearing posts.`,
'', '',
failures.length ? failures.map((failure) => `- ${failure}`).join('\n') : 'No duplicated article headers were detected.', failures.length ? failures.map((failure) => `- ${failure}`).join('\n') : 'No duplicated article headers or invalid MDX FAQ components were detected.',
'' ''
].join('\n'); ].join('\n');
await fs.writeFile(path.join(root, 'reports/blog-content-audit.md'), report); await fs.writeFile(path.join(root, 'reports/blog-content-audit.md'), report);
console.log(`${failures.length} duplicated blog header elements.`); console.log(`${failures.length} blog content audit failures.`);
if (failures.length) process.exitCode = 1; if (failures.length) process.exitCode = 1;