From 0b276e7b32db8950ec6972ba63a2f5c065ea002e Mon Sep 17 00:00:00 2001 From: Jeffrey Hales Date: Mon, 8 Jun 2026 20:08:21 -0700 Subject: [PATCH] feat(blog): recreate article footer navigation and related posts - add reusable live-site-faithful blog footer component - extract previous, next, and related post data from article content - remove duplicated footer fragments from multilingual articles - document the repeatable footer extraction workflow --- www/README.md | 5 + www/package.json | 1 + www/src/components/BlogPostFooter.astro | 191 ++ .../blog/ar/aba-school-readiness-guide.md | 22 - .../ar/autism-self-advocacy-skills-aba.md | 22 - .../ar/behavior-management-functions-guide.md | 18 - .../ar/executive-functioning-skills-autism.md | 22 - .../ar/first-then-cards-autism-transitions.md | 18 - .../ar/positive-reinforcement-techniques.md | 22 - ...proactive-reactive-aba-strategies-guide.md | 22 - .../blog/en/aac-visual-supports-autism.mdx | 22 - .../blog/en/aba-school-readiness-arizona.mdx | 22 - .../blog/en/aba-school-readiness-guide.md | 22 - .../content/blog/en/aba-therapy-benefits.md | 22 - .../blog/en/aba-therapy-dtt-net-guide.md | 22 - ...ba-therapy-prompting-parenting-benefits.md | 22 - .../en/aba-therapy-summer-routine-tips.mdx | 22 - .../en/aba-toilet-training-child-autism.md | 22 - ...-world-autism-community-day-celebration.md | 22 - ...iendly-recipe-thanksgiving-pumpkin-cake.md | 22 - .../asd-sensory-friendly-recipes-pancakes.md | 22 - ...luation-diagnosis-arizona-parent-guide.mdx | 22 - .../en/autism-evaluation-what-to-expect.mdx | 22 - ...ak-routine-tips-halloween-thanksgiving.mdx | 22 - .../blog/en/autism-family-self-care-tips.md | 22 - ...autism-friendships-social-play-support.mdx | 18 - .../en/autism-self-advocacy-skills-aba.md | 22 - .../en/autism-therapy-rapport-strategies.md | 22 - .../en/behavior-management-functions-guide.md | 22 - ...ication-techniques-reinforcement-theory.md | 22 - ...-social-skills-autistic-children-guide.mdx | 22 - .../en/community-highlight-meet-rula-diab.md | 22 - .../blog/en/critical-thinking-skills.md | 22 - .../blog/en/early-signs-autism-by-age.mdx | 22 - .../blog/en/emotional-regulation-aba.mdx | 22 - .../en/enhancing-generalization-skills.md | 22 - .../en/executive-functioning-skills-autism.md | 22 - .../en/first-then-cards-autism-transitions.md | 22 - .../blog/en/heart-full-of-gratitude.md | 22 - .../blog/en/individualized-aba-therapy.md | 22 - .../en/integrated-aba-model-announcement.md | 22 - .../managing-aggressive-behavior-outbursts.md | 22 - .../content/blog/en/meet-rula-diab-bcba.md | 22 - .../blog/en/new-aia-scottsdale-office.md | 22 - .../en/new-year-2024-autism-holiday-tips.md | 22 - .../content/blog/en/new-year-goals-2023.md | 22 - .../blog/en/november-2022-aia-update.md | 22 - .../en/parents-guide-to-autism-and-aba.mdx | 18 - .../content/blog/en/play-leisure-skills.mdx | 22 - .../en/positive-reinforcement-techniques.md | 22 - ...proactive-reactive-aba-strategies-guide.md | 22 - .../blog/en/reduce-behavior-management.md | 18 - .../content/blog/en/repetitive-behavior.md | 22 - www/src/content/blog/en/sensory-processing.md | 22 - .../social-pragmatic-communication-autism.mdx | 22 - .../blog/en/understanding-autism-support.md | 22 - .../blog/es/aba-school-readiness-arizona.mdx | 18 - ...luation-diagnosis-arizona-parent-guide.mdx | 22 - .../es/autism-evaluation-what-to-expect.mdx | 22 - .../blog/es/autism-family-self-care-tips.md | 22 - .../es/autism-self-advocacy-skills-aba.md | 22 - .../blog/es/emotional-regulation-aba.mdx | 22 - .../es/enhancing-generalization-skills.md | 18 - .../es/executive-functioning-skills-autism.md | 22 - .../es/first-then-cards-autism-transitions.md | 22 - .../es/parents-guide-to-autism-and-aba.mdx | 22 - .../es/positive-reinforcement-techniques.md | 22 - .../social-pragmatic-communication-autism.mdx | 22 - www/src/data/blog-footers.json | 1924 +++++++++++++++++ www/src/layouts/BlogPostLayout.astro | 2 + www/tools/extract-blog-footers.mjs | 58 + 71 files changed, 2181 insertions(+), 1402 deletions(-) create mode 100644 www/src/components/BlogPostFooter.astro create mode 100644 www/src/data/blog-footers.json create mode 100644 www/tools/extract-blog-footers.mjs diff --git a/www/README.md b/www/README.md index f8e23aa..34cdbdd 100644 --- a/www/README.md +++ b/www/README.md @@ -328,6 +328,7 @@ npm run extract:full After extraction: ```sh +npm run extract:blog-footers npm run generate:sitemap npm run generate:redirects npm run build @@ -342,6 +343,10 @@ posts and CTA-bearing pages as Markdown; restore their `FAQAccordion` and `Button` MDX blocks before accepting the result. `npm run audit:blog` reports plain Markdown FAQ sections. +`npm run extract:blog-footers` preserves the extracted previous/next and +similar-post relationships in `src/data/blog-footers.json`, then removes those +footer fragments from article prose so `BlogPostFooter.astro` can render them. + ## Reports And Utilities Migration reports are stored in `reports/`. diff --git a/www/package.json b/www/package.json index 5d7c903..c312f14 100644 --- a/www/package.json +++ b/www/package.json @@ -12,6 +12,7 @@ "preview": "astro preview", "extract": "node tools/extract-fallback.mjs", "extract:full": "node tools/extract-site.mjs", + "extract:blog-footers": "node tools/extract-blog-footers.mjs", "crawl:live": "node tools/crawl-live-site.mjs", "audit:links": "node tools/audit-links.mjs", "audit:images": "node tools/audit-page-imagery.mjs", diff --git a/www/src/components/BlogPostFooter.astro b/www/src/components/BlogPostFooter.astro new file mode 100644 index 0000000..2d035df --- /dev/null +++ b/www/src/components/BlogPostFooter.astro @@ -0,0 +1,191 @@ +--- +import footerData from '../data/blog-footers.json'; + +interface FooterLink { + title: string; + href: string; +} + +interface RelatedPost extends FooterLink { + image: string; + alt: string; +} + +interface FooterData { + previous?: FooterLink; + next?: FooterLink; + related: RelatedPost[]; +} + +const { entryId } = Astro.props as { entryId: string }; +const footer = (footerData as Record)[entryId]; +--- + +{footer && ( +
+ {(footer.previous || footer.next) && ( + + )} + + {footer.related.length > 0 && ( + + )} +
+)} + + diff --git a/www/src/content/blog/ar/aba-school-readiness-guide.md b/www/src/content/blog/ar/aba-school-readiness-guide.md index 0d1f02c..ae31fb2 100644 --- a/www/src/content/blog/ar/aba-school-readiness-guide.md +++ b/www/src/content/blog/ar/aba-school-readiness-guide.md @@ -42,25 +42,3 @@ draft: false - الاستمرارية في الاستجابة للسلوكيات المختلفة تساعد طفلك على فهم العلاقة بين أفعاله والنتائج المترتبة عليها. قد تكون التغييرات في الروتين اليومي صعبة وتحديًا كبيرًا، ولكن من خلال تنفيذ تدخلات مناسبة قائمة على المقدمات والنتائج، يمكن خلق بيئة داعمة، منظمة، ومحفزة لطفلك. - - Previous Post - -###### [إتقان إدارة السلوك: اكتشف الوظائف الأربع للسلوك](behavior-management-functions-guide) - - Next Post - -###### [دليل تعليم مهارات الدفاع عن النفس في ABA](autism-self-advocacy-skills-aba) - -### Similar Blog Posts - -![بطاقات](/assets/images/hero-first-then-cards.webp) - -#### [بطاقات "أولاً/ثم": تسهيل الانتقال بين الأنشطة للأطفال المصابين بالتوحّد](first-then-cards-autism-transitions) - -![دليل استراتيجيات تحليل السلوك التطبيقي الاستباقية والتفاعلية— الصورة الرئيسية](/assets/images/hero-proactive-reactive-strategies.webp) - -#### [إتقان تقنيات التحليل السلوكي الاستباقية والتفاعلية– احجز استشارتك الآن](proactive-reactive-aba-strategies-guide) - -![الصورة الرئيسية – استراتيجيات مهارات الوظائف التنفيذية للأطفال المصابين بالتوحّد](/assets/images/hero-executive-functioning-skills-autism.webp) - -#### [مهارات الوظائف التنفيذية والتوحّد](executive-functioning-skills-autism) diff --git a/www/src/content/blog/ar/autism-self-advocacy-skills-aba.md b/www/src/content/blog/ar/autism-self-advocacy-skills-aba.md index 4140f2a..036ef72 100644 --- a/www/src/content/blog/ar/autism-self-advocacy-skills-aba.md +++ b/www/src/content/blog/ar/autism-self-advocacy-skills-aba.md @@ -70,25 +70,3 @@ draft: false - نمذجة الدفاع عن النفس : أظهروا كيف تدافعون عن احتياجاتكم أنتم لتقديم مثال حي. إن تعليم مهارات الدفاع عن النفس من خلال تحليل السلوك التطبيقي (ABA) يمنح الأطفال القدرة على السيطرة على احتياجاتهم وتفضيلاتهم واختياراتهم. ومن خلال تعزيز الاستقلالية وتطوير مهارات التواصل، يساعد ABA الأطفال على مواجهة بيئاتهم بثقة وكرامة. سواء في الجلسات العلاجية أو في المنزل، يبقى الدفاع عن النفس هدية ثمينة تُعِدّ الأطفال للنجاح مدى الحياة. - - Previous Post - -###### [العودة إلى المدرسة بسهولة | تدخلات السلوك التحليلية (ABA) من خلال المقدمات والنتائج](aba-school-readiness-guide) - - Next Post - -###### [مهارات الوظائف التنفيذية والتوحّد](executive-functioning-skills-autism) - -### Similar Blog Posts - -![الصورة الرئيسية – استراتيجيات مهارات الوظائف التنفيذية للأطفال المصابين بالتوحّد](/assets/images/hero-executive-functioning-skills-autism.webp) - -#### [مهارات الوظائف التنفيذية والتوحّد](executive-functioning-skills-autism) - -![دليل استراتيجيات تحليل السلوك التطبيقي الاستباقية والتفاعلية— الصورة الرئيسية](/assets/images/hero-proactive-reactive-strategies.webp) - -#### [إتقان تقنيات التحليل السلوكي الاستباقية والتفاعلية– احجز استشارتك الآن](proactive-reactive-aba-strategies-guide) - -![بطاقات](/assets/images/hero-first-then-cards.webp) - -#### [بطاقات "أولاً/ثم": تسهيل الانتقال بين الأنشطة للأطفال المصابين بالتوحّد](first-then-cards-autism-transitions) diff --git a/www/src/content/blog/ar/behavior-management-functions-guide.md b/www/src/content/blog/ar/behavior-management-functions-guide.md index a681f6e..c90a3ca 100644 --- a/www/src/content/blog/ar/behavior-management-functions-guide.md +++ b/www/src/content/blog/ar/behavior-management-functions-guide.md @@ -42,21 +42,3 @@ draft: false إن فهم وظائف السلوك يمكّن المختصين من تصميم استراتيجيات إدارة السلوك بما يتناسب مع احتياجات الفرد ودوافعه. يركّز ممارسو ABA على تعديل المثيرات السابقة التي تؤدي إلى السلوكيات، وتقديم عواقب مناسبة تعالج الوظائف الأساسية للسلوك، وتعزيز سلوكيات بديلة إيجابية باستخدام التعزيز. ختامًا، تُعد إدارة السلوك المبنية على فهم وظائفه جوهرية لتحقيق نتائج إيجابية، وتعزيز النمو، وتحسين جودة حياة الأفراد المستفيدين من خدمات ABA. من خلال تحديد وظائف السلوك وتنفيذ تدخلات فردية، يمكن لمختصي السلوك تمكين الأفراد من تطوير مهارات جديدة والنجاح في بيئات متنوعة. - - Next Post - -###### [العودة إلى المدرسة بسهولة | تدخلات السلوك التحليلية (ABA) من خلال المقدمات والنتائج](aba-school-readiness-guide) - -### Similar Blog Posts - -![بطاقات](/assets/images/hero-first-then-cards.webp) - -#### [بطاقات "أولاً/ثم": تسهيل الانتقال بين الأنشطة للأطفال المصابين بالتوحّد](first-then-cards-autism-transitions) - -![نصائح حول المقدمات والنتائج التي يحتاجها كل والد/ة مصاب/ة بالتوحد لتجهيز أطفالهم للمدرسة - صورة رئيسية](/assets/images/hero-back-to-school.webp) - -#### [العودة إلى المدرسة بسهولة | تدخلات السلوك التحليلية (ABA) من خلال المقدمات والنتائج](aba-school-readiness-guide) - -![دليل استراتيجيات تحليل السلوك التطبيقي الاستباقية والتفاعلية— الصورة الرئيسية](/assets/images/hero-proactive-reactive-strategies.webp) - -#### [إتقان تقنيات التحليل السلوكي الاستباقية والتفاعلية– احجز استشارتك الآن](proactive-reactive-aba-strategies-guide) diff --git a/www/src/content/blog/ar/executive-functioning-skills-autism.md b/www/src/content/blog/ar/executive-functioning-skills-autism.md index 41b5ba9..0cc7334 100644 --- a/www/src/content/blog/ar/executive-functioning-skills-autism.md +++ b/www/src/content/blog/ar/executive-functioning-skills-autism.md @@ -122,25 +122,3 @@ draft: false - التدريب على حل المشكلات الواقعية (مثل: إدارة مشاريع جماعية أو التعامل مع الخلافات). بناء مهارات الوظائف التنفيذية لدى الأطفال المصابين بالتوحّد هو عملية تدريجية وداعمة. ومن خلال استراتيجيات موجهة، وسائل بصرية، وروتين ثابت، يمكن للأطفال تطوير قدر أكبر من الاستقلالية والمرونة والقدرة على التحمّل الانفعالي. - - Previous Post - -###### [دليل تعليم مهارات الدفاع عن النفس في ABA](autism-self-advocacy-skills-aba) - - Next Post - -###### [إتقان تقنيات التحليل السلوكي الاستباقية والتفاعلية– احجز استشارتك الآن](proactive-reactive-aba-strategies-guide) - -### Similar Blog Posts - -![دليل استراتيجيات تحليل السلوك التطبيقي الاستباقية والتفاعلية— الصورة الرئيسية](/assets/images/hero-proactive-reactive-strategies.webp) - -#### [إتقان تقنيات التحليل السلوكي الاستباقية والتفاعلية– احجز استشارتك الآن](proactive-reactive-aba-strategies-guide) - -![نصائح حول المقدمات والنتائج التي يحتاجها كل والد/ة مصاب/ة بالتوحد لتجهيز أطفالهم للمدرسة - صورة رئيسية](/assets/images/hero-back-to-school.webp) - -#### [العودة إلى المدرسة بسهولة | تدخلات السلوك التحليلية (ABA) من خلال المقدمات والنتائج](aba-school-readiness-guide) - -![بطاقات](/assets/images/hero-first-then-cards.webp) - -#### [بطاقات "أولاً/ثم": تسهيل الانتقال بين الأنشطة للأطفال المصابين بالتوحّد](first-then-cards-autism-transitions) diff --git a/www/src/content/blog/ar/first-then-cards-autism-transitions.md b/www/src/content/blog/ar/first-then-cards-autism-transitions.md index 686b8c8..1f06ef2 100644 --- a/www/src/content/blog/ar/first-then-cards-autism-transitions.md +++ b/www/src/content/blog/ar/first-then-cards-autism-transitions.md @@ -108,21 +108,3 @@ draft: false - العلاج المنزلي : متاح لتقديم الدعم داخل بيئة الطفل الطبيعية. - متجر AIA القادم : قريباً ستتمكّن من الوصول إلى مجموعة متنوعة من أدوات الدعم البصري، بما في ذلك بطاقات "أولاً/ثم" ومجموعات PECS، عبر متجرنا الإلكتروني. ترقّبوا التحديثات. - - Previous Post - -###### [التعزيز الإيجابي في علاج تحليل السلوك التطبيقي (ABA) لتشجيع تطوير المهارات](positive-reinforcement-techniques) - -### Similar Blog Posts - -![أتقن إدارة السلوك: اكتشف الوظائف الأربع للسلوك – الصورة الرئيسية](/assets/images/hero-behavior-functions-management.webp) - -#### [إتقان إدارة السلوك: اكتشف الوظائف الأربع للسلوك](behavior-management-functions-guide) - -![الصورة الرئيسية – استراتيجيات مهارات الوظائف التنفيذية للأطفال المصابين بالتوحّد](/assets/images/hero-executive-functioning-skills-autism.webp) - -#### [مهارات الوظائف التنفيذية والتوحّد](executive-functioning-skills-autism) - -![دليل استراتيجيات تحليل السلوك التطبيقي الاستباقية والتفاعلية— الصورة الرئيسية](/assets/images/hero-proactive-reactive-strategies.webp) - -#### [إتقان تقنيات التحليل السلوكي الاستباقية والتفاعلية– احجز استشارتك الآن](proactive-reactive-aba-strategies-guide) diff --git a/www/src/content/blog/ar/positive-reinforcement-techniques.md b/www/src/content/blog/ar/positive-reinforcement-techniques.md index 7b2212a..ded8b43 100644 --- a/www/src/content/blog/ar/positive-reinforcement-techniques.md +++ b/www/src/content/blog/ar/positive-reinforcement-techniques.md @@ -268,25 +268,3 @@ draft: false التعزيز الإيجابي في ABA ليس مجرد تقنية، بل وسيلة لبناء الدافعية طويلة الأمد، والتنظيم العاطفي، والاستقلالية لدى الأطفال ذوي التوحد. من خلال تحديد السلوكيات بوضوح، واختيار مكافآت ذات معنى، وتقديمها بسرعة وبشكل ثابت، ستخلق بيئة تعليمية داعمة في المنزل وخارجه. للحصول على دعم شخصي واستشارة مجانية، تواصل مع معهد أريزونا للتوحد اليوم. دعونا نحتفل بكل نجاح معًا! - - Previous Post - -###### [إتقان تقنيات التحليل السلوكي الاستباقية والتفاعلية– احجز استشارتك الآن](proactive-reactive-aba-strategies-guide) - - Next Post - -###### [بطاقات "أولاً/ثم": تسهيل الانتقال بين الأنشطة للأطفال المصابين بالتوحّد](first-then-cards-autism-transitions) - -### Similar Blog Posts - -![دليل استراتيجيات تحليل السلوك التطبيقي الاستباقية والتفاعلية— الصورة الرئيسية](/assets/images/hero-proactive-reactive-strategies.webp) - -#### [إتقان تقنيات التحليل السلوكي الاستباقية والتفاعلية– احجز استشارتك الآن](proactive-reactive-aba-strategies-guide) - -![نصائح حول المقدمات والنتائج التي يحتاجها كل والد/ة مصاب/ة بالتوحد لتجهيز أطفالهم للمدرسة - صورة رئيسية](/assets/images/hero-back-to-school.webp) - -#### [العودة إلى المدرسة بسهولة | تدخلات السلوك التحليلية (ABA) من خلال المقدمات والنتائج](aba-school-readiness-guide) - -![الصورة الرئيسية – استراتيجيات مهارات الوظائف التنفيذية للأطفال المصابين بالتوحّد](/assets/images/hero-executive-functioning-skills-autism.webp) - -#### [مهارات الوظائف التنفيذية والتوحّد](executive-functioning-skills-autism) diff --git a/www/src/content/blog/ar/proactive-reactive-aba-strategies-guide.md b/www/src/content/blog/ar/proactive-reactive-aba-strategies-guide.md index a91bf8e..2d18eeb 100644 --- a/www/src/content/blog/ar/proactive-reactive-aba-strategies-guide.md +++ b/www/src/content/blog/ar/proactive-reactive-aba-strategies-guide.md @@ -52,25 +52,3 @@ draft: false تلعب كل من [الاستراتيجيات الاستباقية والتفاعلية](https://www.ncbi.nlm.nih.gov/pmc/articles/PMC7473487/) دورًا حاسمًا في جلسات تحليل السلوك التطبيقي. فبينما تسهم الاستراتيجيات الاستباقية في خلق بيئة مشجعة للسلوك الإيجابي وتقلل من احتمالية السلوكيات الصعبة، توفّر الاستراتيجيات التفاعلية إطارًا للتعامل الفعّال عند ظهور هذه السلوكيات. في معهد أريزونا للتوحد، نحن ملتزمون بتطبيق هذه الاستراتيجيات بكفاءة لدعم الأفراد الذين نعمل معهم وتعزيز جودة حياتهم. - - Previous Post - -###### [مهارات الوظائف التنفيذية والتوحّد](executive-functioning-skills-autism) - - Next Post - -###### [التعزيز الإيجابي في علاج تحليل السلوك التطبيقي (ABA) لتشجيع تطوير المهارات](positive-reinforcement-techniques) - -### Similar Blog Posts - -![الصورة الرئيسية – استراتيجيات مهارات الوظائف التنفيذية للأطفال المصابين بالتوحّد](/assets/images/hero-executive-functioning-skills-autism.webp) - -#### [مهارات الوظائف التنفيذية والتوحّد](executive-functioning-skills-autism) - -![بطاقات](/assets/images/hero-first-then-cards.webp) - -#### [بطاقات "أولاً/ثم": تسهيل الانتقال بين الأنشطة للأطفال المصابين بالتوحّد](first-then-cards-autism-transitions) - -![مهارات الدفاع عن النفس لدى الأطفال ذوي التوحّد عبر تحليل السلوك التطبيقي (ABA) – الصورة الرئيسية](/assets/images/hero-teach-self-advocacy.webp) - -#### [دليل تعليم مهارات الدفاع عن النفس في ABA](autism-self-advocacy-skills-aba) diff --git a/www/src/content/blog/en/aac-visual-supports-autism.mdx b/www/src/content/blog/en/aac-visual-supports-autism.mdx index 85eed8f..b2ea715 100644 --- a/www/src/content/blog/en/aac-visual-supports-autism.mdx +++ b/www/src/content/blog/en/aac-visual-supports-autism.mdx @@ -151,25 +151,3 @@ Collaboration is key to this process. We frequently coordinate with speech-langu } ]} /> - - Previous Post - -###### [Autism Guide for Parents and Caregivers](parents-guide-to-autism-and-aba) - - Next Post - -###### [Supporting Friendships and Social Play for Children with Autism](autism-friendships-social-play-support) - -### Similar Blog Posts - -![A parent and an autistic child smiling while using a picture communication board during playtime.](/assets/images/communication-skills-autistic-children-hero_img.png) - -#### [Building Communication & Social Skills in Autistic Children: A Practical Guide for Families](communication-social-skills-autistic-children-guide) - -![Parent and autistic child using visual supports, structured play, and calm routines together](/assets/images/family-guide-to-autism-aba-at-home_hero.png) - -#### [Autism Guide for Parents and Caregivers](parents-guide-to-autism-and-aba) - -![Three children engaging happily in parallel play on a colorful rug.](/assets/images/parallel-players-hero.png) - -#### [Supporting Friendships and Social Play for Children with Autism](autism-friendships-social-play-support) diff --git a/www/src/content/blog/en/aba-school-readiness-arizona.mdx b/www/src/content/blog/en/aba-school-readiness-arizona.mdx index 35c2c81..c80ea36 100644 --- a/www/src/content/blog/en/aba-school-readiness-arizona.mdx +++ b/www/src/content/blog/en/aba-school-readiness-arizona.mdx @@ -161,25 +161,3 @@ If your child is between the ages of 2 and 6 and could benefit from a program th } ]} /> - - Previous Post - -###### [Positive Reinforcement in ABA Therapy to Encourage Skill Development](positive-reinforcement-techniques) - - Next Post - -###### [Autism and Fall Break: How to Keep Routines Calm and Predictable](autism-fall-break-routine-tips-halloween-thanksgiving) - -### Similar Blog Posts - -![November AIA Update - hero image](/assets/images/hero-november-2022-aia-update_800x.jpg) - -#### [November AIA Update](november-2022-aia-update) - -![Critical Thinking Skills for Children with Autism - hero image](/assets/images/hero-critical-thinking-skills_800x.jpg) - -#### [Critical Thinking Skills for Children with Autism](critical-thinking-skills) - -![proactive reactive aba strategies guide - hero image](/assets/images/hero-proactive-reactive-strategies.webp) - -#### [Master Proactive & Reactive ABA Techniques – Schedule a Consultation](proactive-reactive-aba-strategies-guide) diff --git a/www/src/content/blog/en/aba-school-readiness-guide.md b/www/src/content/blog/en/aba-school-readiness-guide.md index f5a47ba..b2bbb63 100644 --- a/www/src/content/blog/en/aba-school-readiness-guide.md +++ b/www/src/content/blog/en/aba-school-readiness-guide.md @@ -42,25 +42,3 @@ For families with children with autism, navigating back to school period can be - Consistency in your response to different behaviors helps your child to understand the connection between their actions and outcomes. Changes in daily routines can be difficult and challenging, However Implementing appropriate antecedent and consequence interventions can create a supportive, structured, and motivated environment for your child. - - Previous Post - -###### [Master Behavior Management: Discover the Four Functions of Behavior](behavior-management-functions-guide) - - Next Post - -###### [Master Proactive & Reactive ABA Techniques – Schedule a Consultation](proactive-reactive-aba-strategies-guide) - -### Similar Blog Posts - -![teaching academic, social, communications, and independence skills](/assets/images/hero-aba-preschool-az_800x.jpg) - -#### [Now Enrolling: AIA Preparatory Academy for Children Ages 2–6](aba-school-readiness-arizona) - -![Pediatrician performing a toddler](/assets/images/autism_evaluation_arizona_hero.jpg) - -#### [Autism Evaluation in Arizona: A Parent's Step-by-Step Guide](autism-evaluation-diagnosis-arizona-parent-guide) - -![rapport strategies for effective aba therapy - hero image](/assets/images/hero-rapport-strategies.webp) - -#### [Learn the Secrets to Effective Rapport Building in ABA Therapy](autism-therapy-rapport-strategies) diff --git a/www/src/content/blog/en/aba-therapy-benefits.md b/www/src/content/blog/en/aba-therapy-benefits.md index 28a3f20..0aa5d0f 100644 --- a/www/src/content/blog/en/aba-therapy-benefits.md +++ b/www/src/content/blog/en/aba-therapy-benefits.md @@ -22,25 +22,3 @@ Parental participation is a critical component of ABA Therapy. Parents and careg At the Arizona Institute for Autism, our focus is on the learner. Our services are designed to meet individual needs, working collaboratively with a team of clinicians and parents. This approach aims to improve the quality of life for children with autism and their families. For more information on ABA therapy services offered by AIA, or to book your free consultation, visit us at [https://www.azinstitute4autism.com](../index), contact us at [(480) 687-7099](tel:+14806877099), or email [info@azinstitute4autism.com](mailto:info@azinstitute4autism.com). If you are looking for more applied behavioral analysis and ASD diagnosis tips, check out [more articles](../library) from AIA’s clinical director, Rula Diab! - - Previous Post - -###### [ASD Sensory-Friendly Recipes: Pancakes](asd-sensory-friendly-recipes-pancakes) - - Next Post - -###### [Meet Rula Diab | Board Certified Behavior Analyst (BCBA)](meet-rula-diab-bcba) - -### Similar Blog Posts - -![Repetitive Behaviors with Children Diagnosed with Autism - hero image](/assets/images/hero-repetetive-behaviors.webp) - -#### [Repetitive Behaviors with Children Diagnosed with Autism](repetitive-behavior) - -![asd sensory-friendly pancake recipe - hero image](/assets/images/hero-asd-sensory-friendly-recipe-pancakes_800x.jpg) - -#### [ASD Sensory-Friendly Recipes: Pancakes](asd-sensory-friendly-recipes-pancakes) - -![2024 new year reflection and planning for autism support and awareness - hero image](/assets/images/hero-new-year-goals-2024.webp) - -#### [New Year 2024: Holiday Tips for Autism Support & Awareness](new-year-2024-autism-holiday-tips) diff --git a/www/src/content/blog/en/aba-therapy-dtt-net-guide.md b/www/src/content/blog/en/aba-therapy-dtt-net-guide.md index 61b1e8b..75c8999 100644 --- a/www/src/content/blog/en/aba-therapy-dtt-net-guide.md +++ b/www/src/content/blog/en/aba-therapy-dtt-net-guide.md @@ -30,25 +30,3 @@ On the other hand, Natural Environment Training (NET) emphasizes learning within Integrating DTT and NET allows us to create a comprehensive therapeutic experience that meets the diverse needs of our learners. By employing both methodologies ensure not only the efficacy of learning, but also extend and apply the acquired skills across various settings. In Summary, leveraging the combined strengths of DTT and NET enhances our therapeutic practices, amplifying our capability to foster significant and lasting development. - - Previous Post - -###### [Understanding Sensory Processing in the Context of ABA Therapy](sensory-processing) - - Next Post - -###### [Benefits of Prompting & Parenting in ABA Therapy](aba-therapy-prompting-parenting-benefits) - -### Similar Blog Posts - -![potty train children with autism using simple aba techniques - hero image](/assets/images/hero-aba-toilet-training-child-autism.webp) - -#### [Guide: Simple ABA Techniques for Toilet Training Children with Autism](aba-toilet-training-child-autism) - -![2024 new year reflection and planning for autism support and awareness - hero image](/assets/images/hero-new-year-goals-2024.webp) - -#### [New Year 2024: Holiday Tips for Autism Support & Awareness](new-year-2024-autism-holiday-tips) - -![Benefits of ABA Therapy for Children with Autism - hero image](/assets/images/hero-aba-therapy-benefits_800x.jpg) - -#### [The Benefits of ABA Therapy for Children with Autism](aba-therapy-benefits) diff --git a/www/src/content/blog/en/aba-therapy-prompting-parenting-benefits.md b/www/src/content/blog/en/aba-therapy-prompting-parenting-benefits.md index e5d1e4d..64c6184 100644 --- a/www/src/content/blog/en/aba-therapy-prompting-parenting-benefits.md +++ b/www/src/content/blog/en/aba-therapy-prompting-parenting-benefits.md @@ -18,25 +18,3 @@ In the field of Applied Behavior Analysis (ABA), the use of prompting as a teach Prompting involves providing learners with assistance to elicit a specific response while they are learning a new skill. Different types of prompts are utilized in ABA, and interventions should be personalized to meet each learner's unique needs and abilities. During therapy sessions, it is recommended that therapists follow a hierarchy of prompts, starting with less intrusive prompts and increasing the level of support as necessary. It is essential to consider the learner's abilities and provide the appropriate level of support to facilitate skill mastery and independence. Additionally, planning for prompt fading is crucial, as this process involves gradually reducing the intensity of prompts to promote independent skill performance. - - Previous Post - -###### [Learn About DTT and NET Methods for More Effective ABA Therapy](aba-therapy-dtt-net-guide) - - Next Post - -###### [Learn the Secrets to Effective Rapport Building in ABA Therapy](autism-therapy-rapport-strategies) - -### Similar Blog Posts - -![aba therapy positive reinforcement](/assets/images/hero-positive-reinforcement-techniques.webp) - -#### [Positive Reinforcement in ABA Therapy to Encourage Skill Development](positive-reinforcement-techniques) - -![Play and Leisure Skills for Children with Autism - hero image](/assets/images/hero-play-leisure-skills-children-autism_800x.jpg) - -#### [Play and Leisure Skills for Children with Autism](play-leisure-skills) - -![2024 new year reflection and planning for autism support and awareness - hero image](/assets/images/hero-new-year-goals-2024.webp) - -#### [New Year 2024: Holiday Tips for Autism Support & Awareness](new-year-2024-autism-holiday-tips) diff --git a/www/src/content/blog/en/aba-therapy-summer-routine-tips.mdx b/www/src/content/blog/en/aba-therapy-summer-routine-tips.mdx index fd199d0..518566f 100644 --- a/www/src/content/blog/en/aba-therapy-summer-routine-tips.mdx +++ b/www/src/content/blog/en/aba-therapy-summer-routine-tips.mdx @@ -212,25 +212,3 @@ At the Arizona Institute for Autism , we provide: ## We're Here For You If you're new to ABA or considering additional summer support for your child, don't hesitate to reach out to us at Arizona Institute for Autism. Our team is here for you every step of the way to help ensure your child continues to make meaningful progress during the summer months. - - Previous Post - -###### [First/Then Cards: Empowering Transitions for Autistic Children](first-then-cards-autism-transitions) - - Next Post - -###### [Positive Reinforcement in ABA Therapy to Encourage Skill Development](positive-reinforcement-techniques) - -### Similar Blog Posts - -![teaching academic, social, communications, and independence skills](/assets/images/hero-aba-preschool-az_800x.jpg) - -#### [Now Enrolling: AIA Preparatory Academy for Children Ages 2–6](aba-school-readiness-arizona) - -![Parent and autistic child using visual supports, structured play, and calm routines together](/assets/images/family-guide-to-autism-aba-at-home_hero.png) - -#### [Autism Guide for Parents and Caregivers](parents-guide-to-autism-and-aba) - -![hero image - executive functioning skills strategies for autistic children](/assets/images/hero-executive-functioning-skills-autism.webp) - -#### [Executive Functioning Skills and Autism](executive-functioning-skills-autism) diff --git a/www/src/content/blog/en/aba-toilet-training-child-autism.md b/www/src/content/blog/en/aba-toilet-training-child-autism.md index 79c0f1b..7efa52a 100644 --- a/www/src/content/blog/en/aba-toilet-training-child-autism.md +++ b/www/src/content/blog/en/aba-toilet-training-child-autism.md @@ -62,25 +62,3 @@ Engage with therapists or specialists experienced in ABA to develop and refine y By implementing these strategies with patience and consistency, you can support your child with autism in achieving successful toilet training. For more information about ABA therapy services offered by AIA or to book your free consultation, visit our Arizona Institute for Autism website at [www.azinstitute4autism.com](../index), call [(480) 687-7099](tel:+14806877099), or email info@azinstitute4autism.com. If you are looking for more applied behavioral analysis and ASD diagnosis and treatment tips, check out more [blog posts](../library) from AIA’s clinical director, Rula Diab! - - Previous Post - -###### [ASD Sensory-Friendly Thanksgiving Recipe: Pumpkin Dump Cake](asd-sensory-friendly-recipe-thanksgiving-pumpkin-cake) - - Next Post - -###### [New Year 2024: Holiday Tips for Autism Support & Awareness](new-year-2024-autism-holiday-tips) - -### Similar Blog Posts - -![2024 new year reflection and planning for autism support and awareness - hero image](/assets/images/hero-new-year-goals-2024.webp) - -#### [New Year 2024: Holiday Tips for Autism Support & Awareness](new-year-2024-autism-holiday-tips) - -![Benefits of ABA Therapy for Children with Autism - hero image](/assets/images/hero-aba-therapy-benefits_800x.jpg) - -#### [The Benefits of ABA Therapy for Children with Autism](aba-therapy-benefits) - -![Repetitive Behaviors with Children Diagnosed with Autism - hero image](/assets/images/hero-repetetive-behaviors.webp) - -#### [Repetitive Behaviors with Children Diagnosed with Autism](repetitive-behavior) diff --git a/www/src/content/blog/en/aia-world-autism-community-day-celebration.md b/www/src/content/blog/en/aia-world-autism-community-day-celebration.md index 7910a30..515e90e 100644 --- a/www/src/content/blog/en/aia-world-autism-community-day-celebration.md +++ b/www/src/content/blog/en/aia-world-autism-community-day-celebration.md @@ -46,25 +46,3 @@ Celebrate and support neurodiversity and inclusion with our AIA family by attend ## Additional questions? If you have questions about AIA's World Autism Community Day of Celebration or are interested in providing a sensory-friendly booth, contact kelly@azinstitute4autism.com. - - Previous Post - -###### [New Year Goals for Our Children with Autism](new-year-goals-2023) - - Next Post - -###### [The Ultimate Guide to Behavior Modification Techniques & Reinforcement Theory](behavior-modification-techniques-reinforcement-theory) - -### Similar Blog Posts - -![asd sensory-friendly pancake recipe - hero image](/assets/images/hero-asd-sensory-friendly-recipe-pancakes_800x.jpg) - -#### [ASD Sensory-Friendly Recipes: Pancakes](asd-sensory-friendly-recipes-pancakes) - -![New Year Goals for Our Children with Autism - hero image](/assets/images/hero-new-year-goals-2023_800x.jpg) - -#### [New Year Goals for Our Children with Autism](new-year-goals-2023) - -![Antecedent & Consequence Hacks Every Autism Parent Needs to Unlock School Readiness - hero image](/assets/images/hero-back-to-school.webp) - -#### [Ease Back-to-School Time | ABA Antecedent & Consequence Interventions](aba-school-readiness-guide) diff --git a/www/src/content/blog/en/asd-sensory-friendly-recipe-thanksgiving-pumpkin-cake.md b/www/src/content/blog/en/asd-sensory-friendly-recipe-thanksgiving-pumpkin-cake.md index 4901428..e958d82 100644 --- a/www/src/content/blog/en/asd-sensory-friendly-recipe-thanksgiving-pumpkin-cake.md +++ b/www/src/content/blog/en/asd-sensory-friendly-recipe-thanksgiving-pumpkin-cake.md @@ -74,25 +74,3 @@ If you have any leftovers, they can be stored for up to 4 days in the fridge or This recipe is simple, easy, and delicious! We hope that you encourage your child to help you prepare the cake and have a great time while doing it. Enjoy! For more information on aba therapy services offered by AIA or to book your free consultation, visit us at [https://www.azinstitute4autism.com](../index), contact us at (480) 707-2195, or email info@azinstitute4autism.com. If you are looking for more applied behavioral analysis and asd diagnosis tips, check out AIA’s clinical director, Rula Diab, monthly [blog posts](../library)! - - Previous Post - -###### [Community Highlights: Meet Rula Diab of Arizona Institute for Autism](community-highlight-meet-rula-diab) - - Next Post - -###### [Guide: Simple ABA Techniques for Toilet Training Children with Autism](aba-toilet-training-child-autism) - -### Similar Blog Posts - -![potty train children with autism using simple aba techniques - hero image](/assets/images/hero-aba-toilet-training-child-autism.webp) - -#### [Guide: Simple ABA Techniques for Toilet Training Children with Autism](aba-toilet-training-child-autism) - -![Benefits of ABA Therapy for Children with Autism - hero image](/assets/images/hero-aba-therapy-benefits_800x.jpg) - -#### [The Benefits of ABA Therapy for Children with Autism](aba-therapy-benefits) - -![asd sensory-friendly pancake recipe - hero image](/assets/images/hero-asd-sensory-friendly-recipe-pancakes_800x.jpg) - -#### [ASD Sensory-Friendly Recipes: Pancakes](asd-sensory-friendly-recipes-pancakes) diff --git a/www/src/content/blog/en/asd-sensory-friendly-recipes-pancakes.md b/www/src/content/blog/en/asd-sensory-friendly-recipes-pancakes.md index d440d5e..a6b975e 100644 --- a/www/src/content/blog/en/asd-sensory-friendly-recipes-pancakes.md +++ b/www/src/content/blog/en/asd-sensory-friendly-recipes-pancakes.md @@ -90,25 +90,3 @@ Your kiddo may not want plain pancakes, which is perfectly fine! There are a few Feel free to vary the recipe however you want and give your kiddo the opportunity to choose which toppings or fillings they want. Mealtime should be fun and enjoyable, so allowing your child to help you or pick their preferred ingredients can make eating more enticing for them. I hope you and your child enjoy this sensory-friendly pancake recipe! For more information on aba therapy services offered by AIA or to book your free consultation, visit our [contact page](../contact), call us at [(480) 687-7099](tel:+14806877099), or email [info@azinstitute4autism.com](mailto:info@azinstitute4autism.com). If you are looking for more applied behavioral analysis and asd diagnosis tips, check out AIA’s clinical director, Rula Diab, monthly blog posts! - - Previous Post - -###### [Repetitive Behaviors with Children Diagnosed with Autism](repetitive-behavior) - - Next Post - -###### [The Benefits of ABA Therapy for Children with Autism](aba-therapy-benefits) - -### Similar Blog Posts - -![2024 new year reflection and planning for autism support and awareness - hero image](/assets/images/hero-new-year-goals-2024.webp) - -#### [New Year 2024: Holiday Tips for Autism Support & Awareness](new-year-2024-autism-holiday-tips) - -![Repetitive Behaviors with Children Diagnosed with Autism - hero image](/assets/images/hero-repetetive-behaviors.webp) - -#### [Repetitive Behaviors with Children Diagnosed with Autism](repetitive-behavior) - -![Benefits of ABA Therapy for Children with Autism - hero image](/assets/images/hero-aba-therapy-benefits_800x.jpg) - -#### [The Benefits of ABA Therapy for Children with Autism](aba-therapy-benefits) diff --git a/www/src/content/blog/en/autism-evaluation-diagnosis-arizona-parent-guide.mdx b/www/src/content/blog/en/autism-evaluation-diagnosis-arizona-parent-guide.mdx index 2c356e7..96e280d 100644 --- a/www/src/content/blog/en/autism-evaluation-diagnosis-arizona-parent-guide.mdx +++ b/www/src/content/blog/en/autism-evaluation-diagnosis-arizona-parent-guide.mdx @@ -252,25 +252,3 @@ Short journal entries such as "did not look when name called" or "cried when sch } ]} /> - - Previous Post - -###### [Why My Child Can Talk but Still Struggles Socially](social-pragmatic-communication-autism) - - Next Post - -###### [Early Signs of Autism by Age: 12 Months to 4 Years](early-signs-autism-by-age) - -### Similar Blog Posts - -![sensory processing challenges in aba therapy - hero image](/assets/images/hero-sensory-processing.webp) - -#### [Understanding Sensory Processing in the Context of ABA Therapy](sensory-processing) - -![Parent and child meeting with a clinician in a calm, play-based autism evaluation setting](/assets/images/autism-evaluation-expectations_hero.png) - -#### [What to Expect at Your Child’s First Autism Evaluation](autism-evaluation-what-to-expect) - -![Parent and autistic child using visual supports, structured play, and calm routines together](/assets/images/family-guide-to-autism-aba-at-home_hero.png) - -#### [Autism Guide for Parents and Caregivers](parents-guide-to-autism-and-aba) diff --git a/www/src/content/blog/en/autism-evaluation-what-to-expect.mdx b/www/src/content/blog/en/autism-evaluation-what-to-expect.mdx index 9e06e1f..c170ffc 100644 --- a/www/src/content/blog/en/autism-evaluation-what-to-expect.mdx +++ b/www/src/content/blog/en/autism-evaluation-what-to-expect.mdx @@ -182,25 +182,3 @@ After an evaluation, families often want help turning recommendations into a rea } ]} /> - - Previous Post - -###### [Early Signs of Autism by Age: 12 Months to 4 Years](early-signs-autism-by-age) - - Next Post - -###### [Building Communication & Social Skills in Autistic Children: A Practical Guide for Families](communication-social-skills-autistic-children-guide) - -### Similar Blog Posts - -![Pediatrician performing a toddler](/assets/images/autism_evaluation_arizona_hero.jpg) - -#### [Autism Evaluation in Arizona: A Parent's Step-by-Step Guide](autism-evaluation-diagnosis-arizona-parent-guide) - -![Parent and autistic child using visual supports, structured play, and calm routines together](/assets/images/family-guide-to-autism-aba-at-home_hero.png) - -#### [Autism Guide for Parents and Caregivers](parents-guide-to-autism-and-aba) - -![Parent and toddler playing with blocks, sharing eye contact and pointing during play.](/assets/images/early_signs_autism_by_age_hero.png) - -#### [Early Signs of Autism by Age: 12 Months to 4 Years](early-signs-autism-by-age) diff --git a/www/src/content/blog/en/autism-fall-break-routine-tips-halloween-thanksgiving.mdx b/www/src/content/blog/en/autism-fall-break-routine-tips-halloween-thanksgiving.mdx index 512beac..149fdca 100644 --- a/www/src/content/blog/en/autism-fall-break-routine-tips-halloween-thanksgiving.mdx +++ b/www/src/content/blog/en/autism-fall-break-routine-tips-halloween-thanksgiving.mdx @@ -245,25 +245,3 @@ Ready to deepen your ABA toolkit? Schedule a [free consultation](../client-consu } ]} /> - - Previous Post - -###### [Now Enrolling: AIA Preparatory Academy for Children Ages 2–6](aba-school-readiness-arizona) - - Next Post - -###### [Why Emotional Regulation Should Be the Heart of Every ABA Program](emotional-regulation-aba) - -### Similar Blog Posts - -![teaching academic, social, communications, and independence skills](/assets/images/hero-aba-preschool-az_800x.jpg) - -#### [Now Enrolling: AIA Preparatory Academy for Children Ages 2–6](aba-school-readiness-arizona) - -![aba therapy summer time tips for parents and caregivers](/assets/images/hero-summer-aba.webp) - -#### [How to Support ABA Therapy Over Summer Break](aba-therapy-summer-routine-tips) - -![child taking emotional regulation timeout in shopping cart - hero](/assets/images/child-shopping-cart-tired-cranky.jpg) - -#### [Why Emotional Regulation Should Be the Heart of Every ABA Program](emotional-regulation-aba) diff --git a/www/src/content/blog/en/autism-family-self-care-tips.md b/www/src/content/blog/en/autism-family-self-care-tips.md index d8507cc..b0e304e 100644 --- a/www/src/content/blog/en/autism-family-self-care-tips.md +++ b/www/src/content/blog/en/autism-family-self-care-tips.md @@ -40,25 +40,3 @@ Parenting a child with autism comes with unique joys and challenges. From naviga At the [Arizona Institute for Autism](../index), we understand that caring for a child with autism is a journey that requires balance. We believe that the well-being of autism parents is just as important as the therapies we provide to children. You are your child’s greatest advocate and most constant source of support. To continue being that pillar of strength, it’s essential to prioritize your health, happiness, and peace of mind. We’re here to support, not only your child’s development, but also your journey as a parent during parent consultation sessions. If you ever feel overwhelmed, know that you’re not alone. Lean on your support network, practice self-care, and take it one day at a time. - - Previous Post - -###### [Individualized Care Plans in ABA Therapy](individualized-aba-therapy) - - Next Post - -###### [Guide to Teaching Self‑Advocacy in ABA](autism-self-advocacy-skills-aba) - -### Similar Blog Posts - -![proactive reactive aba strategies guide - hero image](/assets/images/hero-proactive-reactive-strategies.webp) - -#### [Master Proactive & Reactive ABA Techniques – Schedule a Consultation](proactive-reactive-aba-strategies-guide) - -![Benefits of Prompting & Parenting in ABA Therapy - hero image](/assets/images/hero-prompting-parenting-benefits.webp) - -#### [Benefits of Prompting & Parenting in ABA Therapy](aba-therapy-prompting-parenting-benefits) - -![talking child has trouble socializing - hero](/assets/images/talk-not-social.jpg) - -#### [Why My Child Can Talk but Still Struggles Socially](social-pragmatic-communication-autism) diff --git a/www/src/content/blog/en/autism-friendships-social-play-support.mdx b/www/src/content/blog/en/autism-friendships-social-play-support.mdx index f989d33..5a712c7 100644 --- a/www/src/content/blog/en/autism-friendships-social-play-support.mdx +++ b/www/src/content/blog/en/autism-friendships-social-play-support.mdx @@ -160,21 +160,3 @@ Furthermore, we utilize the child's natural environment and interests to shape t } ]} /> - - Previous Post - -###### [AAC and Visual Supports 101: Helping Your Child Be Heard](aac-visual-supports-autism) - -### Similar Blog Posts - -![autism play and leisure skills for children with autism](/assets/images/hero-play-leisure-skills-children-autism_800x.jpg) - -#### [Autism Play: Helping Autistic Children Build Play and Leisure Skills](play-leisure-skills) - -![child pointing to a picture on a digital AAC tablet during play](/assets/images/visual-supports-aac-communication.png) - -#### [AAC and Visual Supports 101: Helping Your Child Be Heard](aac-visual-supports-autism) - -![A parent and an autistic child smiling while using a picture communication board during playtime.](/assets/images/communication-skills-autistic-children-hero_img.png) - -#### [Building Communication & Social Skills in Autistic Children: A Practical Guide for Families](communication-social-skills-autistic-children-guide) diff --git a/www/src/content/blog/en/autism-self-advocacy-skills-aba.md b/www/src/content/blog/en/autism-self-advocacy-skills-aba.md index a20b6d9..6dea8b7 100644 --- a/www/src/content/blog/en/autism-self-advocacy-skills-aba.md +++ b/www/src/content/blog/en/autism-self-advocacy-skills-aba.md @@ -70,25 +70,3 @@ Parents play a critical role in reinforcing self-advocacy skills learned in ABA - Model Advocacy : Demonstrate how you advocate for your own needs, providing a real-world example. Teaching self-advocacy through ABA empowers children to take charge of their needs, preferences, and choices. By fostering independence and enhancing communication skills, ABA helps children navigate their environments with confidence and dignity. Whether in therapy sessions or at home, self-advocacy is a gift that equips children for lifelong success. - - Previous Post - -###### [Discover Self‑Care Hacks for Parents of Children with Autism](autism-family-self-care-tips) - - Next Post - -###### [Executive Functioning Skills and Autism](executive-functioning-skills-autism) - -### Similar Blog Posts - -![individualized aba therapy - hero image](/assets/images/hero-aba-individual-care-plans.webp) - -#### [Individualized Care Plans in ABA Therapy](individualized-aba-therapy) - -![Integrity, Empowerment and Excellence: Arizona Institute for Autism expands to new office - hero image](/assets/images/hero-integrity-empowerment-excellence_800x.jpg) - -#### [Integrity, Empowerment and Excellence: Arizona Institute for Autism expands to new office](new-aia-scottsdale-office) - -![meet rula diab of aia - hero image](/assets/images/hero-community-highlight-meet-rula-diab_800x.jpg) - -#### [Community Highlights: Meet Rula Diab of Arizona Institute for Autism](community-highlight-meet-rula-diab) diff --git a/www/src/content/blog/en/autism-therapy-rapport-strategies.md b/www/src/content/blog/en/autism-therapy-rapport-strategies.md index 365b5f0..b8e7a92 100644 --- a/www/src/content/blog/en/autism-therapy-rapport-strategies.md +++ b/www/src/content/blog/en/autism-therapy-rapport-strategies.md @@ -32,25 +32,3 @@ Clinicians should keep in mind the importance of fostering strong relationships By investing effort in establishing this rapport, therapists can observe significant progress and growth in each child. Recognizing and accommodating a child's [sensory](https://www.autismspeaks.org/sensory-issues) needs within ABA sessions is crucial for enhancing engagement, reducing anxiety, and creating a more effective and enjoyable learning atmosphere. Building a strong rapport with a child in ABA therapy is essential for facilitating a positive, engaging, and successful therapeutic journey. Through trust-building, increased engagement, reinforcement of positive behavior, and promotion of enjoyable experiences, clinicians can greatly enhance the outcomes of ABA therapy. - - Previous Post - -###### [Benefits of Prompting & Parenting in ABA Therapy](aba-therapy-prompting-parenting-benefits) - - Next Post - -###### [Master Behavior Management: Discover the Four Functions of Behavior](behavior-management-functions-guide) - -### Similar Blog Posts - -![Integrity, Empowerment and Excellence: Arizona Institute for Autism expands to new office - hero image](/assets/images/hero-integrity-empowerment-excellence_800x.jpg) - -#### [Integrity, Empowerment and Excellence: Arizona Institute for Autism expands to new office](new-aia-scottsdale-office) - -![November AIA Update - hero image](/assets/images/hero-november-2022-aia-update_800x.jpg) - -#### [November AIA Update](november-2022-aia-update) - -![navigating the autism journey: understanding and supporting our children with autism - hero image](/assets/images/hero-understanding-autism-support_800x.jpg) - -#### [Navigating the Autism Journey: Understanding and Supporting Our Children with Autism](understanding-autism-support) diff --git a/www/src/content/blog/en/behavior-management-functions-guide.md b/www/src/content/blog/en/behavior-management-functions-guide.md index 60db9b9..b33fa3f 100644 --- a/www/src/content/blog/en/behavior-management-functions-guide.md +++ b/www/src/content/blog/en/behavior-management-functions-guide.md @@ -36,25 +36,3 @@ Behavior analysts use assessments, such as Functional Behavior Assessments (FBAs Understanding behavior functions allows professionals to tailor behavior management strategies to effectively address individual needs and motivations. ABA practitioners focus on modifying antecedents that trigger behaviors, providing appropriate consequences to address underlying functions, and promoting positive replacement behaviors through reinforcement. In conclusion, behavior management informed by an understanding of behavior functions is essential for achieving positive outcomes, promoting growth, and improving the well-being of individuals receiving ABA services. By recognizing the functions of behavior and implementing personalized interventions, ABA professionals can empower individuals to develop new skills and succeed in various settings. - - Previous Post - -###### [Learn the Secrets to Effective Rapport Building in ABA Therapy](autism-therapy-rapport-strategies) - - Next Post - -###### [Ease Back-to-School Time | ABA Antecedent & Consequence Interventions](aba-school-readiness-guide) - -### Similar Blog Posts - -![Ultimate Guide to Behavior Modification Techniques & Reinforcement Theory - hero image](/assets/images/hero-behavior-modification-techniques-reinforcement-theory_800x.jpg) - -#### [The Ultimate Guide to Behavior Modification Techniques & Reinforcement Theory](behavior-modification-techniques-reinforcement-theory) - -![Repetitive Behaviors with Children Diagnosed with Autism - hero image](/assets/images/hero-repetetive-behaviors.webp) - -#### [Repetitive Behaviors with Children Diagnosed with Autism](repetitive-behavior) - -![reduce behavior management - hero image](/assets/images/hero-reduce-behavior-management_800x.jpg) - -#### [4 Ways on How to Reduce Behavior Management](reduce-behavior-management) diff --git a/www/src/content/blog/en/behavior-modification-techniques-reinforcement-theory.md b/www/src/content/blog/en/behavior-modification-techniques-reinforcement-theory.md index 219a431..c5de52c 100644 --- a/www/src/content/blog/en/behavior-modification-techniques-reinforcement-theory.md +++ b/www/src/content/blog/en/behavior-modification-techniques-reinforcement-theory.md @@ -38,25 +38,3 @@ BCBA clinicians use [consequence interventions](https://specialconnections.ku.ed For more information on services offered by AIA, or to book your free consultation, visit us at [https://www.azinstitute4autism.com](../index), contact us at [(480) 687-7099](tel:+14806877099), or email [hello@azinstitute4autism.com](mailto:hello@azinstitute4autism.com). If you are looking for tips, check out more monthly [blog posts](../library) from AIA's clinical director, Rula Diab! - - Previous Post - -###### [AIA’s World Autism Community Day of Celebration](aia-world-autism-community-day-celebration) - - Next Post - -###### [Navigating the Autism Journey: Understanding and Supporting Our Children with Autism](understanding-autism-support) - -### Similar Blog Posts - -![enhancing generalization skills in children with autism - hero image](/assets/images/hero-enhancing-generalization-skills_800x.jpg) - -#### [Enhancing Generalization for Broader Impact in Autism](enhancing-generalization-skills) - -![Repetitive Behaviors with Children Diagnosed with Autism - hero image](/assets/images/hero-repetetive-behaviors.webp) - -#### [Repetitive Behaviors with Children Diagnosed with Autism](repetitive-behavior) - -![integrated aba model announcement - hero image](/assets/images/hero-integrated-aba-model-announcement_800x.jpg) - -#### [Arizona Institute for Autism Adopts an Integrated ABA Model](integrated-aba-model-announcement) diff --git a/www/src/content/blog/en/communication-social-skills-autistic-children-guide.mdx b/www/src/content/blog/en/communication-social-skills-autistic-children-guide.mdx index 0f7d8ec..8de701d 100644 --- a/www/src/content/blog/en/communication-social-skills-autistic-children-guide.mdx +++ b/www/src/content/blog/en/communication-social-skills-autistic-children-guide.mdx @@ -153,25 +153,3 @@ Communication development takes time, patience, and consistency. By recognizing } ]} /> - - Previous Post - -###### [What to Expect at Your Child’s First Autism Evaluation](autism-evaluation-what-to-expect) - - Next Post - -###### [Autism Guide for Parents and Caregivers](parents-guide-to-autism-and-aba) - -### Similar Blog Posts - -![Parent and autistic child using visual supports, structured play, and calm routines together](/assets/images/family-guide-to-autism-aba-at-home_hero.png) - -#### [Autism Guide for Parents and Caregivers](parents-guide-to-autism-and-aba) - -![Parent and child meeting with a clinician in a calm, play-based autism evaluation setting](/assets/images/autism-evaluation-expectations_hero.png) - -#### [What to Expect at Your Child’s First Autism Evaluation](autism-evaluation-what-to-expect) - -![talking child has trouble socializing - hero](/assets/images/talk-not-social.jpg) - -#### [Why My Child Can Talk but Still Struggles Socially](social-pragmatic-communication-autism) diff --git a/www/src/content/blog/en/community-highlight-meet-rula-diab.md b/www/src/content/blog/en/community-highlight-meet-rula-diab.md index aa00b5a..7a5b5ac 100644 --- a/www/src/content/blog/en/community-highlight-meet-rula-diab.md +++ b/www/src/content/blog/en/community-highlight-meet-rula-diab.md @@ -60,25 +60,3 @@ Contact Info: - Website: [https://www.azinstitute4autism.com](../index) - Instagram: [https://www.linkedin.com/company/azinstituteforautism](https://www.linkedin.com/company/azinstituteforautism) - - Previous Post - -###### [Integrity, Empowerment and Excellence: Arizona Institute for Autism expands to new office](new-aia-scottsdale-office) - - Next Post - -###### [ASD Sensory-Friendly Thanksgiving Recipe: Pumpkin Dump Cake](asd-sensory-friendly-recipe-thanksgiving-pumpkin-cake) - -### Similar Blog Posts - -![individualized aba therapy - hero image](/assets/images/hero-aba-individual-care-plans.webp) - -#### [Individualized Care Plans in ABA Therapy](individualized-aba-therapy) - -![autism self-advocacy skills through aba - hero image](/assets/images/hero-teach-self-advocacy.webp) - -#### [Guide to Teaching Self‑Advocacy in ABA](autism-self-advocacy-skills-aba) - -![Integrity, Empowerment and Excellence: Arizona Institute for Autism expands to new office - hero image](/assets/images/hero-integrity-empowerment-excellence_800x.jpg) - -#### [Integrity, Empowerment and Excellence: Arizona Institute for Autism expands to new office](new-aia-scottsdale-office) diff --git a/www/src/content/blog/en/critical-thinking-skills.md b/www/src/content/blog/en/critical-thinking-skills.md index 08fa56c..ddbd8c7 100644 --- a/www/src/content/blog/en/critical-thinking-skills.md +++ b/www/src/content/blog/en/critical-thinking-skills.md @@ -34,25 +34,3 @@ Applied Behavior Analysis is “ the process of systematically applying interven It is okay for our children to make errors, however, as caregivers and parents, we should create learning opportunities for our children, give them the emotional support they need and model proper responses. For more information on how to manage aggressive behavior and proper communication, connect with us by sending your messages and questions to [hello@azinsitute4autism.com](mailto:hello@azinsitute4autism.com) or contact us directly from our contact page. - - Previous Post - -###### [November AIA Update](november-2022-aia-update) - - Next Post - -###### [New Year Goals for Our Children with Autism](new-year-goals-2023) - -### Similar Blog Posts - -![Managing Aggressive Behavior Outbursts and Proper Communication with Your Child During those Moments - hero image](/assets/images/hero-managing-aggressive-behavior-outbursts_800x.jpg) - -#### [Managing Aggressive Behavior Outbursts and Proper Communication with Your Child During those Moments](managing-aggressive-behavior-outbursts) - -![2024 new year reflection and planning for autism support and awareness - hero image](/assets/images/hero-new-year-goals-2024.webp) - -#### [New Year 2024: Holiday Tips for Autism Support & Awareness](new-year-2024-autism-holiday-tips) - -![teaching academic, social, communications, and independence skills](/assets/images/hero-aba-preschool-az_800x.jpg) - -#### [Now Enrolling: AIA Preparatory Academy for Children Ages 2–6](aba-school-readiness-arizona) diff --git a/www/src/content/blog/en/early-signs-autism-by-age.mdx b/www/src/content/blog/en/early-signs-autism-by-age.mdx index 2f0a8c7..25ef1e5 100644 --- a/www/src/content/blog/en/early-signs-autism-by-age.mdx +++ b/www/src/content/blog/en/early-signs-autism-by-age.mdx @@ -421,25 +421,3 @@ If you would like to talk through your observations with a local team, you can s } ]} /> - - Previous Post - -###### [Autism Evaluation in Arizona: A Parent's Step-by-Step Guide](autism-evaluation-diagnosis-arizona-parent-guide) - - Next Post - -###### [What to Expect at Your Child’s First Autism Evaluation](autism-evaluation-what-to-expect) - -### Similar Blog Posts - -![Parent and child meeting with a clinician in a calm, play-based autism evaluation setting](/assets/images/autism-evaluation-expectations_hero.png) - -#### [What to Expect at Your Child’s First Autism Evaluation](autism-evaluation-what-to-expect) - -![Pediatrician performing a toddler](/assets/images/autism_evaluation_arizona_hero.jpg) - -#### [Autism Evaluation in Arizona: A Parent's Step-by-Step Guide](autism-evaluation-diagnosis-arizona-parent-guide) - -![Ultimate Guide to Behavior Modification Techniques & Reinforcement Theory - hero image](/assets/images/hero-behavior-modification-techniques-reinforcement-theory_800x.jpg) - -#### [The Ultimate Guide to Behavior Modification Techniques & Reinforcement Theory](behavior-modification-techniques-reinforcement-theory) diff --git a/www/src/content/blog/en/emotional-regulation-aba.mdx b/www/src/content/blog/en/emotional-regulation-aba.mdx index 5c10033..e3f990e 100644 --- a/www/src/content/blog/en/emotional-regulation-aba.mdx +++ b/www/src/content/blog/en/emotional-regulation-aba.mdx @@ -237,25 +237,3 @@ Ready to take the next step? Visit our [ABA Therapy](../aba-therapy) page or sta } ]} /> - - Previous Post - -###### [Autism and Fall Break: How to Keep Routines Calm and Predictable](autism-fall-break-routine-tips-halloween-thanksgiving) - - Next Post - -###### [Heart Full of Gratitude](heart-full-of-gratitude) - -### Similar Blog Posts - -![Parent and autistic child using visual supports, structured play, and calm routines together](/assets/images/family-guide-to-autism-aba-at-home_hero.png) - -#### [Autism Guide for Parents and Caregivers](parents-guide-to-autism-and-aba) - -![hero image - executive functioning skills strategies for autistic children](/assets/images/hero-executive-functioning-skills-autism.webp) - -#### [Executive Functioning Skills and Autism](executive-functioning-skills-autism) - -![Parent and child meeting with a clinician in a calm, play-based autism evaluation setting](/assets/images/autism-evaluation-expectations_hero.png) - -#### [What to Expect at Your Child’s First Autism Evaluation](autism-evaluation-what-to-expect) diff --git a/www/src/content/blog/en/enhancing-generalization-skills.md b/www/src/content/blog/en/enhancing-generalization-skills.md index d5483c5..a3394d8 100644 --- a/www/src/content/blog/en/enhancing-generalization-skills.md +++ b/www/src/content/blog/en/enhancing-generalization-skills.md @@ -42,25 +42,3 @@ Understanding the three primary types of generalization—stimulus, response, an For more information on services offered by AIA, or to book your free consultation, visit us at [https://www.azinstitute4autism.com](../index), contact us at [(480) 687-7099](tel:+14806877099), or email [info@azinstitute4autism.com](mailto:info@azinstitute4autism.com). If you are looking for more tips, check our [monthly blog posts](../library) from AIA’s clinical director, Rula Diab! - - Previous Post - -###### [Navigating the Autism Journey: Understanding and Supporting Our Children with Autism](understanding-autism-support) - - Next Post - -###### [Arizona Institute for Autism Adopts an Integrated ABA Model](integrated-aba-model-announcement) - -### Similar Blog Posts - -![Repetitive Behaviors with Children Diagnosed with Autism - hero image](/assets/images/hero-repetetive-behaviors.webp) - -#### [Repetitive Behaviors with Children Diagnosed with Autism](repetitive-behavior) - -![Benefits of ABA Therapy for Children with Autism - hero image](/assets/images/hero-aba-therapy-benefits_800x.jpg) - -#### [The Benefits of ABA Therapy for Children with Autism](aba-therapy-benefits) - -![2024 new year reflection and planning for autism support and awareness - hero image](/assets/images/hero-new-year-goals-2024.webp) - -#### [New Year 2024: Holiday Tips for Autism Support & Awareness](new-year-2024-autism-holiday-tips) diff --git a/www/src/content/blog/en/executive-functioning-skills-autism.md b/www/src/content/blog/en/executive-functioning-skills-autism.md index 6a500e0..e46883b 100644 --- a/www/src/content/blog/en/executive-functioning-skills-autism.md +++ b/www/src/content/blog/en/executive-functioning-skills-autism.md @@ -122,25 +122,3 @@ Support Strategies: - Real-world problem-solving practice (e.g., managing group projects or conflicts) Building executive functioning skills in children with autism is a gradual and supportive process. With targeted strategies, visual supports, and consistent routines, children can develop greater independence, flexibility, and emotional resilience. - - Previous Post - -###### [Guide to Teaching Self‑Advocacy in ABA](autism-self-advocacy-skills-aba) - - Next Post - -###### [First/Then Cards: Empowering Transitions for Autistic Children](first-then-cards-autism-transitions) - -### Similar Blog Posts - -![rapport strategies for effective aba therapy - hero image](/assets/images/hero-rapport-strategies.webp) - -#### [Learn the Secrets to Effective Rapport Building in ABA Therapy](autism-therapy-rapport-strategies) - -![2024 new year reflection and planning for autism support and awareness - hero image](/assets/images/hero-new-year-goals-2024.webp) - -#### [New Year 2024: Holiday Tips for Autism Support & Awareness](new-year-2024-autism-holiday-tips) - -![sensory processing challenges in aba therapy - hero image](/assets/images/hero-sensory-processing.webp) - -#### [Understanding Sensory Processing in the Context of ABA Therapy](sensory-processing) diff --git a/www/src/content/blog/en/first-then-cards-autism-transitions.md b/www/src/content/blog/en/first-then-cards-autism-transitions.md index a524bbf..d4d14cc 100644 --- a/www/src/content/blog/en/first-then-cards-autism-transitions.md +++ b/www/src/content/blog/en/first-then-cards-autism-transitions.md @@ -108,25 +108,3 @@ Located in Scottsdale within Phoenix's East Valley, the Arizona Institute for Au - In-Home Therapy : Available in Tucson to provide support within your child's natural environment. - Upcoming AIA Gifted Shop : Soon, you'll be able to access a variety of visual support tools, including First/Then cards and PECS collections, through our online storefront. Stay tuned for updates. - - Previous Post - -###### [Executive Functioning Skills and Autism](executive-functioning-skills-autism) - - Next Post - -###### [How to Support ABA Therapy Over Summer Break](aba-therapy-summer-routine-tips) - -### Similar Blog Posts - -![sensory processing challenges in aba therapy - hero image](/assets/images/hero-sensory-processing.webp) - -#### [Understanding Sensory Processing in the Context of ABA Therapy](sensory-processing) - -![Learn About DTT and NET Methods for More Effective ABA Therapy - hero image](/assets/images/hero-learn-dtt-net-methods.webp) - -#### [Learn About DTT and NET Methods for More Effective ABA Therapy](aba-therapy-dtt-net-guide) - -![Benefits of Prompting & Parenting in ABA Therapy - hero image](/assets/images/hero-prompting-parenting-benefits.webp) - -#### [Benefits of Prompting & Parenting in ABA Therapy](aba-therapy-prompting-parenting-benefits) diff --git a/www/src/content/blog/en/heart-full-of-gratitude.md b/www/src/content/blog/en/heart-full-of-gratitude.md index 3ea77d4..b669ce5 100644 --- a/www/src/content/blog/en/heart-full-of-gratitude.md +++ b/www/src/content/blog/en/heart-full-of-gratitude.md @@ -54,25 +54,3 @@ AIA isn't just a workplace, it's a growing community built on love, patience, an Thank you, Rula Diab ![clinical director rula diab signature](/assets/images/clinical-director-rula-diab.png) - - Previous Post - -###### [Why Emotional Regulation Should Be the Heart of Every ABA Program](emotional-regulation-aba) - - Next Post - -###### [Why My Child Can Talk but Still Struggles Socially](social-pragmatic-communication-autism) - -### Similar Blog Posts - -![Integrity, Empowerment and Excellence: Arizona Institute for Autism expands to new office - hero image](/assets/images/hero-integrity-empowerment-excellence_800x.jpg) - -#### [Integrity, Empowerment and Excellence: Arizona Institute for Autism expands to new office](new-aia-scottsdale-office) - -![Meet Rula Diab | Board Certified Behavior Analyst (BCBA) - hero image](/assets/images/hero-meet-rula-diab-shoutout-az_800x.jpg) - -#### [Meet Rula Diab | Board Certified Behavior Analyst (BCBA)](meet-rula-diab-bcba) - -![Benefits of ABA Therapy for Children with Autism - hero image](/assets/images/hero-aba-therapy-benefits_800x.jpg) - -#### [The Benefits of ABA Therapy for Children with Autism](aba-therapy-benefits) diff --git a/www/src/content/blog/en/individualized-aba-therapy.md b/www/src/content/blog/en/individualized-aba-therapy.md index 2965545..1cf4644 100644 --- a/www/src/content/blog/en/individualized-aba-therapy.md +++ b/www/src/content/blog/en/individualized-aba-therapy.md @@ -30,25 +30,3 @@ Individuality in care and collaboration between the child's team helps in fasten To successfully individualize ABA therapy, collaboration is the key. ABA therapists, parents, educators, and other clinicians must work together as a team. Parents provide invaluable insights into their child's preferences, triggers, and daily routines, while clinicians bring their expertise in behavior analysis and intervention strategies. Individualized ABA is not just about addressing behaviors; it's about understanding the whole child and guiding them along their path in the way that best suits their needs. This teamwork ensures therapy is aligned with the child's unique journey, fostering skill acquisition, engagement, and overall well-being. - - Previous Post - -###### [Master Proactive & Reactive ABA Techniques – Schedule a Consultation](proactive-reactive-aba-strategies-guide) - - Next Post - -###### [Discover Self‑Care Hacks for Parents of Children with Autism](autism-family-self-care-tips) - -### Similar Blog Posts - -![meet rula diab of aia - hero image](/assets/images/hero-community-highlight-meet-rula-diab_800x.jpg) - -#### [Community Highlights: Meet Rula Diab of Arizona Institute for Autism](community-highlight-meet-rula-diab) - -![autism self-advocacy skills through aba - hero image](/assets/images/hero-teach-self-advocacy.webp) - -#### [Guide to Teaching Self‑Advocacy in ABA](autism-self-advocacy-skills-aba) - -![Integrity, Empowerment and Excellence: Arizona Institute for Autism expands to new office - hero image](/assets/images/hero-integrity-empowerment-excellence_800x.jpg) - -#### [Integrity, Empowerment and Excellence: Arizona Institute for Autism expands to new office](new-aia-scottsdale-office) diff --git a/www/src/content/blog/en/integrated-aba-model-announcement.md b/www/src/content/blog/en/integrated-aba-model-announcement.md index 937858b..c3bb2a3 100644 --- a/www/src/content/blog/en/integrated-aba-model-announcement.md +++ b/www/src/content/blog/en/integrated-aba-model-announcement.md @@ -26,25 +26,3 @@ Our approach focuses on teaching children to apply the skills they acquire durin At the Arizona Institute for Autism, we are committed to empowering children with autism, maximizing their potential for growth and development, and paving the way for a brighter future filled with endless possibilities. For more information on services offered by AIA or to book your free consultation, visit [https://www.azinstitute4autism.com](../index), call us at [(480) 687-7099](tel:+14806877099), or email [info@azinstitute4autism.com](mailto:info@azinstitute4autism.com). If you are looking for more tips, check out monthly [blog posts](../library) from AIA's clinical director, Rula Diab! - - Previous Post - -###### [Enhancing Generalization for Broader Impact in Autism](enhancing-generalization-skills) - - Next Post - -###### [Repetitive Behaviors with Children Diagnosed with Autism](repetitive-behavior) - -### Similar Blog Posts - -![Repetitive Behaviors with Children Diagnosed with Autism - hero image](/assets/images/hero-repetetive-behaviors.webp) - -#### [Repetitive Behaviors with Children Diagnosed with Autism](repetitive-behavior) - -![enhancing generalization skills in children with autism - hero image](/assets/images/hero-enhancing-generalization-skills_800x.jpg) - -#### [Enhancing Generalization for Broader Impact in Autism](enhancing-generalization-skills) - -![asd sensory-friendly pancake recipe - hero image](/assets/images/hero-asd-sensory-friendly-recipe-pancakes_800x.jpg) - -#### [ASD Sensory-Friendly Recipes: Pancakes](asd-sensory-friendly-recipes-pancakes) diff --git a/www/src/content/blog/en/managing-aggressive-behavior-outbursts.md b/www/src/content/blog/en/managing-aggressive-behavior-outbursts.md index 0e2f6a1..71a1dcc 100644 --- a/www/src/content/blog/en/managing-aggressive-behavior-outbursts.md +++ b/www/src/content/blog/en/managing-aggressive-behavior-outbursts.md @@ -34,25 +34,3 @@ The best strategy for parents to manage aggressive behavior outburst are the fol - Use less verbal interaction and use more visuals to help to de-escalate the challenging behavior. For more information on how to manage aggressive behavior and proper communication, connect with us by sending your messages and questions to hello@azinsitute4autism.com or contact us directly at www.azinstitute4autism.com/contactus. - - Previous Post - -###### [Play and Leisure Skills for Children with Autism](play-leisure-skills) - - Next Post - -###### [November AIA Update](november-2022-aia-update) - -### Similar Blog Posts - -![Critical Thinking Skills for Children with Autism - hero image](/assets/images/hero-critical-thinking-skills_800x.jpg) - -#### [Critical Thinking Skills for Children with Autism](critical-thinking-skills) - -![proactive reactive aba strategies guide - hero image](/assets/images/hero-proactive-reactive-strategies.webp) - -#### [Master Proactive & Reactive ABA Techniques – Schedule a Consultation](proactive-reactive-aba-strategies-guide) - -![New Year Goals for Our Children with Autism - hero image](/assets/images/hero-new-year-goals-2023_800x.jpg) - -#### [New Year Goals for Our Children with Autism](new-year-goals-2023) diff --git a/www/src/content/blog/en/meet-rula-diab-bcba.md b/www/src/content/blog/en/meet-rula-diab-bcba.md index 4fafa2d..1be28a7 100644 --- a/www/src/content/blog/en/meet-rula-diab-bcba.md +++ b/www/src/content/blog/en/meet-rula-diab-bcba.md @@ -32,25 +32,3 @@ Overall, our dedication to providing high-quality, culturally competent care hel ## If you had a friend visiting you, what are some of the local spots you’d want to take them around to? Scottsdale is a beautiful city with many interesting places to explore. Downtown Scottsdale/Old Town is a great destination to visit due to its rich history, art galleries, boutiques, and restaurants. As someone who loves nature and flowers, I will recommend visiting the Desert Botanical Garden, which showcases a wide range of native plant species and provides stunning views of the desert landscapes at sunset. If we have time for a day trip, I will suggest visiting Sedona, a picturesque town famous for its red rock formations and spiritual energy. If the weather permits, hiking in the beautiful Red Rock State Park would be a great way to experience the natural beauty of the area. - - Previous Post - -###### [The Benefits of ABA Therapy for Children with Autism](aba-therapy-benefits) - - Next Post - -###### [Integrity, Empowerment and Excellence: Arizona Institute for Autism expands to new office](new-aia-scottsdale-office) - -### Similar Blog Posts - -![meet rula diab of aia - hero image](/assets/images/hero-community-highlight-meet-rula-diab_800x.jpg) - -#### [Community Highlights: Meet Rula Diab of Arizona Institute for Autism](community-highlight-meet-rula-diab) - -![Repetitive Behaviors with Children Diagnosed with Autism - hero image](/assets/images/hero-repetetive-behaviors.webp) - -#### [Repetitive Behaviors with Children Diagnosed with Autism](repetitive-behavior) - -![autism self-advocacy skills through aba - hero image](/assets/images/hero-teach-self-advocacy.webp) - -#### [Guide to Teaching Self‑Advocacy in ABA](autism-self-advocacy-skills-aba) diff --git a/www/src/content/blog/en/new-aia-scottsdale-office.md b/www/src/content/blog/en/new-aia-scottsdale-office.md index b430038..3f2242a 100644 --- a/www/src/content/blog/en/new-aia-scottsdale-office.md +++ b/www/src/content/blog/en/new-aia-scottsdale-office.md @@ -58,25 +58,3 @@ But nothing makes her and her staff happier than seeing a lasting impact made on “Having everyone on the team — whether it's a family clinician or our caregivers — on the same page to help to support them so that at the end we can see that they are able to be independent in their life, it's very sweet. “I think we are very lucky to work with our learners at AIA.” - - Previous Post - -###### [Meet Rula Diab | Board Certified Behavior Analyst (BCBA)](meet-rula-diab-bcba) - - Next Post - -###### [Community Highlights: Meet Rula Diab of Arizona Institute for Autism](community-highlight-meet-rula-diab) - -### Similar Blog Posts - -![autism self-advocacy skills through aba - hero image](/assets/images/hero-teach-self-advocacy.webp) - -#### [Guide to Teaching Self‑Advocacy in ABA](autism-self-advocacy-skills-aba) - -![individualized aba therapy - hero image](/assets/images/hero-aba-individual-care-plans.webp) - -#### [Individualized Care Plans in ABA Therapy](individualized-aba-therapy) - -![Benefits of ABA Therapy for Children with Autism - hero image](/assets/images/hero-aba-therapy-benefits_800x.jpg) - -#### [The Benefits of ABA Therapy for Children with Autism](aba-therapy-benefits) diff --git a/www/src/content/blog/en/new-year-2024-autism-holiday-tips.md b/www/src/content/blog/en/new-year-2024-autism-holiday-tips.md index 1c66448..2e126fa 100644 --- a/www/src/content/blog/en/new-year-2024-autism-holiday-tips.md +++ b/www/src/content/blog/en/new-year-2024-autism-holiday-tips.md @@ -26,25 +26,3 @@ The start of a new year is often associated with feelings of joy and optimism. I The New Year symbolizes growth and development, and that applies to children with autism as well. Take this time to reflect, plan, and prioritize the well-being of both the child receiving therapy and their caregivers. For more information about ABA therapy services offered by AIA or to book your free consultation, visit our Arizona Institute for Autism website at [www.azinstitute4autism.com](../index), call [(480) 687-7099](tel:+14806877099), or email [info@azinstitute4autism.com](mailto:info@azinstitute4autism.com). If you are looking for more applied behavioral analysis and ASD diagnosis and treatment tips, check out more [blog posts](../library) from AIA’s clinical director, Rula Diab! - - Previous Post - -###### [Guide: Simple ABA Techniques for Toilet Training Children with Autism](aba-toilet-training-child-autism) - - Next Post - -###### [Understanding Sensory Processing in the Context of ABA Therapy](sensory-processing) - -### Similar Blog Posts - -![Benefits of ABA Therapy for Children with Autism - hero image](/assets/images/hero-aba-therapy-benefits_800x.jpg) - -#### [The Benefits of ABA Therapy for Children with Autism](aba-therapy-benefits) - -![potty train children with autism using simple aba techniques - hero image](/assets/images/hero-aba-toilet-training-child-autism.webp) - -#### [Guide: Simple ABA Techniques for Toilet Training Children with Autism](aba-toilet-training-child-autism) - -![enhancing generalization skills in children with autism - hero image](/assets/images/hero-enhancing-generalization-skills_800x.jpg) - -#### [Enhancing Generalization for Broader Impact in Autism](enhancing-generalization-skills) diff --git a/www/src/content/blog/en/new-year-goals-2023.md b/www/src/content/blog/en/new-year-goals-2023.md index d832643..5eb6619 100644 --- a/www/src/content/blog/en/new-year-goals-2023.md +++ b/www/src/content/blog/en/new-year-goals-2023.md @@ -18,25 +18,3 @@ The New Year can be challenging for children with Autism and may lead to distres To decrease stress as much as possible during the holiday time, it is important to provide your child with visual Support (i.e., visual schedules) for the purpose of preparing your child to manage changes in schedule and minimize disruption and triggers. Additionally, social stories can be great visual support to clarify activities and events during the holidays along with using a reinforcer system (i.e., Token System) to handle behaviors before it happens. For more information on how to manage aggressive behavior and proper communication, connect with us by sending your messages and questions to [hello@azinsitute4autism.com](mailto:hello@azinsitute4autism.com) or contact us directly from our contact page. - - Previous Post - -###### [Critical Thinking Skills for Children with Autism](critical-thinking-skills) - - Next Post - -###### [AIA’s World Autism Community Day of Celebration](aia-world-autism-community-day-celebration) - -### Similar Blog Posts - -![Master Behavior Management: Discover the Four Functions of Behavior - hero image](/assets/images/hero-behavior-functions-management.webp) - -#### [Master Behavior Management: Discover the Four Functions of Behavior](behavior-management-functions-guide) - -![Ultimate Guide to Behavior Modification Techniques & Reinforcement Theory - hero image](/assets/images/hero-behavior-modification-techniques-reinforcement-theory_800x.jpg) - -#### [The Ultimate Guide to Behavior Modification Techniques & Reinforcement Theory](behavior-modification-techniques-reinforcement-theory) - -![rapport strategies for effective aba therapy - hero image](/assets/images/hero-rapport-strategies.webp) - -#### [Learn the Secrets to Effective Rapport Building in ABA Therapy](autism-therapy-rapport-strategies) diff --git a/www/src/content/blog/en/november-2022-aia-update.md b/www/src/content/blog/en/november-2022-aia-update.md index 79d46e1..aec076b 100644 --- a/www/src/content/blog/en/november-2022-aia-update.md +++ b/www/src/content/blog/en/november-2022-aia-update.md @@ -24,25 +24,3 @@ AIA Give Thanks to the Latest AIA Achievements - AIA will have a Parent Advisory Committee for the 2023-2024 year. Applications are now open and available HERE. Thank you for your continued collaboration as we continue to grow, serve and support our Learners in the pursuit of their individual potential. - - Previous Post - -###### [Managing Aggressive Behavior Outbursts and Proper Communication with Your Child During those Moments](managing-aggressive-behavior-outbursts) - - Next Post - -###### [Critical Thinking Skills for Children with Autism](critical-thinking-skills) - -### Similar Blog Posts - -![reduce behavior management - hero image](/assets/images/hero-reduce-behavior-management_800x.jpg) - -#### [4 Ways on How to Reduce Behavior Management](reduce-behavior-management) - -![Benefits of ABA Therapy for Children with Autism - hero image](/assets/images/hero-aba-therapy-benefits_800x.jpg) - -#### [The Benefits of ABA Therapy for Children with Autism](aba-therapy-benefits) - -![teaching academic, social, communications, and independence skills](/assets/images/hero-aba-preschool-az_800x.jpg) - -#### [Now Enrolling: AIA Preparatory Academy for Children Ages 2–6](aba-school-readiness-arizona) diff --git a/www/src/content/blog/en/parents-guide-to-autism-and-aba.mdx b/www/src/content/blog/en/parents-guide-to-autism-and-aba.mdx index 07061ec..dee62d9 100644 --- a/www/src/content/blog/en/parents-guide-to-autism-and-aba.mdx +++ b/www/src/content/blog/en/parents-guide-to-autism-and-aba.mdx @@ -236,21 +236,3 @@ Self-care does not have to be elaborate. It may mean lowering one unrealistic ex Supporting a child with autism is not about finding one perfect strategy. It is about learning how your child communicates, what helps them regulate, and how to build success into ordinary moments. Start with what matters most in your family right now, then build from there. If you want help thinking through assessment, therapy options, or next steps, AIA’s [Client Consultation Form](../client-consultation) is the clearest next step. - - Previous Post - -###### [Building Communication & Social Skills in Autistic Children: A Practical Guide for Families](communication-social-skills-autistic-children-guide) - -### Similar Blog Posts - -![teaching academic, social, communications, and independence skills](/assets/images/hero-aba-preschool-az_800x.jpg) - -#### [Now Enrolling: AIA Preparatory Academy for Children Ages 2–6](aba-school-readiness-arizona) - -![child taking emotional regulation timeout in shopping cart - hero](/assets/images/child-shopping-cart-tired-cranky.jpg) - -#### [Why Emotional Regulation Should Be the Heart of Every ABA Program](emotional-regulation-aba) - -![Parent and child meeting with a clinician in a calm, play-based autism evaluation setting](/assets/images/autism-evaluation-expectations_hero.png) - -#### [What to Expect at Your Child’s First Autism Evaluation](autism-evaluation-what-to-expect) diff --git a/www/src/content/blog/en/play-leisure-skills.mdx b/www/src/content/blog/en/play-leisure-skills.mdx index b597530..022c66f 100644 --- a/www/src/content/blog/en/play-leisure-skills.mdx +++ b/www/src/content/blog/en/play-leisure-skills.mdx @@ -200,25 +200,3 @@ Autism play does not need to look one specific way to be valuable. When children } ]} /> - - Previous Post - -###### [4 Ways on How to Reduce Behavior Management](reduce-behavior-management) - - Next Post - -###### [Managing Aggressive Behavior Outbursts and Proper Communication with Your Child During those Moments](managing-aggressive-behavior-outbursts) - -### Similar Blog Posts - -![Three children engaging happily in parallel play on a colorful rug.](/assets/images/parallel-players-hero.png) - -#### [Supporting Friendships and Social Play for Children with Autism](autism-friendships-social-play-support) - -![A parent and an autistic child smiling while using a picture communication board during playtime.](/assets/images/communication-skills-autistic-children-hero_img.png) - -#### [Building Communication & Social Skills in Autistic Children: A Practical Guide for Families](communication-social-skills-autistic-children-guide) - -![New Year Goals for Our Children with Autism - hero image](/assets/images/hero-new-year-goals-2023_800x.jpg) - -#### [New Year Goals for Our Children with Autism](new-year-goals-2023) diff --git a/www/src/content/blog/en/positive-reinforcement-techniques.md b/www/src/content/blog/en/positive-reinforcement-techniques.md index 0a3f73e..d8f3725 100644 --- a/www/src/content/blog/en/positive-reinforcement-techniques.md +++ b/www/src/content/blog/en/positive-reinforcement-techniques.md @@ -266,25 +266,3 @@ If you're not seeing progress: Positive reinforcement in ABA is more than a technique; it's a way to build lasting motivation, emotional regulation, and independence in children with autism. By defining clear behaviors, choosing meaningful rewards, and delivering reinforcement promptly and consistently, you'll create a supportive learning environment at home and beyond. For personalized guidance and ABA support, reach out to the Arizona Institute for Autism and schedule your free consultation today. Let's celebrate every success together! - - Previous Post - -###### [How to Support ABA Therapy Over Summer Break](aba-therapy-summer-routine-tips) - - Next Post - -###### [Now Enrolling: AIA Preparatory Academy for Children Ages 2–6](aba-school-readiness-arizona) - -### Similar Blog Posts - -![Benefits of Prompting & Parenting in ABA Therapy - hero image](/assets/images/hero-prompting-parenting-benefits.webp) - -#### [Benefits of Prompting & Parenting in ABA Therapy](aba-therapy-prompting-parenting-benefits) - -![Learn About DTT and NET Methods for More Effective ABA Therapy - hero image](/assets/images/hero-learn-dtt-net-methods.webp) - -#### [Learn About DTT and NET Methods for More Effective ABA Therapy](aba-therapy-dtt-net-guide) - -![rapport strategies for effective aba therapy - hero image](/assets/images/hero-rapport-strategies.webp) - -#### [Learn the Secrets to Effective Rapport Building in ABA Therapy](autism-therapy-rapport-strategies) diff --git a/www/src/content/blog/en/proactive-reactive-aba-strategies-guide.md b/www/src/content/blog/en/proactive-reactive-aba-strategies-guide.md index 2e5a3eb..f9e648e 100644 --- a/www/src/content/blog/en/proactive-reactive-aba-strategies-guide.md +++ b/www/src/content/blog/en/proactive-reactive-aba-strategies-guide.md @@ -52,25 +52,3 @@ By focusing on prevention and skill acquisition, proactive strategies empower in Both [proactive and reactive strategies](https://www.ncbi.nlm.nih.gov/pmc/articles/PMC7473487/) play crucial roles in ABA therapy. Proactive strategies help create an environment where positive behaviors are encouraged and challenging behaviors are less likely to occur, while reactive strategies provide a framework for addressing behaviors when they do arise. At the Arizona Institute for Autism, we are committed to implementing these strategies effectively to support the individuals we work with. - - Previous Post - -###### [Ease Back-to-School Time | ABA Antecedent & Consequence Interventions](aba-school-readiness-guide) - - Next Post - -###### [Individualized Care Plans in ABA Therapy](individualized-aba-therapy) - -### Similar Blog Posts - -![teaching academic, social, communications, and independence skills](/assets/images/hero-aba-preschool-az_800x.jpg) - -#### [Now Enrolling: AIA Preparatory Academy for Children Ages 2–6](aba-school-readiness-arizona) - -![Benefits of Prompting & Parenting in ABA Therapy - hero image](/assets/images/hero-prompting-parenting-benefits.webp) - -#### [Benefits of Prompting & Parenting in ABA Therapy](aba-therapy-prompting-parenting-benefits) - -![hero image - executive functioning skills strategies for autistic children](/assets/images/hero-executive-functioning-skills-autism.webp) - -#### [Executive Functioning Skills and Autism](executive-functioning-skills-autism) diff --git a/www/src/content/blog/en/reduce-behavior-management.md b/www/src/content/blog/en/reduce-behavior-management.md index 843d385..1f29ca0 100644 --- a/www/src/content/blog/en/reduce-behavior-management.md +++ b/www/src/content/blog/en/reduce-behavior-management.md @@ -24,21 +24,3 @@ Children can get overwhelmed, frustrated, and sensory overloaded at any time bec - Allow your child to make a choice in the type of the activity or task presented (e.g., “Do you want to read a book about a cat or a book about a dog?”) or the place to engage in the activity (e.g. “Do you like to play with Lego inside or outside”). For more information on how to reduce behavior management, schedule a consultation with us today at [(480) 687-7099](tel:+14806877099) or reach out via our [contact form](../contact). - - Next Post - -###### [Play and Leisure Skills for Children with Autism](play-leisure-skills) - -### Similar Blog Posts - -![asd sensory-friendly pancake recipe - hero image](/assets/images/hero-asd-sensory-friendly-recipe-pancakes_800x.jpg) - -#### [ASD Sensory-Friendly Recipes: Pancakes](asd-sensory-friendly-recipes-pancakes) - -![New Year Goals for Our Children with Autism - hero image](/assets/images/hero-new-year-goals-2023_800x.jpg) - -#### [New Year Goals for Our Children with Autism](new-year-goals-2023) - -![potty train children with autism using simple aba techniques - hero image](/assets/images/hero-aba-toilet-training-child-autism.webp) - -#### [Guide: Simple ABA Techniques for Toilet Training Children with Autism](aba-toilet-training-child-autism) diff --git a/www/src/content/blog/en/repetitive-behavior.md b/www/src/content/blog/en/repetitive-behavior.md index 51f7190..2d32247 100644 --- a/www/src/content/blog/en/repetitive-behavior.md +++ b/www/src/content/blog/en/repetitive-behavior.md @@ -20,25 +20,3 @@ As each child is unique and often requires tailored support, it's essential to c ## Looking for more information? For more information on services offered by AIA or to book your free consultation, visit us at [https://www.azinstitute4autism.com](../index), contact us at [(480) 687-7099](tel:+14806877099), or email [info@azinstitute4autism.com](mailto:info@azinstitute4autism.com). If you are looking for more tips, check out monthly [blog posts](../library) from AIA’s clinical director, Rula Diab! - - Previous Post - -###### [Arizona Institute for Autism Adopts an Integrated ABA Model](integrated-aba-model-announcement) - - Next Post - -###### [ASD Sensory-Friendly Recipes: Pancakes](asd-sensory-friendly-recipes-pancakes) - -### Similar Blog Posts - -![Benefits of ABA Therapy for Children with Autism - hero image](/assets/images/hero-aba-therapy-benefits_800x.jpg) - -#### [The Benefits of ABA Therapy for Children with Autism](aba-therapy-benefits) - -![potty train children with autism using simple aba techniques - hero image](/assets/images/hero-aba-toilet-training-child-autism.webp) - -#### [Guide: Simple ABA Techniques for Toilet Training Children with Autism](aba-toilet-training-child-autism) - -![enhancing generalization skills in children with autism - hero image](/assets/images/hero-enhancing-generalization-skills_800x.jpg) - -#### [Enhancing Generalization for Broader Impact in Autism](enhancing-generalization-skills) diff --git a/www/src/content/blog/en/sensory-processing.md b/www/src/content/blog/en/sensory-processing.md index 82c952c..018a256 100644 --- a/www/src/content/blog/en/sensory-processing.md +++ b/www/src/content/blog/en/sensory-processing.md @@ -20,25 +20,3 @@ Many individuals with Autism Spectrum Disorder (ASD) may face challenges with se [Sensory Integration Techniques :](https://www.healthychildren.org/English/health-issues/conditions/developmental-disabilities/Pages/Sensory-Integration-Therapy.aspx#:~:text=Therapy%20sessions%20are%20play%2Doriented,to%20calm%20an%20anxious%20child.) Understanding the connection between sensory challenges and specific behaviors allows ABA therapy to customize interventions to alleviate discomfort and enhance responses to sensory experiences. Considering sensory processing in ABA therapy not only improves intervention effectiveness but also takes a more comprehensive approach to behavior and learning. ABA therapists often focus on modifying the environment to facilitate learning, leading to positive behavioral changes. This understanding of sensory processing informs these modifications, including identifying and avoiding triggers, reducing sensory overload, and introducing sensory aids to help the child feel more comfortable and focused. Incorporating an understanding of sensory processing in ABA therapy not only improves intervention effectiveness but also promotes a more comprehensive approach to behavior and learning. This integration significantly contributes to the overall well-being of individuals receiving therapy. - - Previous Post - -###### [New Year 2024: Holiday Tips for Autism Support & Awareness](new-year-2024-autism-holiday-tips) - - Next Post - -###### [Learn About DTT and NET Methods for More Effective ABA Therapy](aba-therapy-dtt-net-guide) - -### Similar Blog Posts - -![Benefits of Prompting & Parenting in ABA Therapy - hero image](/assets/images/hero-prompting-parenting-benefits.webp) - -#### [Benefits of Prompting & Parenting in ABA Therapy](aba-therapy-prompting-parenting-benefits) - -![rapport strategies for effective aba therapy - hero image](/assets/images/hero-rapport-strategies.webp) - -#### [Learn the Secrets to Effective Rapport Building in ABA Therapy](autism-therapy-rapport-strategies) - -![aba therapy positive reinforcement](/assets/images/hero-positive-reinforcement-techniques.webp) - -#### [Positive Reinforcement in ABA Therapy to Encourage Skill Development](positive-reinforcement-techniques) diff --git a/www/src/content/blog/en/social-pragmatic-communication-autism.mdx b/www/src/content/blog/en/social-pragmatic-communication-autism.mdx index 594e167..fdc6617 100644 --- a/www/src/content/blog/en/social-pragmatic-communication-autism.mdx +++ b/www/src/content/blog/en/social-pragmatic-communication-autism.mdx @@ -187,25 +187,3 @@ If your child wants friends but keeps hitting the same hurdles, structured teach } ]} /> - - Previous Post - -###### [Heart Full of Gratitude](heart-full-of-gratitude) - - Next Post - -###### [Autism Evaluation in Arizona: A Parent's Step-by-Step Guide](autism-evaluation-diagnosis-arizona-parent-guide) - -### Similar Blog Posts - -![hero image - executive functioning skills strategies for autistic children](/assets/images/hero-executive-functioning-skills-autism.webp) - -#### [Executive Functioning Skills and Autism](executive-functioning-skills-autism) - -![Parent and child meeting with a clinician in a calm, play-based autism evaluation setting](/assets/images/autism-evaluation-expectations_hero.png) - -#### [What to Expect at Your Child’s First Autism Evaluation](autism-evaluation-what-to-expect) - -![A parent and an autistic child smiling while using a picture communication board during playtime.](/assets/images/communication-skills-autistic-children-hero_img.png) - -#### [Building Communication & Social Skills in Autistic Children: A Practical Guide for Families](communication-social-skills-autistic-children-guide) diff --git a/www/src/content/blog/en/understanding-autism-support.md b/www/src/content/blog/en/understanding-autism-support.md index 46b7237..d657886 100644 --- a/www/src/content/blog/en/understanding-autism-support.md +++ b/www/src/content/blog/en/understanding-autism-support.md @@ -44,25 +44,3 @@ Remember, each child with autism is unique. By educating yourself, seeking suppo For more information on services offered by AIA or to book your free consultation, visit us at [https://www.azinstitute4autism.com](../index), call us at [(480) 687-7099](tel:+14806877099), or email [hello@azinstitute4autism.com](mailto:hello@azinstitute4autism.com). If you are looking for more tips, check out [monthly blog posts](../library) from AIA’s clinical director, Rula Diab! - - Previous Post - -###### [The Ultimate Guide to Behavior Modification Techniques & Reinforcement Theory](behavior-modification-techniques-reinforcement-theory) - - Next Post - -###### [Enhancing Generalization for Broader Impact in Autism](enhancing-generalization-skills) - -### Similar Blog Posts - -![Benefits of ABA Therapy for Children with Autism - hero image](/assets/images/hero-aba-therapy-benefits_800x.jpg) - -#### [The Benefits of ABA Therapy for Children with Autism](aba-therapy-benefits) - -![2024 new year reflection and planning for autism support and awareness - hero image](/assets/images/hero-new-year-goals-2024.webp) - -#### [New Year 2024: Holiday Tips for Autism Support & Awareness](new-year-2024-autism-holiday-tips) - -![Repetitive Behaviors with Children Diagnosed with Autism - hero image](/assets/images/hero-repetetive-behaviors.webp) - -#### [Repetitive Behaviors with Children Diagnosed with Autism](repetitive-behavior) diff --git a/www/src/content/blog/es/aba-school-readiness-arizona.mdx b/www/src/content/blog/es/aba-school-readiness-arizona.mdx index bb00b30..dfaa245 100644 --- a/www/src/content/blog/es/aba-school-readiness-arizona.mdx +++ b/www/src/content/blog/es/aba-school-readiness-arizona.mdx @@ -161,21 +161,3 @@ Si su hijo tiene entre 2 y 6 años y podría beneficiarse de un programa que int } ]} /> - - Next Post - -###### [Por qué la regulación emocional debería ser el corazón de cada programa de ABA](emotional-regulation-aba) - -### Similar Blog Posts - -![Pediatra realizando una evaluación de autismo a un niño pequeño en una clínica de Arizona](/assets/images/autism_evaluation_arizona_hero.jpg) - -#### [Evaluación del Autismo en Arizona: Guía Paso a Paso para Padres](autism-evaluation-diagnosis-arizona-parent-guide) - -![niño que habla tiene problemas para socializar - imagen principal](/assets/images/talk-not-social.jpg) - -#### [Por qué mi hijo puede hablar pero aún tiene dificultades sociales](social-pragmatic-communication-autism) - -![Reunión entre padres e hijos con un clínico en un entorno de evaluación del autismo tranquilo y basado en el juego.](/assets/images/autism-evaluation-expectations_hero.png) - -#### [Qué esperar en la primera evaluación de autismo de su hijo](autism-evaluation-what-to-expect) diff --git a/www/src/content/blog/es/autism-evaluation-diagnosis-arizona-parent-guide.mdx b/www/src/content/blog/es/autism-evaluation-diagnosis-arizona-parent-guide.mdx index c596386..315ef33 100644 --- a/www/src/content/blog/es/autism-evaluation-diagnosis-arizona-parent-guide.mdx +++ b/www/src/content/blog/es/autism-evaluation-diagnosis-arizona-parent-guide.mdx @@ -252,25 +252,3 @@ Entradas cortas en el diario como "no miró cuando llamaron su nombre" o "lloró } ]} /> - - Previous Post - -###### [Por qué mi hijo puede hablar pero aún tiene dificultades sociales](social-pragmatic-communication-autism) - - Next Post - -###### [Descubre consejos para el autocuidado de padres de niños con autismo](autism-family-self-care-tips) - -### Similar Blog Posts - -![Reunión entre padres e hijos con un clínico en un entorno de evaluación del autismo tranquilo y basado en el juego.](/assets/images/autism-evaluation-expectations_hero.png) - -#### [Qué esperar en la primera evaluación de autismo de su hijo](autism-evaluation-what-to-expect) - -![Consejos de autocuidado para familias con autismo - imagen destacada](/assets/images/hero-self-care-priority.webp) - -#### [Descubre consejos para el autocuidado de padres de niños con autismo](autism-family-self-care-tips) - -![niño que habla tiene problemas para socializar - imagen principal](/assets/images/talk-not-social.jpg) - -#### [Por qué mi hijo puede hablar pero aún tiene dificultades sociales](social-pragmatic-communication-autism) diff --git a/www/src/content/blog/es/autism-evaluation-what-to-expect.mdx b/www/src/content/blog/es/autism-evaluation-what-to-expect.mdx index 8e2dcb8..bcb0739 100644 --- a/www/src/content/blog/es/autism-evaluation-what-to-expect.mdx +++ b/www/src/content/blog/es/autism-evaluation-what-to-expect.mdx @@ -182,25 +182,3 @@ Después de una evaluación, las familias a menudo desean ayuda para convertir l } ]} /> - - Previous Post - -###### [Guía de Autismo para Padres y Cuidadores](parents-guide-to-autism-and-aba) - - Next Post - -###### [Mejorando la generalización para un impacto más amplio en el autismo](enhancing-generalization-skills) - -### Similar Blog Posts - -![Pediatra realizando una evaluación de autismo a un niño pequeño en una clínica de Arizona](/assets/images/autism_evaluation_arizona_hero.jpg) - -#### [Evaluación del Autismo en Arizona: Guía Paso a Paso para Padres](autism-evaluation-diagnosis-arizona-parent-guide) - -![Niño tomando una pausa de regulación emocional en un carrito de compras - imagen principal](/assets/images/child-shopping-cart-tired-cranky.jpg) - -#### [Por qué la regulación emocional debería ser el corazón de cada programa de ABA](emotional-regulation-aba) - -![Parent and autistic child using visual supports, structured play, and calm routines together](/assets/images/family-guide-to-autism-aba-at-home_hero.png) - -#### [Guía de Autismo para Padres y Cuidadores](parents-guide-to-autism-and-aba) diff --git a/www/src/content/blog/es/autism-family-self-care-tips.md b/www/src/content/blog/es/autism-family-self-care-tips.md index 00dfcfb..2d4ef4d 100644 --- a/www/src/content/blog/es/autism-family-self-care-tips.md +++ b/www/src/content/blog/es/autism-family-self-care-tips.md @@ -40,25 +40,3 @@ El [autocuidado](https://www.autismparentingmagazine.com/ways-reducing-stress-ga En el [Instituto de Autismo de Arizona](../../index), entendemos que cuidar a un niño con autismo es un viaje que requiere equilibrio. Creemos que el bienestar de los padres de niños con autismo es tan importante como las terapias que brindamos a los niños. Eres el mayor defensor de tu hijo y la fuente de apoyo más constante. Para seguir siendo ese pilar de fortaleza, es esencial priorizar tu salud, felicidad y paz mental. Estamos aquí para apoyar, no solo el desarrollo de su hijo, sino también su viaje como padres durante las sesiones de consulta para padres. Si alguna vez te sientes abrumado, debes saber que no estás solo. Apóyate en tu red de apoyo, practica el autocuidado y tómalo un día a la vez. - - Previous Post - -###### [Evaluación del Autismo en Arizona: Guía Paso a Paso para Padres](autism-evaluation-diagnosis-arizona-parent-guide) - - Next Post - -###### [Tarjetas Primero/Después : Empoderando las transiciones para niños autistas](first-then-cards-autism-transitions) - -### Similar Blog Posts - -![Reunión entre padres e hijos con un clínico en un entorno de evaluación del autismo tranquilo y basado en el juego.](/assets/images/autism-evaluation-expectations_hero.png) - -#### [Qué esperar en la primera evaluación de autismo de su hijo](autism-evaluation-what-to-expect) - -![Pediatra realizando una evaluación de autismo a un niño pequeño en una clínica de Arizona](/assets/images/autism_evaluation_arizona_hero.jpg) - -#### [Evaluación del Autismo en Arizona: Guía Paso a Paso para Padres](autism-evaluation-diagnosis-arizona-parent-guide) - -![Parent and autistic child using visual supports, structured play, and calm routines together](/assets/images/family-guide-to-autism-aba-at-home_hero.png) - -#### [Guía de Autismo para Padres y Cuidadores](parents-guide-to-autism-and-aba) diff --git a/www/src/content/blog/es/autism-self-advocacy-skills-aba.md b/www/src/content/blog/es/autism-self-advocacy-skills-aba.md index 149183e..7043d68 100644 --- a/www/src/content/blog/es/autism-self-advocacy-skills-aba.md +++ b/www/src/content/blog/es/autism-self-advocacy-skills-aba.md @@ -70,25 +70,3 @@ Los padres desempeñan un papel fundamental en el refuerzo de las habilidades de - Defensa del modelo : Demuestre cómo aboga por sus propias necesidades, proporcionando un ejemplo del mundo real. Enseñar la autodefensa a través del análisis de comportamiento aplicado (ABA) empodera a los niños para que se hagan cargo de sus necesidades, preferencias y elecciones. Al fomentar la independencia y mejorar las habilidades de comunicación, el análisis de comportamiento aplicado (ABA) ayuda a los niños a desenvolverse en sus entornos con confianza y dignidad. Ya sea en sesiones de terapia o en casa, la autodefensa es un regalo que equipa a los niños para el éxito de por vida. - - Previous Post - -###### [Tarjetas Primero/Después : Empoderando las transiciones para niños autistas](first-then-cards-autism-transitions) - - Next Post - -###### [Habilidades de funcionamiento ejecutivo y autismo](executive-functioning-skills-autism) - -### Similar Blog Posts - -![Consejos de autocuidado para familias con autismo - imagen destacada](/assets/images/hero-self-care-priority.webp) - -#### [Descubre consejos para el autocuidado de padres de niños con autismo](autism-family-self-care-tips) - -![estrategias para el desarrollo de habilidades de funcionamiento ejecutivo en niños autistas - imagen destacada](/assets/images/hero-executive-functioning-skills-autism.webp) - -#### [Habilidades de funcionamiento ejecutivo y autismo](executive-functioning-skills-autism) - -![Reunión entre padres e hijos con un clínico en un entorno de evaluación del autismo tranquilo y basado en el juego.](/assets/images/autism-evaluation-expectations_hero.png) - -#### [Qué esperar en la primera evaluación de autismo de su hijo](autism-evaluation-what-to-expect) diff --git a/www/src/content/blog/es/emotional-regulation-aba.mdx b/www/src/content/blog/es/emotional-regulation-aba.mdx index b45ecb5..1d45104 100644 --- a/www/src/content/blog/es/emotional-regulation-aba.mdx +++ b/www/src/content/blog/es/emotional-regulation-aba.mdx @@ -237,25 +237,3 @@ Semana 2: Usar y reforzar } ]} /> - - Previous Post - -###### [Ya se inscriben alumnos: Academia Preparatoria AIA para niños de 2 a 6 años](aba-school-readiness-arizona) - - Next Post - -###### [Por qué mi hijo puede hablar pero aún tiene dificultades sociales](social-pragmatic-communication-autism) - -### Similar Blog Posts - -![Reunión entre padres e hijos con un clínico en un entorno de evaluación del autismo tranquilo y basado en el juego.](/assets/images/autism-evaluation-expectations_hero.png) - -#### [Qué esperar en la primera evaluación de autismo de su hijo](autism-evaluation-what-to-expect) - -![niño que habla tiene problemas para socializar - imagen principal](/assets/images/talk-not-social.jpg) - -#### [Por qué mi hijo puede hablar pero aún tiene dificultades sociales](social-pragmatic-communication-autism) - -![Consejos de autocuidado para familias con autismo - imagen destacada](/assets/images/hero-self-care-priority.webp) - -#### [Descubre consejos para el autocuidado de padres de niños con autismo](autism-family-self-care-tips) diff --git a/www/src/content/blog/es/enhancing-generalization-skills.md b/www/src/content/blog/es/enhancing-generalization-skills.md index 0dcfbf1..a97e85c 100644 --- a/www/src/content/blog/es/enhancing-generalization-skills.md +++ b/www/src/content/blog/es/enhancing-generalization-skills.md @@ -42,21 +42,3 @@ Comprender los tres tipos principales de generalización (estímulo, respuesta y Para más información sobre los servicios ofrecidos por AIA, o para reservar su consulta gratuita, visítenos en [https://www.azinstitute4autism.com](../../index), contáctenos en [(480) 687-7099](tel:+14806877099), o correo electrónico [info@azinstitute4autism.com](mailto:info@azinstitute4autism.com). Si buscas más consejos, ¡consulta las [publicaciones mensuales de nuestro blog](../../library) de la directora clínica de AIA, Rula Diab! - - Previous Post - -###### [Qué esperar en la primera evaluación de autismo de su hijo](autism-evaluation-what-to-expect) - -### Similar Blog Posts - -![Reunión entre padres e hijos con un clínico en un entorno de evaluación del autismo tranquilo y basado en el juego.](/assets/images/autism-evaluation-expectations_hero.png) - -#### [Qué esperar en la primera evaluación de autismo de su hijo](autism-evaluation-what-to-expect) - -![Pediatra realizando una evaluación de autismo a un niño pequeño en una clínica de Arizona](/assets/images/autism_evaluation_arizona_hero.jpg) - -#### [Evaluación del Autismo en Arizona: Guía Paso a Paso para Padres](autism-evaluation-diagnosis-arizona-parent-guide) - -![niño que habla tiene problemas para socializar - imagen principal](/assets/images/talk-not-social.jpg) - -#### [Por qué mi hijo puede hablar pero aún tiene dificultades sociales](social-pragmatic-communication-autism) diff --git a/www/src/content/blog/es/executive-functioning-skills-autism.md b/www/src/content/blog/es/executive-functioning-skills-autism.md index 0fd02a7..27bbd4d 100644 --- a/www/src/content/blog/es/executive-functioning-skills-autism.md +++ b/www/src/content/blog/es/executive-functioning-skills-autism.md @@ -122,25 +122,3 @@ Estrategias de apoyo: - Práctica de resolución de problemas del mundo real (por ejemplo, gestionar proyectos grupales o conflictos) Desarrollar habilidades de funcionamiento ejecutivo en niños con autismo es un proceso gradual y de apoyo. Con estrategias específicas, apoyos visuales y rutinas consistentes, los niños pueden desarrollar mayor independencia, flexibilidad y resiliencia emocional. - - Previous Post - -###### [Guía para enseñar la autodefensa en el ABA](autism-self-advocacy-skills-aba) - - Next Post - -###### [Refuerzo positivo en la terapia ABA para fomentar el desarrollo de habilidades](positive-reinforcement-techniques) - -### Similar Blog Posts - -![terapia aba refuerzo positivo](/assets/images/hero-positive-reinforcement-techniques.webp) - -#### [Refuerzo positivo en la terapia ABA para fomentar el desarrollo de habilidades](positive-reinforcement-techniques) - -![Consejos de autocuidado para familias con autismo - imagen destacada](/assets/images/hero-self-care-priority.webp) - -#### [Descubre consejos para el autocuidado de padres de niños con autismo](autism-family-self-care-tips) - -![Niño tomando una pausa de regulación emocional en un carrito de compras - imagen principal](/assets/images/child-shopping-cart-tired-cranky.jpg) - -#### [Por qué la regulación emocional debería ser el corazón de cada programa de ABA](emotional-regulation-aba) diff --git a/www/src/content/blog/es/first-then-cards-autism-transitions.md b/www/src/content/blog/es/first-then-cards-autism-transitions.md index 3ddc7e5..e018189 100644 --- a/www/src/content/blog/es/first-then-cards-autism-transitions.md +++ b/www/src/content/blog/es/first-then-cards-autism-transitions.md @@ -108,25 +108,3 @@ Ubicado en Scottsdale, dentro del Valle del Este de Phoenix, el Instituto de Aut - Terapia en el hogar : Disponible en Tucson para brindar apoyo dentro del entorno natural de su hijo. - Próximamente, Gifted Shop de AIA : Pronto, podrá acceder a una variedad de herramientas de apoyo visual, incluyendo tarjetas de Primero/Después y colecciones de PECS, a través de nuestra tienda en línea. Manténgase atento a las actualizaciones. - - Previous Post - -###### [Descubre consejos para el autocuidado de padres de niños con autismo](autism-family-self-care-tips) - - Next Post - -###### [Guía para enseñar la autodefensa en el ABA](autism-self-advocacy-skills-aba) - -### Similar Blog Posts - -![Reunión entre padres e hijos con un clínico en un entorno de evaluación del autismo tranquilo y basado en el juego.](/assets/images/autism-evaluation-expectations_hero.png) - -#### [Qué esperar en la primera evaluación de autismo de su hijo](autism-evaluation-what-to-expect) - -![Consejos de autocuidado para familias con autismo - imagen destacada](/assets/images/hero-self-care-priority.webp) - -#### [Descubre consejos para el autocuidado de padres de niños con autismo](autism-family-self-care-tips) - -![Pediatra realizando una evaluación de autismo a un niño pequeño en una clínica de Arizona](/assets/images/autism_evaluation_arizona_hero.jpg) - -#### [Evaluación del Autismo en Arizona: Guía Paso a Paso para Padres](autism-evaluation-diagnosis-arizona-parent-guide) diff --git a/www/src/content/blog/es/parents-guide-to-autism-and-aba.mdx b/www/src/content/blog/es/parents-guide-to-autism-and-aba.mdx index 1b1b560..95fc682 100644 --- a/www/src/content/blog/es/parents-guide-to-autism-and-aba.mdx +++ b/www/src/content/blog/es/parents-guide-to-autism-and-aba.mdx @@ -238,25 +238,3 @@ Una buena guía para padres de niños con autismo debería decir esto claramente Apoyar a un niño con autismo no se trata de encontrar una estrategia perfecta. Se trata de aprender cómo se comunica tu hijo, qué le ayuda a regularse y cómo incorporar el éxito en los momentos cotidianos. Comienza con lo que más importa en tu familia ahora mismo, luego construye a partir de ahí. Si necesitas ayuda para reflexionar sobre la evaluación, las opciones de terapia o los próximos pasos, el [Formulario de Consulta para Clientes](../../client-consultation) de AIA es el siguiente paso más claro. - - Previous Post - -###### [Refuerzo positivo en la terapia ABA para fomentar el desarrollo de habilidades](positive-reinforcement-techniques) - - Next Post - -###### [Qué esperar en la primera evaluación de autismo de su hijo](autism-evaluation-what-to-expect) - -### Similar Blog Posts - -![Reunión entre padres e hijos con un clínico en un entorno de evaluación del autismo tranquilo y basado en el juego.](/assets/images/autism-evaluation-expectations_hero.png) - -#### [Qué esperar en la primera evaluación de autismo de su hijo](autism-evaluation-what-to-expect) - -![Consejos de autocuidado para familias con autismo - imagen destacada](/assets/images/hero-self-care-priority.webp) - -#### [Descubre consejos para el autocuidado de padres de niños con autismo](autism-family-self-care-tips) - -![Pediatra realizando una evaluación de autismo a un niño pequeño en una clínica de Arizona](/assets/images/autism_evaluation_arizona_hero.jpg) - -#### [Evaluación del Autismo en Arizona: Guía Paso a Paso para Padres](autism-evaluation-diagnosis-arizona-parent-guide) diff --git a/www/src/content/blog/es/positive-reinforcement-techniques.md b/www/src/content/blog/es/positive-reinforcement-techniques.md index d0c7bd6..5eba98c 100644 --- a/www/src/content/blog/es/positive-reinforcement-techniques.md +++ b/www/src/content/blog/es/positive-reinforcement-techniques.md @@ -266,25 +266,3 @@ Si no estás viendo progreso: El refuerzo positivo en el análisis de comportamiento aplicado (ABA) es más que una técnica; es una forma de construir motivación duradera, regulación emocional e independencia en niños con autismo. Al definir comportamientos claros, elegir recompensas significativas y ofrecer refuerzo de manera rápida y consistente, crearás un ambiente de aprendizaje de apoyo en casa y más allá. Para obtener orientación personalizada y apoyo ABA, comuníquese con el Instituto de Autismo de Arizona y programe su consulta gratuita hoy mismo. ¡Celebremos cada éxito juntos! - - Previous Post - -###### [Habilidades de funcionamiento ejecutivo y autismo](executive-functioning-skills-autism) - - Next Post - -###### [Guía de Autismo para Padres y Cuidadores](parents-guide-to-autism-and-aba) - -### Similar Blog Posts - -![Consejos de autocuidado para familias con autismo - imagen destacada](/assets/images/hero-self-care-priority.webp) - -#### [Descubre consejos para el autocuidado de padres de niños con autismo](autism-family-self-care-tips) - -![estrategias para el desarrollo de habilidades de funcionamiento ejecutivo en niños autistas - imagen destacada](/assets/images/hero-executive-functioning-skills-autism.webp) - -#### [Habilidades de funcionamiento ejecutivo y autismo](executive-functioning-skills-autism) - -![Habilidades de autodefensa para el autismo a través del ABA - imagen destacada](/assets/images/hero-teach-self-advocacy.webp) - -#### [Guía para enseñar la autodefensa en el ABA](autism-self-advocacy-skills-aba) diff --git a/www/src/content/blog/es/social-pragmatic-communication-autism.mdx b/www/src/content/blog/es/social-pragmatic-communication-autism.mdx index 5076959..36e7a3e 100644 --- a/www/src/content/blog/es/social-pragmatic-communication-autism.mdx +++ b/www/src/content/blog/es/social-pragmatic-communication-autism.mdx @@ -187,25 +187,3 @@ Si su hijo quiere hacer amigos pero sigue enfrentando los mismos obstáculos, la } ]} /> - - Previous Post - -###### [Por qué la regulación emocional debería ser el corazón de cada programa de ABA](emotional-regulation-aba) - - Next Post - -###### [Evaluación del Autismo en Arizona: Guía Paso a Paso para Padres](autism-evaluation-diagnosis-arizona-parent-guide) - -### Similar Blog Posts - -![Reunión entre padres e hijos con un clínico en un entorno de evaluación del autismo tranquilo y basado en el juego.](/assets/images/autism-evaluation-expectations_hero.png) - -#### [Qué esperar en la primera evaluación de autismo de su hijo](autism-evaluation-what-to-expect) - -![Niño tomando una pausa de regulación emocional en un carrito de compras - imagen principal](/assets/images/child-shopping-cart-tired-cranky.jpg) - -#### [Por qué la regulación emocional debería ser el corazón de cada programa de ABA](emotional-regulation-aba) - -![Enseñanza de habilidades académicas, sociales, de comunicación e independencia](/assets/images/hero-aba-preschool-az_800x.jpg) - -#### [Ya se inscriben alumnos: Academia Preparatoria AIA para niños de 2 a 6 años](aba-school-readiness-arizona) diff --git a/www/src/data/blog-footers.json b/www/src/data/blog-footers.json new file mode 100644 index 0000000..1fa5f54 --- /dev/null +++ b/www/src/data/blog-footers.json @@ -0,0 +1,1924 @@ +{ + "ar/aba-school-readiness-guide": { + "previous": { + "title": "إتقان إدارة السلوك: اكتشف الوظائف الأربع للسلوك", + "href": "/ar/library/behavior-management-functions-guide" + }, + "next": { + "title": "دليل تعليم مهارات الدفاع عن النفس في ABA", + "href": "/ar/library/autism-self-advocacy-skills-aba" + }, + "related": [ + { + "image": "/assets/images/hero-first-then-cards.webp", + "alt": "بطاقات", + "title": "بطاقات \"أولاً/ثم\": تسهيل الانتقال بين الأنشطة للأطفال المصابين بالتوحّد", + "href": "/ar/library/first-then-cards-autism-transitions" + }, + { + "image": "/assets/images/hero-proactive-reactive-strategies.webp", + "alt": "دليل استراتيجيات تحليل السلوك التطبيقي الاستباقية والتفاعلية— الصورة الرئيسية", + "title": "إتقان تقنيات التحليل السلوكي الاستباقية والتفاعلية– احجز استشارتك الآن", + "href": "/ar/library/proactive-reactive-aba-strategies-guide" + }, + { + "image": "/assets/images/hero-executive-functioning-skills-autism.webp", + "alt": "الصورة الرئيسية – استراتيجيات مهارات الوظائف التنفيذية للأطفال المصابين بالتوحّد", + "title": "مهارات الوظائف التنفيذية والتوحّد", + "href": "/ar/library/executive-functioning-skills-autism" + } + ] + }, + "ar/autism-self-advocacy-skills-aba": { + "previous": { + "title": "العودة إلى المدرسة بسهولة | تدخلات السلوك التحليلية (ABA) من خلال المقدمات والنتائج", + "href": "/ar/library/aba-school-readiness-guide" + }, + "next": { + "title": "مهارات الوظائف التنفيذية والتوحّد", + "href": "/ar/library/executive-functioning-skills-autism" + }, + "related": [ + { + "image": "/assets/images/hero-executive-functioning-skills-autism.webp", + "alt": "الصورة الرئيسية – استراتيجيات مهارات الوظائف التنفيذية للأطفال المصابين بالتوحّد", + "title": "مهارات الوظائف التنفيذية والتوحّد", + "href": "/ar/library/executive-functioning-skills-autism" + }, + { + "image": "/assets/images/hero-proactive-reactive-strategies.webp", + "alt": "دليل استراتيجيات تحليل السلوك التطبيقي الاستباقية والتفاعلية— الصورة الرئيسية", + "title": "إتقان تقنيات التحليل السلوكي الاستباقية والتفاعلية– احجز استشارتك الآن", + "href": "/ar/library/proactive-reactive-aba-strategies-guide" + }, + { + "image": "/assets/images/hero-first-then-cards.webp", + "alt": "بطاقات", + "title": "بطاقات \"أولاً/ثم\": تسهيل الانتقال بين الأنشطة للأطفال المصابين بالتوحّد", + "href": "/ar/library/first-then-cards-autism-transitions" + } + ] + }, + "ar/behavior-management-functions-guide": { + "next": { + "title": "العودة إلى المدرسة بسهولة | تدخلات السلوك التحليلية (ABA) من خلال المقدمات والنتائج", + "href": "/ar/library/aba-school-readiness-guide" + }, + "related": [ + { + "image": "/assets/images/hero-first-then-cards.webp", + "alt": "بطاقات", + "title": "بطاقات \"أولاً/ثم\": تسهيل الانتقال بين الأنشطة للأطفال المصابين بالتوحّد", + "href": "/ar/library/first-then-cards-autism-transitions" + }, + { + "image": "/assets/images/hero-back-to-school.webp", + "alt": "نصائح حول المقدمات والنتائج التي يحتاجها كل والد/ة مصاب/ة بالتوحد لتجهيز أطفالهم للمدرسة - صورة رئيسية", + "title": "العودة إلى المدرسة بسهولة | تدخلات السلوك التحليلية (ABA) من خلال المقدمات والنتائج", + "href": "/ar/library/aba-school-readiness-guide" + }, + { + "image": "/assets/images/hero-proactive-reactive-strategies.webp", + "alt": "دليل استراتيجيات تحليل السلوك التطبيقي الاستباقية والتفاعلية— الصورة الرئيسية", + "title": "إتقان تقنيات التحليل السلوكي الاستباقية والتفاعلية– احجز استشارتك الآن", + "href": "/ar/library/proactive-reactive-aba-strategies-guide" + } + ] + }, + "ar/executive-functioning-skills-autism": { + "previous": { + "title": "دليل تعليم مهارات الدفاع عن النفس في ABA", + "href": "/ar/library/autism-self-advocacy-skills-aba" + }, + "next": { + "title": "إتقان تقنيات التحليل السلوكي الاستباقية والتفاعلية– احجز استشارتك الآن", + "href": "/ar/library/proactive-reactive-aba-strategies-guide" + }, + "related": [ + { + "image": "/assets/images/hero-proactive-reactive-strategies.webp", + "alt": "دليل استراتيجيات تحليل السلوك التطبيقي الاستباقية والتفاعلية— الصورة الرئيسية", + "title": "إتقان تقنيات التحليل السلوكي الاستباقية والتفاعلية– احجز استشارتك الآن", + "href": "/ar/library/proactive-reactive-aba-strategies-guide" + }, + { + "image": "/assets/images/hero-back-to-school.webp", + "alt": "نصائح حول المقدمات والنتائج التي يحتاجها كل والد/ة مصاب/ة بالتوحد لتجهيز أطفالهم للمدرسة - صورة رئيسية", + "title": "العودة إلى المدرسة بسهولة | تدخلات السلوك التحليلية (ABA) من خلال المقدمات والنتائج", + "href": "/ar/library/aba-school-readiness-guide" + }, + { + "image": "/assets/images/hero-first-then-cards.webp", + "alt": "بطاقات", + "title": "بطاقات \"أولاً/ثم\": تسهيل الانتقال بين الأنشطة للأطفال المصابين بالتوحّد", + "href": "/ar/library/first-then-cards-autism-transitions" + } + ] + }, + "ar/first-then-cards-autism-transitions": { + "previous": { + "title": "التعزيز الإيجابي في علاج تحليل السلوك التطبيقي (ABA) لتشجيع تطوير المهارات", + "href": "/ar/library/positive-reinforcement-techniques" + }, + "related": [ + { + "image": "/assets/images/hero-behavior-functions-management.webp", + "alt": "أتقن إدارة السلوك: اكتشف الوظائف الأربع للسلوك – الصورة الرئيسية", + "title": "إتقان إدارة السلوك: اكتشف الوظائف الأربع للسلوك", + "href": "/ar/library/behavior-management-functions-guide" + }, + { + "image": "/assets/images/hero-executive-functioning-skills-autism.webp", + "alt": "الصورة الرئيسية – استراتيجيات مهارات الوظائف التنفيذية للأطفال المصابين بالتوحّد", + "title": "مهارات الوظائف التنفيذية والتوحّد", + "href": "/ar/library/executive-functioning-skills-autism" + }, + { + "image": "/assets/images/hero-proactive-reactive-strategies.webp", + "alt": "دليل استراتيجيات تحليل السلوك التطبيقي الاستباقية والتفاعلية— الصورة الرئيسية", + "title": "إتقان تقنيات التحليل السلوكي الاستباقية والتفاعلية– احجز استشارتك الآن", + "href": "/ar/library/proactive-reactive-aba-strategies-guide" + } + ] + }, + "ar/positive-reinforcement-techniques": { + "previous": { + "title": "إتقان تقنيات التحليل السلوكي الاستباقية والتفاعلية– احجز استشارتك الآن", + "href": "/ar/library/proactive-reactive-aba-strategies-guide" + }, + "next": { + "title": "بطاقات \"أولاً/ثم\": تسهيل الانتقال بين الأنشطة للأطفال المصابين بالتوحّد", + "href": "/ar/library/first-then-cards-autism-transitions" + }, + "related": [ + { + "image": "/assets/images/hero-proactive-reactive-strategies.webp", + "alt": "دليل استراتيجيات تحليل السلوك التطبيقي الاستباقية والتفاعلية— الصورة الرئيسية", + "title": "إتقان تقنيات التحليل السلوكي الاستباقية والتفاعلية– احجز استشارتك الآن", + "href": "/ar/library/proactive-reactive-aba-strategies-guide" + }, + { + "image": "/assets/images/hero-back-to-school.webp", + "alt": "نصائح حول المقدمات والنتائج التي يحتاجها كل والد/ة مصاب/ة بالتوحد لتجهيز أطفالهم للمدرسة - صورة رئيسية", + "title": "العودة إلى المدرسة بسهولة | تدخلات السلوك التحليلية (ABA) من خلال المقدمات والنتائج", + "href": "/ar/library/aba-school-readiness-guide" + }, + { + "image": "/assets/images/hero-executive-functioning-skills-autism.webp", + "alt": "الصورة الرئيسية – استراتيجيات مهارات الوظائف التنفيذية للأطفال المصابين بالتوحّد", + "title": "مهارات الوظائف التنفيذية والتوحّد", + "href": "/ar/library/executive-functioning-skills-autism" + } + ] + }, + "ar/proactive-reactive-aba-strategies-guide": { + "previous": { + "title": "مهارات الوظائف التنفيذية والتوحّد", + "href": "/ar/library/executive-functioning-skills-autism" + }, + "next": { + "title": "التعزيز الإيجابي في علاج تحليل السلوك التطبيقي (ABA) لتشجيع تطوير المهارات", + "href": "/ar/library/positive-reinforcement-techniques" + }, + "related": [ + { + "image": "/assets/images/hero-executive-functioning-skills-autism.webp", + "alt": "الصورة الرئيسية – استراتيجيات مهارات الوظائف التنفيذية للأطفال المصابين بالتوحّد", + "title": "مهارات الوظائف التنفيذية والتوحّد", + "href": "/ar/library/executive-functioning-skills-autism" + }, + { + "image": "/assets/images/hero-first-then-cards.webp", + "alt": "بطاقات", + "title": "بطاقات \"أولاً/ثم\": تسهيل الانتقال بين الأنشطة للأطفال المصابين بالتوحّد", + "href": "/ar/library/first-then-cards-autism-transitions" + }, + { + "image": "/assets/images/hero-teach-self-advocacy.webp", + "alt": "مهارات الدفاع عن النفس لدى الأطفال ذوي التوحّد عبر تحليل السلوك التطبيقي (ABA) – الصورة الرئيسية", + "title": "دليل تعليم مهارات الدفاع عن النفس في ABA", + "href": "/ar/library/autism-self-advocacy-skills-aba" + } + ] + }, + "es/aba-school-readiness-arizona": { + "next": { + "title": "Por qué la regulación emocional debería ser el corazón de cada programa de ABA", + "href": "/es/library/emotional-regulation-aba" + }, + "related": [ + { + "image": "/assets/images/autism_evaluation_arizona_hero.jpg", + "alt": "Pediatra realizando una evaluación de autismo a un niño pequeño en una clínica de Arizona", + "title": "Evaluación del Autismo en Arizona: Guía Paso a Paso para Padres", + "href": "/es/library/autism-evaluation-diagnosis-arizona-parent-guide" + }, + { + "image": "/assets/images/talk-not-social.jpg", + "alt": "niño que habla tiene problemas para socializar - imagen principal", + "title": "Por qué mi hijo puede hablar pero aún tiene dificultades sociales", + "href": "/es/library/social-pragmatic-communication-autism" + }, + { + "image": "/assets/images/autism-evaluation-expectations_hero.png", + "alt": "Reunión entre padres e hijos con un clínico en un entorno de evaluación del autismo tranquilo y basado en el juego.", + "title": "Qué esperar en la primera evaluación de autismo de su hijo", + "href": "/es/library/autism-evaluation-what-to-expect" + } + ] + }, + "es/autism-evaluation-diagnosis-arizona-parent-guide": { + "previous": { + "title": "Por qué mi hijo puede hablar pero aún tiene dificultades sociales", + "href": "/es/library/social-pragmatic-communication-autism" + }, + "next": { + "title": "Descubre consejos para el autocuidado de padres de niños con autismo", + "href": "/es/library/autism-family-self-care-tips" + }, + "related": [ + { + "image": "/assets/images/autism-evaluation-expectations_hero.png", + "alt": "Reunión entre padres e hijos con un clínico en un entorno de evaluación del autismo tranquilo y basado en el juego.", + "title": "Qué esperar en la primera evaluación de autismo de su hijo", + "href": "/es/library/autism-evaluation-what-to-expect" + }, + { + "image": "/assets/images/hero-self-care-priority.webp", + "alt": "Consejos de autocuidado para familias con autismo - imagen destacada", + "title": "Descubre consejos para el autocuidado de padres de niños con autismo", + "href": "/es/library/autism-family-self-care-tips" + }, + { + "image": "/assets/images/talk-not-social.jpg", + "alt": "niño que habla tiene problemas para socializar - imagen principal", + "title": "Por qué mi hijo puede hablar pero aún tiene dificultades sociales", + "href": "/es/library/social-pragmatic-communication-autism" + } + ] + }, + "es/autism-evaluation-what-to-expect": { + "previous": { + "title": "Guía de Autismo para Padres y Cuidadores", + "href": "/es/library/parents-guide-to-autism-and-aba" + }, + "next": { + "title": "Mejorando la generalización para un impacto más amplio en el autismo", + "href": "/es/library/enhancing-generalization-skills" + }, + "related": [ + { + "image": "/assets/images/autism_evaluation_arizona_hero.jpg", + "alt": "Pediatra realizando una evaluación de autismo a un niño pequeño en una clínica de Arizona", + "title": "Evaluación del Autismo en Arizona: Guía Paso a Paso para Padres", + "href": "/es/library/autism-evaluation-diagnosis-arizona-parent-guide" + }, + { + "image": "/assets/images/child-shopping-cart-tired-cranky.jpg", + "alt": "Niño tomando una pausa de regulación emocional en un carrito de compras - imagen principal", + "title": "Por qué la regulación emocional debería ser el corazón de cada programa de ABA", + "href": "/es/library/emotional-regulation-aba" + }, + { + "image": "/assets/images/family-guide-to-autism-aba-at-home_hero.png", + "alt": "Parent and autistic child using visual supports, structured play, and calm routines together", + "title": "Guía de Autismo para Padres y Cuidadores", + "href": "/es/library/parents-guide-to-autism-and-aba" + } + ] + }, + "es/autism-family-self-care-tips": { + "previous": { + "title": "Evaluación del Autismo en Arizona: Guía Paso a Paso para Padres", + "href": "/es/library/autism-evaluation-diagnosis-arizona-parent-guide" + }, + "next": { + "title": "Tarjetas Primero/Después : Empoderando las transiciones para niños autistas", + "href": "/es/library/first-then-cards-autism-transitions" + }, + "related": [ + { + "image": "/assets/images/autism-evaluation-expectations_hero.png", + "alt": "Reunión entre padres e hijos con un clínico en un entorno de evaluación del autismo tranquilo y basado en el juego.", + "title": "Qué esperar en la primera evaluación de autismo de su hijo", + "href": "/es/library/autism-evaluation-what-to-expect" + }, + { + "image": "/assets/images/autism_evaluation_arizona_hero.jpg", + "alt": "Pediatra realizando una evaluación de autismo a un niño pequeño en una clínica de Arizona", + "title": "Evaluación del Autismo en Arizona: Guía Paso a Paso para Padres", + "href": "/es/library/autism-evaluation-diagnosis-arizona-parent-guide" + }, + { + "image": "/assets/images/family-guide-to-autism-aba-at-home_hero.png", + "alt": "Parent and autistic child using visual supports, structured play, and calm routines together", + "title": "Guía de Autismo para Padres y Cuidadores", + "href": "/es/library/parents-guide-to-autism-and-aba" + } + ] + }, + "es/autism-self-advocacy-skills-aba": { + "previous": { + "title": "Tarjetas Primero/Después : Empoderando las transiciones para niños autistas", + "href": "/es/library/first-then-cards-autism-transitions" + }, + "next": { + "title": "Habilidades de funcionamiento ejecutivo y autismo", + "href": "/es/library/executive-functioning-skills-autism" + }, + "related": [ + { + "image": "/assets/images/hero-self-care-priority.webp", + "alt": "Consejos de autocuidado para familias con autismo - imagen destacada", + "title": "Descubre consejos para el autocuidado de padres de niños con autismo", + "href": "/es/library/autism-family-self-care-tips" + }, + { + "image": "/assets/images/hero-executive-functioning-skills-autism.webp", + "alt": "estrategias para el desarrollo de habilidades de funcionamiento ejecutivo en niños autistas - imagen destacada", + "title": "Habilidades de funcionamiento ejecutivo y autismo", + "href": "/es/library/executive-functioning-skills-autism" + }, + { + "image": "/assets/images/autism-evaluation-expectations_hero.png", + "alt": "Reunión entre padres e hijos con un clínico en un entorno de evaluación del autismo tranquilo y basado en el juego.", + "title": "Qué esperar en la primera evaluación de autismo de su hijo", + "href": "/es/library/autism-evaluation-what-to-expect" + } + ] + }, + "es/emotional-regulation-aba": { + "previous": { + "title": "Ya se inscriben alumnos: Academia Preparatoria AIA para niños de 2 a 6 años", + "href": "/es/library/aba-school-readiness-arizona" + }, + "next": { + "title": "Por qué mi hijo puede hablar pero aún tiene dificultades sociales", + "href": "/es/library/social-pragmatic-communication-autism" + }, + "related": [ + { + "image": "/assets/images/autism-evaluation-expectations_hero.png", + "alt": "Reunión entre padres e hijos con un clínico en un entorno de evaluación del autismo tranquilo y basado en el juego.", + "title": "Qué esperar en la primera evaluación de autismo de su hijo", + "href": "/es/library/autism-evaluation-what-to-expect" + }, + { + "image": "/assets/images/talk-not-social.jpg", + "alt": "niño que habla tiene problemas para socializar - imagen principal", + "title": "Por qué mi hijo puede hablar pero aún tiene dificultades sociales", + "href": "/es/library/social-pragmatic-communication-autism" + }, + { + "image": "/assets/images/hero-self-care-priority.webp", + "alt": "Consejos de autocuidado para familias con autismo - imagen destacada", + "title": "Descubre consejos para el autocuidado de padres de niños con autismo", + "href": "/es/library/autism-family-self-care-tips" + } + ] + }, + "es/enhancing-generalization-skills": { + "previous": { + "title": "Qué esperar en la primera evaluación de autismo de su hijo", + "href": "/es/library/autism-evaluation-what-to-expect" + }, + "related": [ + { + "image": "/assets/images/autism-evaluation-expectations_hero.png", + "alt": "Reunión entre padres e hijos con un clínico en un entorno de evaluación del autismo tranquilo y basado en el juego.", + "title": "Qué esperar en la primera evaluación de autismo de su hijo", + "href": "/es/library/autism-evaluation-what-to-expect" + }, + { + "image": "/assets/images/autism_evaluation_arizona_hero.jpg", + "alt": "Pediatra realizando una evaluación de autismo a un niño pequeño en una clínica de Arizona", + "title": "Evaluación del Autismo en Arizona: Guía Paso a Paso para Padres", + "href": "/es/library/autism-evaluation-diagnosis-arizona-parent-guide" + }, + { + "image": "/assets/images/talk-not-social.jpg", + "alt": "niño que habla tiene problemas para socializar - imagen principal", + "title": "Por qué mi hijo puede hablar pero aún tiene dificultades sociales", + "href": "/es/library/social-pragmatic-communication-autism" + } + ] + }, + "es/executive-functioning-skills-autism": { + "previous": { + "title": "Guía para enseñar la autodefensa en el ABA", + "href": "/es/library/autism-self-advocacy-skills-aba" + }, + "next": { + "title": "Refuerzo positivo en la terapia ABA para fomentar el desarrollo de habilidades", + "href": "/es/library/positive-reinforcement-techniques" + }, + "related": [ + { + "image": "/assets/images/hero-positive-reinforcement-techniques.webp", + "alt": "terapia aba refuerzo positivo", + "title": "Refuerzo positivo en la terapia ABA para fomentar el desarrollo de habilidades", + "href": "/es/library/positive-reinforcement-techniques" + }, + { + "image": "/assets/images/hero-self-care-priority.webp", + "alt": "Consejos de autocuidado para familias con autismo - imagen destacada", + "title": "Descubre consejos para el autocuidado de padres de niños con autismo", + "href": "/es/library/autism-family-self-care-tips" + }, + { + "image": "/assets/images/child-shopping-cart-tired-cranky.jpg", + "alt": "Niño tomando una pausa de regulación emocional en un carrito de compras - imagen principal", + "title": "Por qué la regulación emocional debería ser el corazón de cada programa de ABA", + "href": "/es/library/emotional-regulation-aba" + } + ] + }, + "es/first-then-cards-autism-transitions": { + "previous": { + "title": "Descubre consejos para el autocuidado de padres de niños con autismo", + "href": "/es/library/autism-family-self-care-tips" + }, + "next": { + "title": "Guía para enseñar la autodefensa en el ABA", + "href": "/es/library/autism-self-advocacy-skills-aba" + }, + "related": [ + { + "image": "/assets/images/autism-evaluation-expectations_hero.png", + "alt": "Reunión entre padres e hijos con un clínico en un entorno de evaluación del autismo tranquilo y basado en el juego.", + "title": "Qué esperar en la primera evaluación de autismo de su hijo", + "href": "/es/library/autism-evaluation-what-to-expect" + }, + { + "image": "/assets/images/hero-self-care-priority.webp", + "alt": "Consejos de autocuidado para familias con autismo - imagen destacada", + "title": "Descubre consejos para el autocuidado de padres de niños con autismo", + "href": "/es/library/autism-family-self-care-tips" + }, + { + "image": "/assets/images/autism_evaluation_arizona_hero.jpg", + "alt": "Pediatra realizando una evaluación de autismo a un niño pequeño en una clínica de Arizona", + "title": "Evaluación del Autismo en Arizona: Guía Paso a Paso para Padres", + "href": "/es/library/autism-evaluation-diagnosis-arizona-parent-guide" + } + ] + }, + "es/parents-guide-to-autism-and-aba": { + "previous": { + "title": "Refuerzo positivo en la terapia ABA para fomentar el desarrollo de habilidades", + "href": "/es/library/positive-reinforcement-techniques" + }, + "next": { + "title": "Qué esperar en la primera evaluación de autismo de su hijo", + "href": "/es/library/autism-evaluation-what-to-expect" + }, + "related": [ + { + "image": "/assets/images/autism-evaluation-expectations_hero.png", + "alt": "Reunión entre padres e hijos con un clínico en un entorno de evaluación del autismo tranquilo y basado en el juego.", + "title": "Qué esperar en la primera evaluación de autismo de su hijo", + "href": "/es/library/autism-evaluation-what-to-expect" + }, + { + "image": "/assets/images/hero-self-care-priority.webp", + "alt": "Consejos de autocuidado para familias con autismo - imagen destacada", + "title": "Descubre consejos para el autocuidado de padres de niños con autismo", + "href": "/es/library/autism-family-self-care-tips" + }, + { + "image": "/assets/images/autism_evaluation_arizona_hero.jpg", + "alt": "Pediatra realizando una evaluación de autismo a un niño pequeño en una clínica de Arizona", + "title": "Evaluación del Autismo en Arizona: Guía Paso a Paso para Padres", + "href": "/es/library/autism-evaluation-diagnosis-arizona-parent-guide" + } + ] + }, + "es/positive-reinforcement-techniques": { + "previous": { + "title": "Habilidades de funcionamiento ejecutivo y autismo", + "href": "/es/library/executive-functioning-skills-autism" + }, + "next": { + "title": "Guía de Autismo para Padres y Cuidadores", + "href": "/es/library/parents-guide-to-autism-and-aba" + }, + "related": [ + { + "image": "/assets/images/hero-self-care-priority.webp", + "alt": "Consejos de autocuidado para familias con autismo - imagen destacada", + "title": "Descubre consejos para el autocuidado de padres de niños con autismo", + "href": "/es/library/autism-family-self-care-tips" + }, + { + "image": "/assets/images/hero-executive-functioning-skills-autism.webp", + "alt": "estrategias para el desarrollo de habilidades de funcionamiento ejecutivo en niños autistas - imagen destacada", + "title": "Habilidades de funcionamiento ejecutivo y autismo", + "href": "/es/library/executive-functioning-skills-autism" + }, + { + "image": "/assets/images/hero-teach-self-advocacy.webp", + "alt": "Habilidades de autodefensa para el autismo a través del ABA - imagen destacada", + "title": "Guía para enseñar la autodefensa en el ABA", + "href": "/es/library/autism-self-advocacy-skills-aba" + } + ] + }, + "es/social-pragmatic-communication-autism": { + "previous": { + "title": "Por qué la regulación emocional debería ser el corazón de cada programa de ABA", + "href": "/es/library/emotional-regulation-aba" + }, + "next": { + "title": "Evaluación del Autismo en Arizona: Guía Paso a Paso para Padres", + "href": "/es/library/autism-evaluation-diagnosis-arizona-parent-guide" + }, + "related": [ + { + "image": "/assets/images/autism-evaluation-expectations_hero.png", + "alt": "Reunión entre padres e hijos con un clínico en un entorno de evaluación del autismo tranquilo y basado en el juego.", + "title": "Qué esperar en la primera evaluación de autismo de su hijo", + "href": "/es/library/autism-evaluation-what-to-expect" + }, + { + "image": "/assets/images/child-shopping-cart-tired-cranky.jpg", + "alt": "Niño tomando una pausa de regulación emocional en un carrito de compras - imagen principal", + "title": "Por qué la regulación emocional debería ser el corazón de cada programa de ABA", + "href": "/es/library/emotional-regulation-aba" + }, + { + "image": "/assets/images/hero-aba-preschool-az_800x.jpg", + "alt": "Enseñanza de habilidades académicas, sociales, de comunicación e independencia", + "title": "Ya se inscriben alumnos: Academia Preparatoria AIA para niños de 2 a 6 años", + "href": "/es/library/aba-school-readiness-arizona" + } + ] + }, + "en/aac-visual-supports-autism": { + "previous": { + "title": "Autism Guide for Parents and Caregivers", + "href": "/library/parents-guide-to-autism-and-aba" + }, + "next": { + "title": "Supporting Friendships and Social Play for Children with Autism", + "href": "/library/autism-friendships-social-play-support" + }, + "related": [ + { + "image": "/assets/images/communication-skills-autistic-children-hero_img.png", + "alt": "A parent and an autistic child smiling while using a picture communication board during playtime.", + "title": "Building Communication & Social Skills in Autistic Children: A Practical Guide for Families", + "href": "/library/communication-social-skills-autistic-children-guide" + }, + { + "image": "/assets/images/family-guide-to-autism-aba-at-home_hero.png", + "alt": "Parent and autistic child using visual supports, structured play, and calm routines together", + "title": "Autism Guide for Parents and Caregivers", + "href": "/library/parents-guide-to-autism-and-aba" + }, + { + "image": "/assets/images/parallel-players-hero.png", + "alt": "Three children engaging happily in parallel play on a colorful rug.", + "title": "Supporting Friendships and Social Play for Children with Autism", + "href": "/library/autism-friendships-social-play-support" + } + ] + }, + "en/aba-school-readiness-arizona": { + "previous": { + "title": "Positive Reinforcement in ABA Therapy to Encourage Skill Development", + "href": "/library/positive-reinforcement-techniques" + }, + "next": { + "title": "Autism and Fall Break: How to Keep Routines Calm and Predictable", + "href": "/library/autism-fall-break-routine-tips-halloween-thanksgiving" + }, + "related": [ + { + "image": "/assets/images/hero-november-2022-aia-update_800x.jpg", + "alt": "November AIA Update - hero image", + "title": "November AIA Update", + "href": "/library/november-2022-aia-update" + }, + { + "image": "/assets/images/hero-critical-thinking-skills_800x.jpg", + "alt": "Critical Thinking Skills for Children with Autism - hero image", + "title": "Critical Thinking Skills for Children with Autism", + "href": "/library/critical-thinking-skills" + }, + { + "image": "/assets/images/hero-proactive-reactive-strategies.webp", + "alt": "proactive reactive aba strategies guide - hero image", + "title": "Master Proactive & Reactive ABA Techniques – Schedule a Consultation", + "href": "/library/proactive-reactive-aba-strategies-guide" + } + ] + }, + "en/aba-school-readiness-guide": { + "previous": { + "title": "Master Behavior Management: Discover the Four Functions of Behavior", + "href": "/library/behavior-management-functions-guide" + }, + "next": { + "title": "Master Proactive & Reactive ABA Techniques – Schedule a Consultation", + "href": "/library/proactive-reactive-aba-strategies-guide" + }, + "related": [ + { + "image": "/assets/images/hero-aba-preschool-az_800x.jpg", + "alt": "teaching academic, social, communications, and independence skills", + "title": "Now Enrolling: AIA Preparatory Academy for Children Ages 2–6", + "href": "/library/aba-school-readiness-arizona" + }, + { + "image": "/assets/images/autism_evaluation_arizona_hero.jpg", + "alt": "Pediatrician performing a toddler", + "title": "Autism Evaluation in Arizona: A Parent's Step-by-Step Guide", + "href": "/library/autism-evaluation-diagnosis-arizona-parent-guide" + }, + { + "image": "/assets/images/hero-rapport-strategies.webp", + "alt": "rapport strategies for effective aba therapy - hero image", + "title": "Learn the Secrets to Effective Rapport Building in ABA Therapy", + "href": "/library/autism-therapy-rapport-strategies" + } + ] + }, + "en/aba-therapy-benefits": { + "previous": { + "title": "ASD Sensory-Friendly Recipes: Pancakes", + "href": "/library/asd-sensory-friendly-recipes-pancakes" + }, + "next": { + "title": "Meet Rula Diab | Board Certified Behavior Analyst (BCBA)", + "href": "/library/meet-rula-diab-bcba" + }, + "related": [ + { + "image": "/assets/images/hero-repetetive-behaviors.webp", + "alt": "Repetitive Behaviors with Children Diagnosed with Autism - hero image", + "title": "Repetitive Behaviors with Children Diagnosed with Autism", + "href": "/library/repetitive-behavior" + }, + { + "image": "/assets/images/hero-asd-sensory-friendly-recipe-pancakes_800x.jpg", + "alt": "asd sensory-friendly pancake recipe - hero image", + "title": "ASD Sensory-Friendly Recipes: Pancakes", + "href": "/library/asd-sensory-friendly-recipes-pancakes" + }, + { + "image": "/assets/images/hero-new-year-goals-2024.webp", + "alt": "2024 new year reflection and planning for autism support and awareness - hero image", + "title": "New Year 2024: Holiday Tips for Autism Support & Awareness", + "href": "/library/new-year-2024-autism-holiday-tips" + } + ] + }, + "en/aba-therapy-dtt-net-guide": { + "previous": { + "title": "Understanding Sensory Processing in the Context of ABA Therapy", + "href": "/library/sensory-processing" + }, + "next": { + "title": "Benefits of Prompting & Parenting in ABA Therapy", + "href": "/library/aba-therapy-prompting-parenting-benefits" + }, + "related": [ + { + "image": "/assets/images/hero-aba-toilet-training-child-autism.webp", + "alt": "potty train children with autism using simple aba techniques - hero image", + "title": "Guide: Simple ABA Techniques for Toilet Training Children with Autism", + "href": "/library/aba-toilet-training-child-autism" + }, + { + "image": "/assets/images/hero-new-year-goals-2024.webp", + "alt": "2024 new year reflection and planning for autism support and awareness - hero image", + "title": "New Year 2024: Holiday Tips for Autism Support & Awareness", + "href": "/library/new-year-2024-autism-holiday-tips" + }, + { + "image": "/assets/images/hero-aba-therapy-benefits_800x.jpg", + "alt": "Benefits of ABA Therapy for Children with Autism - hero image", + "title": "The Benefits of ABA Therapy for Children with Autism", + "href": "/library/aba-therapy-benefits" + } + ] + }, + "en/aba-therapy-prompting-parenting-benefits": { + "previous": { + "title": "Learn About DTT and NET Methods for More Effective ABA Therapy", + "href": "/library/aba-therapy-dtt-net-guide" + }, + "next": { + "title": "Learn the Secrets to Effective Rapport Building in ABA Therapy", + "href": "/library/autism-therapy-rapport-strategies" + }, + "related": [ + { + "image": "/assets/images/hero-positive-reinforcement-techniques.webp", + "alt": "aba therapy positive reinforcement", + "title": "Positive Reinforcement in ABA Therapy to Encourage Skill Development", + "href": "/library/positive-reinforcement-techniques" + }, + { + "image": "/assets/images/hero-play-leisure-skills-children-autism_800x.jpg", + "alt": "Play and Leisure Skills for Children with Autism - hero image", + "title": "Play and Leisure Skills for Children with Autism", + "href": "/library/play-leisure-skills" + }, + { + "image": "/assets/images/hero-new-year-goals-2024.webp", + "alt": "2024 new year reflection and planning for autism support and awareness - hero image", + "title": "New Year 2024: Holiday Tips for Autism Support & Awareness", + "href": "/library/new-year-2024-autism-holiday-tips" + } + ] + }, + "en/aba-therapy-summer-routine-tips": { + "previous": { + "title": "First/Then Cards: Empowering Transitions for Autistic Children", + "href": "/library/first-then-cards-autism-transitions" + }, + "next": { + "title": "Positive Reinforcement in ABA Therapy to Encourage Skill Development", + "href": "/library/positive-reinforcement-techniques" + }, + "related": [ + { + "image": "/assets/images/hero-aba-preschool-az_800x.jpg", + "alt": "teaching academic, social, communications, and independence skills", + "title": "Now Enrolling: AIA Preparatory Academy for Children Ages 2–6", + "href": "/library/aba-school-readiness-arizona" + }, + { + "image": "/assets/images/family-guide-to-autism-aba-at-home_hero.png", + "alt": "Parent and autistic child using visual supports, structured play, and calm routines together", + "title": "Autism Guide for Parents and Caregivers", + "href": "/library/parents-guide-to-autism-and-aba" + }, + { + "image": "/assets/images/hero-executive-functioning-skills-autism.webp", + "alt": "hero image - executive functioning skills strategies for autistic children", + "title": "Executive Functioning Skills and Autism", + "href": "/library/executive-functioning-skills-autism" + } + ] + }, + "en/aba-toilet-training-child-autism": { + "previous": { + "title": "ASD Sensory-Friendly Thanksgiving Recipe: Pumpkin Dump Cake", + "href": "/library/asd-sensory-friendly-recipe-thanksgiving-pumpkin-cake" + }, + "next": { + "title": "New Year 2024: Holiday Tips for Autism Support & Awareness", + "href": "/library/new-year-2024-autism-holiday-tips" + }, + "related": [ + { + "image": "/assets/images/hero-new-year-goals-2024.webp", + "alt": "2024 new year reflection and planning for autism support and awareness - hero image", + "title": "New Year 2024: Holiday Tips for Autism Support & Awareness", + "href": "/library/new-year-2024-autism-holiday-tips" + }, + { + "image": "/assets/images/hero-aba-therapy-benefits_800x.jpg", + "alt": "Benefits of ABA Therapy for Children with Autism - hero image", + "title": "The Benefits of ABA Therapy for Children with Autism", + "href": "/library/aba-therapy-benefits" + }, + { + "image": "/assets/images/hero-repetetive-behaviors.webp", + "alt": "Repetitive Behaviors with Children Diagnosed with Autism - hero image", + "title": "Repetitive Behaviors with Children Diagnosed with Autism", + "href": "/library/repetitive-behavior" + } + ] + }, + "en/aia-world-autism-community-day-celebration": { + "previous": { + "title": "New Year Goals for Our Children with Autism", + "href": "/library/new-year-goals-2023" + }, + "next": { + "title": "The Ultimate Guide to Behavior Modification Techniques & Reinforcement Theory", + "href": "/library/behavior-modification-techniques-reinforcement-theory" + }, + "related": [ + { + "image": "/assets/images/hero-asd-sensory-friendly-recipe-pancakes_800x.jpg", + "alt": "asd sensory-friendly pancake recipe - hero image", + "title": "ASD Sensory-Friendly Recipes: Pancakes", + "href": "/library/asd-sensory-friendly-recipes-pancakes" + }, + { + "image": "/assets/images/hero-new-year-goals-2023_800x.jpg", + "alt": "New Year Goals for Our Children with Autism - hero image", + "title": "New Year Goals for Our Children with Autism", + "href": "/library/new-year-goals-2023" + }, + { + "image": "/assets/images/hero-back-to-school.webp", + "alt": "Antecedent & Consequence Hacks Every Autism Parent Needs to Unlock School Readiness - hero image", + "title": "Ease Back-to-School Time | ABA Antecedent & Consequence Interventions", + "href": "/library/aba-school-readiness-guide" + } + ] + }, + "en/asd-sensory-friendly-recipe-thanksgiving-pumpkin-cake": { + "previous": { + "title": "Community Highlights: Meet Rula Diab of Arizona Institute for Autism", + "href": "/library/community-highlight-meet-rula-diab" + }, + "next": { + "title": "Guide: Simple ABA Techniques for Toilet Training Children with Autism", + "href": "/library/aba-toilet-training-child-autism" + }, + "related": [ + { + "image": "/assets/images/hero-aba-toilet-training-child-autism.webp", + "alt": "potty train children with autism using simple aba techniques - hero image", + "title": "Guide: Simple ABA Techniques for Toilet Training Children with Autism", + "href": "/library/aba-toilet-training-child-autism" + }, + { + "image": "/assets/images/hero-aba-therapy-benefits_800x.jpg", + "alt": "Benefits of ABA Therapy for Children with Autism - hero image", + "title": "The Benefits of ABA Therapy for Children with Autism", + "href": "/library/aba-therapy-benefits" + }, + { + "image": "/assets/images/hero-asd-sensory-friendly-recipe-pancakes_800x.jpg", + "alt": "asd sensory-friendly pancake recipe - hero image", + "title": "ASD Sensory-Friendly Recipes: Pancakes", + "href": "/library/asd-sensory-friendly-recipes-pancakes" + } + ] + }, + "en/asd-sensory-friendly-recipes-pancakes": { + "previous": { + "title": "Repetitive Behaviors with Children Diagnosed with Autism", + "href": "/library/repetitive-behavior" + }, + "next": { + "title": "The Benefits of ABA Therapy for Children with Autism", + "href": "/library/aba-therapy-benefits" + }, + "related": [ + { + "image": "/assets/images/hero-new-year-goals-2024.webp", + "alt": "2024 new year reflection and planning for autism support and awareness - hero image", + "title": "New Year 2024: Holiday Tips for Autism Support & Awareness", + "href": "/library/new-year-2024-autism-holiday-tips" + }, + { + "image": "/assets/images/hero-repetetive-behaviors.webp", + "alt": "Repetitive Behaviors with Children Diagnosed with Autism - hero image", + "title": "Repetitive Behaviors with Children Diagnosed with Autism", + "href": "/library/repetitive-behavior" + }, + { + "image": "/assets/images/hero-aba-therapy-benefits_800x.jpg", + "alt": "Benefits of ABA Therapy for Children with Autism - hero image", + "title": "The Benefits of ABA Therapy for Children with Autism", + "href": "/library/aba-therapy-benefits" + } + ] + }, + "en/autism-evaluation-diagnosis-arizona-parent-guide": { + "previous": { + "title": "Why My Child Can Talk but Still Struggles Socially", + "href": "/library/social-pragmatic-communication-autism" + }, + "next": { + "title": "Early Signs of Autism by Age: 12 Months to 4 Years", + "href": "/library/early-signs-autism-by-age" + }, + "related": [ + { + "image": "/assets/images/hero-sensory-processing.webp", + "alt": "sensory processing challenges in aba therapy - hero image", + "title": "Understanding Sensory Processing in the Context of ABA Therapy", + "href": "/library/sensory-processing" + }, + { + "image": "/assets/images/autism-evaluation-expectations_hero.png", + "alt": "Parent and child meeting with a clinician in a calm, play-based autism evaluation setting", + "title": "What to Expect at Your Child’s First Autism Evaluation", + "href": "/library/autism-evaluation-what-to-expect" + }, + { + "image": "/assets/images/family-guide-to-autism-aba-at-home_hero.png", + "alt": "Parent and autistic child using visual supports, structured play, and calm routines together", + "title": "Autism Guide for Parents and Caregivers", + "href": "/library/parents-guide-to-autism-and-aba" + } + ] + }, + "en/autism-evaluation-what-to-expect": { + "previous": { + "title": "Early Signs of Autism by Age: 12 Months to 4 Years", + "href": "/library/early-signs-autism-by-age" + }, + "next": { + "title": "Building Communication & Social Skills in Autistic Children: A Practical Guide for Families", + "href": "/library/communication-social-skills-autistic-children-guide" + }, + "related": [ + { + "image": "/assets/images/autism_evaluation_arizona_hero.jpg", + "alt": "Pediatrician performing a toddler", + "title": "Autism Evaluation in Arizona: A Parent's Step-by-Step Guide", + "href": "/library/autism-evaluation-diagnosis-arizona-parent-guide" + }, + { + "image": "/assets/images/family-guide-to-autism-aba-at-home_hero.png", + "alt": "Parent and autistic child using visual supports, structured play, and calm routines together", + "title": "Autism Guide for Parents and Caregivers", + "href": "/library/parents-guide-to-autism-and-aba" + }, + { + "image": "/assets/images/early_signs_autism_by_age_hero.png", + "alt": "Parent and toddler playing with blocks, sharing eye contact and pointing during play.", + "title": "Early Signs of Autism by Age: 12 Months to 4 Years", + "href": "/library/early-signs-autism-by-age" + } + ] + }, + "en/autism-fall-break-routine-tips-halloween-thanksgiving": { + "previous": { + "title": "Now Enrolling: AIA Preparatory Academy for Children Ages 2–6", + "href": "/library/aba-school-readiness-arizona" + }, + "next": { + "title": "Why Emotional Regulation Should Be the Heart of Every ABA Program", + "href": "/library/emotional-regulation-aba" + }, + "related": [ + { + "image": "/assets/images/hero-aba-preschool-az_800x.jpg", + "alt": "teaching academic, social, communications, and independence skills", + "title": "Now Enrolling: AIA Preparatory Academy for Children Ages 2–6", + "href": "/library/aba-school-readiness-arizona" + }, + { + "image": "/assets/images/hero-summer-aba.webp", + "alt": "aba therapy summer time tips for parents and caregivers", + "title": "How to Support ABA Therapy Over Summer Break", + "href": "/library/aba-therapy-summer-routine-tips" + }, + { + "image": "/assets/images/child-shopping-cart-tired-cranky.jpg", + "alt": "child taking emotional regulation timeout in shopping cart - hero", + "title": "Why Emotional Regulation Should Be the Heart of Every ABA Program", + "href": "/library/emotional-regulation-aba" + } + ] + }, + "en/autism-family-self-care-tips": { + "previous": { + "title": "Individualized Care Plans in ABA Therapy", + "href": "/library/individualized-aba-therapy" + }, + "next": { + "title": "Guide to Teaching Self‑Advocacy in ABA", + "href": "/library/autism-self-advocacy-skills-aba" + }, + "related": [ + { + "image": "/assets/images/hero-proactive-reactive-strategies.webp", + "alt": "proactive reactive aba strategies guide - hero image", + "title": "Master Proactive & Reactive ABA Techniques – Schedule a Consultation", + "href": "/library/proactive-reactive-aba-strategies-guide" + }, + { + "image": "/assets/images/hero-prompting-parenting-benefits.webp", + "alt": "Benefits of Prompting & Parenting in ABA Therapy - hero image", + "title": "Benefits of Prompting & Parenting in ABA Therapy", + "href": "/library/aba-therapy-prompting-parenting-benefits" + }, + { + "image": "/assets/images/talk-not-social.jpg", + "alt": "talking child has trouble socializing - hero", + "title": "Why My Child Can Talk but Still Struggles Socially", + "href": "/library/social-pragmatic-communication-autism" + } + ] + }, + "en/autism-friendships-social-play-support": { + "previous": { + "title": "AAC and Visual Supports 101: Helping Your Child Be Heard", + "href": "/library/aac-visual-supports-autism" + }, + "related": [ + { + "image": "/assets/images/hero-play-leisure-skills-children-autism_800x.jpg", + "alt": "autism play and leisure skills for children with autism", + "title": "Autism Play: Helping Autistic Children Build Play and Leisure Skills", + "href": "/library/play-leisure-skills" + }, + { + "image": "/assets/images/visual-supports-aac-communication.png", + "alt": "child pointing to a picture on a digital AAC tablet during play", + "title": "AAC and Visual Supports 101: Helping Your Child Be Heard", + "href": "/library/aac-visual-supports-autism" + }, + { + "image": "/assets/images/communication-skills-autistic-children-hero_img.png", + "alt": "A parent and an autistic child smiling while using a picture communication board during playtime.", + "title": "Building Communication & Social Skills in Autistic Children: A Practical Guide for Families", + "href": "/library/communication-social-skills-autistic-children-guide" + } + ] + }, + "en/autism-self-advocacy-skills-aba": { + "previous": { + "title": "Discover Self‑Care Hacks for Parents of Children with Autism", + "href": "/library/autism-family-self-care-tips" + }, + "next": { + "title": "Executive Functioning Skills and Autism", + "href": "/library/executive-functioning-skills-autism" + }, + "related": [ + { + "image": "/assets/images/hero-aba-individual-care-plans.webp", + "alt": "individualized aba therapy - hero image", + "title": "Individualized Care Plans in ABA Therapy", + "href": "/library/individualized-aba-therapy" + }, + { + "image": "/assets/images/hero-integrity-empowerment-excellence_800x.jpg", + "alt": "Integrity, Empowerment and Excellence: Arizona Institute for Autism expands to new office - hero image", + "title": "Integrity, Empowerment and Excellence: Arizona Institute for Autism expands to new office", + "href": "/library/new-aia-scottsdale-office" + }, + { + "image": "/assets/images/hero-community-highlight-meet-rula-diab_800x.jpg", + "alt": "meet rula diab of aia - hero image", + "title": "Community Highlights: Meet Rula Diab of Arizona Institute for Autism", + "href": "/library/community-highlight-meet-rula-diab" + } + ] + }, + "en/autism-therapy-rapport-strategies": { + "previous": { + "title": "Benefits of Prompting & Parenting in ABA Therapy", + "href": "/library/aba-therapy-prompting-parenting-benefits" + }, + "next": { + "title": "Master Behavior Management: Discover the Four Functions of Behavior", + "href": "/library/behavior-management-functions-guide" + }, + "related": [ + { + "image": "/assets/images/hero-integrity-empowerment-excellence_800x.jpg", + "alt": "Integrity, Empowerment and Excellence: Arizona Institute for Autism expands to new office - hero image", + "title": "Integrity, Empowerment and Excellence: Arizona Institute for Autism expands to new office", + "href": "/library/new-aia-scottsdale-office" + }, + { + "image": "/assets/images/hero-november-2022-aia-update_800x.jpg", + "alt": "November AIA Update - hero image", + "title": "November AIA Update", + "href": "/library/november-2022-aia-update" + }, + { + "image": "/assets/images/hero-understanding-autism-support_800x.jpg", + "alt": "navigating the autism journey: understanding and supporting our children with autism - hero image", + "title": "Navigating the Autism Journey: Understanding and Supporting Our Children with Autism", + "href": "/library/understanding-autism-support" + } + ] + }, + "en/behavior-management-functions-guide": { + "previous": { + "title": "Learn the Secrets to Effective Rapport Building in ABA Therapy", + "href": "/library/autism-therapy-rapport-strategies" + }, + "next": { + "title": "Ease Back-to-School Time | ABA Antecedent & Consequence Interventions", + "href": "/library/aba-school-readiness-guide" + }, + "related": [ + { + "image": "/assets/images/hero-behavior-modification-techniques-reinforcement-theory_800x.jpg", + "alt": "Ultimate Guide to Behavior Modification Techniques & Reinforcement Theory - hero image", + "title": "The Ultimate Guide to Behavior Modification Techniques & Reinforcement Theory", + "href": "/library/behavior-modification-techniques-reinforcement-theory" + }, + { + "image": "/assets/images/hero-repetetive-behaviors.webp", + "alt": "Repetitive Behaviors with Children Diagnosed with Autism - hero image", + "title": "Repetitive Behaviors with Children Diagnosed with Autism", + "href": "/library/repetitive-behavior" + }, + { + "image": "/assets/images/hero-reduce-behavior-management_800x.jpg", + "alt": "reduce behavior management - hero image", + "title": "4 Ways on How to Reduce Behavior Management", + "href": "/library/reduce-behavior-management" + } + ] + }, + "en/behavior-modification-techniques-reinforcement-theory": { + "previous": { + "title": "AIA’s World Autism Community Day of Celebration", + "href": "/library/aia-world-autism-community-day-celebration" + }, + "next": { + "title": "Navigating the Autism Journey: Understanding and Supporting Our Children with Autism", + "href": "/library/understanding-autism-support" + }, + "related": [ + { + "image": "/assets/images/hero-enhancing-generalization-skills_800x.jpg", + "alt": "enhancing generalization skills in children with autism - hero image", + "title": "Enhancing Generalization for Broader Impact in Autism", + "href": "/library/enhancing-generalization-skills" + }, + { + "image": "/assets/images/hero-repetetive-behaviors.webp", + "alt": "Repetitive Behaviors with Children Diagnosed with Autism - hero image", + "title": "Repetitive Behaviors with Children Diagnosed with Autism", + "href": "/library/repetitive-behavior" + }, + { + "image": "/assets/images/hero-integrated-aba-model-announcement_800x.jpg", + "alt": "integrated aba model announcement - hero image", + "title": "Arizona Institute for Autism Adopts an Integrated ABA Model", + "href": "/library/integrated-aba-model-announcement" + } + ] + }, + "en/communication-social-skills-autistic-children-guide": { + "previous": { + "title": "What to Expect at Your Child’s First Autism Evaluation", + "href": "/library/autism-evaluation-what-to-expect" + }, + "next": { + "title": "Autism Guide for Parents and Caregivers", + "href": "/library/parents-guide-to-autism-and-aba" + }, + "related": [ + { + "image": "/assets/images/family-guide-to-autism-aba-at-home_hero.png", + "alt": "Parent and autistic child using visual supports, structured play, and calm routines together", + "title": "Autism Guide for Parents and Caregivers", + "href": "/library/parents-guide-to-autism-and-aba" + }, + { + "image": "/assets/images/autism-evaluation-expectations_hero.png", + "alt": "Parent and child meeting with a clinician in a calm, play-based autism evaluation setting", + "title": "What to Expect at Your Child’s First Autism Evaluation", + "href": "/library/autism-evaluation-what-to-expect" + }, + { + "image": "/assets/images/talk-not-social.jpg", + "alt": "talking child has trouble socializing - hero", + "title": "Why My Child Can Talk but Still Struggles Socially", + "href": "/library/social-pragmatic-communication-autism" + } + ] + }, + "en/community-highlight-meet-rula-diab": { + "previous": { + "title": "Integrity, Empowerment and Excellence: Arizona Institute for Autism expands to new office", + "href": "/library/new-aia-scottsdale-office" + }, + "next": { + "title": "ASD Sensory-Friendly Thanksgiving Recipe: Pumpkin Dump Cake", + "href": "/library/asd-sensory-friendly-recipe-thanksgiving-pumpkin-cake" + }, + "related": [ + { + "image": "/assets/images/hero-aba-individual-care-plans.webp", + "alt": "individualized aba therapy - hero image", + "title": "Individualized Care Plans in ABA Therapy", + "href": "/library/individualized-aba-therapy" + }, + { + "image": "/assets/images/hero-teach-self-advocacy.webp", + "alt": "autism self-advocacy skills through aba - hero image", + "title": "Guide to Teaching Self‑Advocacy in ABA", + "href": "/library/autism-self-advocacy-skills-aba" + }, + { + "image": "/assets/images/hero-integrity-empowerment-excellence_800x.jpg", + "alt": "Integrity, Empowerment and Excellence: Arizona Institute for Autism expands to new office - hero image", + "title": "Integrity, Empowerment and Excellence: Arizona Institute for Autism expands to new office", + "href": "/library/new-aia-scottsdale-office" + } + ] + }, + "en/critical-thinking-skills": { + "previous": { + "title": "November AIA Update", + "href": "/library/november-2022-aia-update" + }, + "next": { + "title": "New Year Goals for Our Children with Autism", + "href": "/library/new-year-goals-2023" + }, + "related": [ + { + "image": "/assets/images/hero-managing-aggressive-behavior-outbursts_800x.jpg", + "alt": "Managing Aggressive Behavior Outbursts and Proper Communication with Your Child During those Moments - hero image", + "title": "Managing Aggressive Behavior Outbursts and Proper Communication with Your Child During those Moments", + "href": "/library/managing-aggressive-behavior-outbursts" + }, + { + "image": "/assets/images/hero-new-year-goals-2024.webp", + "alt": "2024 new year reflection and planning for autism support and awareness - hero image", + "title": "New Year 2024: Holiday Tips for Autism Support & Awareness", + "href": "/library/new-year-2024-autism-holiday-tips" + }, + { + "image": "/assets/images/hero-aba-preschool-az_800x.jpg", + "alt": "teaching academic, social, communications, and independence skills", + "title": "Now Enrolling: AIA Preparatory Academy for Children Ages 2–6", + "href": "/library/aba-school-readiness-arizona" + } + ] + }, + "en/early-signs-autism-by-age": { + "previous": { + "title": "Autism Evaluation in Arizona: A Parent's Step-by-Step Guide", + "href": "/library/autism-evaluation-diagnosis-arizona-parent-guide" + }, + "next": { + "title": "What to Expect at Your Child’s First Autism Evaluation", + "href": "/library/autism-evaluation-what-to-expect" + }, + "related": [ + { + "image": "/assets/images/autism-evaluation-expectations_hero.png", + "alt": "Parent and child meeting with a clinician in a calm, play-based autism evaluation setting", + "title": "What to Expect at Your Child’s First Autism Evaluation", + "href": "/library/autism-evaluation-what-to-expect" + }, + { + "image": "/assets/images/autism_evaluation_arizona_hero.jpg", + "alt": "Pediatrician performing a toddler", + "title": "Autism Evaluation in Arizona: A Parent's Step-by-Step Guide", + "href": "/library/autism-evaluation-diagnosis-arizona-parent-guide" + }, + { + "image": "/assets/images/hero-behavior-modification-techniques-reinforcement-theory_800x.jpg", + "alt": "Ultimate Guide to Behavior Modification Techniques & Reinforcement Theory - hero image", + "title": "The Ultimate Guide to Behavior Modification Techniques & Reinforcement Theory", + "href": "/library/behavior-modification-techniques-reinforcement-theory" + } + ] + }, + "en/emotional-regulation-aba": { + "previous": { + "title": "Autism and Fall Break: How to Keep Routines Calm and Predictable", + "href": "/library/autism-fall-break-routine-tips-halloween-thanksgiving" + }, + "next": { + "title": "Heart Full of Gratitude", + "href": "/library/heart-full-of-gratitude" + }, + "related": [ + { + "image": "/assets/images/family-guide-to-autism-aba-at-home_hero.png", + "alt": "Parent and autistic child using visual supports, structured play, and calm routines together", + "title": "Autism Guide for Parents and Caregivers", + "href": "/library/parents-guide-to-autism-and-aba" + }, + { + "image": "/assets/images/hero-executive-functioning-skills-autism.webp", + "alt": "hero image - executive functioning skills strategies for autistic children", + "title": "Executive Functioning Skills and Autism", + "href": "/library/executive-functioning-skills-autism" + }, + { + "image": "/assets/images/autism-evaluation-expectations_hero.png", + "alt": "Parent and child meeting with a clinician in a calm, play-based autism evaluation setting", + "title": "What to Expect at Your Child’s First Autism Evaluation", + "href": "/library/autism-evaluation-what-to-expect" + } + ] + }, + "en/enhancing-generalization-skills": { + "previous": { + "title": "Navigating the Autism Journey: Understanding and Supporting Our Children with Autism", + "href": "/library/understanding-autism-support" + }, + "next": { + "title": "Arizona Institute for Autism Adopts an Integrated ABA Model", + "href": "/library/integrated-aba-model-announcement" + }, + "related": [ + { + "image": "/assets/images/hero-repetetive-behaviors.webp", + "alt": "Repetitive Behaviors with Children Diagnosed with Autism - hero image", + "title": "Repetitive Behaviors with Children Diagnosed with Autism", + "href": "/library/repetitive-behavior" + }, + { + "image": "/assets/images/hero-aba-therapy-benefits_800x.jpg", + "alt": "Benefits of ABA Therapy for Children with Autism - hero image", + "title": "The Benefits of ABA Therapy for Children with Autism", + "href": "/library/aba-therapy-benefits" + }, + { + "image": "/assets/images/hero-new-year-goals-2024.webp", + "alt": "2024 new year reflection and planning for autism support and awareness - hero image", + "title": "New Year 2024: Holiday Tips for Autism Support & Awareness", + "href": "/library/new-year-2024-autism-holiday-tips" + } + ] + }, + "en/executive-functioning-skills-autism": { + "previous": { + "title": "Guide to Teaching Self‑Advocacy in ABA", + "href": "/library/autism-self-advocacy-skills-aba" + }, + "next": { + "title": "First/Then Cards: Empowering Transitions for Autistic Children", + "href": "/library/first-then-cards-autism-transitions" + }, + "related": [ + { + "image": "/assets/images/hero-rapport-strategies.webp", + "alt": "rapport strategies for effective aba therapy - hero image", + "title": "Learn the Secrets to Effective Rapport Building in ABA Therapy", + "href": "/library/autism-therapy-rapport-strategies" + }, + { + "image": "/assets/images/hero-new-year-goals-2024.webp", + "alt": "2024 new year reflection and planning for autism support and awareness - hero image", + "title": "New Year 2024: Holiday Tips for Autism Support & Awareness", + "href": "/library/new-year-2024-autism-holiday-tips" + }, + { + "image": "/assets/images/hero-sensory-processing.webp", + "alt": "sensory processing challenges in aba therapy - hero image", + "title": "Understanding Sensory Processing in the Context of ABA Therapy", + "href": "/library/sensory-processing" + } + ] + }, + "en/first-then-cards-autism-transitions": { + "previous": { + "title": "Executive Functioning Skills and Autism", + "href": "/library/executive-functioning-skills-autism" + }, + "next": { + "title": "How to Support ABA Therapy Over Summer Break", + "href": "/library/aba-therapy-summer-routine-tips" + }, + "related": [ + { + "image": "/assets/images/hero-sensory-processing.webp", + "alt": "sensory processing challenges in aba therapy - hero image", + "title": "Understanding Sensory Processing in the Context of ABA Therapy", + "href": "/library/sensory-processing" + }, + { + "image": "/assets/images/hero-learn-dtt-net-methods.webp", + "alt": "Learn About DTT and NET Methods for More Effective ABA Therapy - hero image", + "title": "Learn About DTT and NET Methods for More Effective ABA Therapy", + "href": "/library/aba-therapy-dtt-net-guide" + }, + { + "image": "/assets/images/hero-prompting-parenting-benefits.webp", + "alt": "Benefits of Prompting & Parenting in ABA Therapy - hero image", + "title": "Benefits of Prompting & Parenting in ABA Therapy", + "href": "/library/aba-therapy-prompting-parenting-benefits" + } + ] + }, + "en/heart-full-of-gratitude": { + "previous": { + "title": "Why Emotional Regulation Should Be the Heart of Every ABA Program", + "href": "/library/emotional-regulation-aba" + }, + "next": { + "title": "Why My Child Can Talk but Still Struggles Socially", + "href": "/library/social-pragmatic-communication-autism" + }, + "related": [ + { + "image": "/assets/images/hero-integrity-empowerment-excellence_800x.jpg", + "alt": "Integrity, Empowerment and Excellence: Arizona Institute for Autism expands to new office - hero image", + "title": "Integrity, Empowerment and Excellence: Arizona Institute for Autism expands to new office", + "href": "/library/new-aia-scottsdale-office" + }, + { + "image": "/assets/images/hero-meet-rula-diab-shoutout-az_800x.jpg", + "alt": "Meet Rula Diab | Board Certified Behavior Analyst (BCBA) - hero image", + "title": "Meet Rula Diab | Board Certified Behavior Analyst (BCBA)", + "href": "/library/meet-rula-diab-bcba" + }, + { + "image": "/assets/images/hero-aba-therapy-benefits_800x.jpg", + "alt": "Benefits of ABA Therapy for Children with Autism - hero image", + "title": "The Benefits of ABA Therapy for Children with Autism", + "href": "/library/aba-therapy-benefits" + } + ] + }, + "en/individualized-aba-therapy": { + "previous": { + "title": "Master Proactive & Reactive ABA Techniques – Schedule a Consultation", + "href": "/library/proactive-reactive-aba-strategies-guide" + }, + "next": { + "title": "Discover Self‑Care Hacks for Parents of Children with Autism", + "href": "/library/autism-family-self-care-tips" + }, + "related": [ + { + "image": "/assets/images/hero-community-highlight-meet-rula-diab_800x.jpg", + "alt": "meet rula diab of aia - hero image", + "title": "Community Highlights: Meet Rula Diab of Arizona Institute for Autism", + "href": "/library/community-highlight-meet-rula-diab" + }, + { + "image": "/assets/images/hero-teach-self-advocacy.webp", + "alt": "autism self-advocacy skills through aba - hero image", + "title": "Guide to Teaching Self‑Advocacy in ABA", + "href": "/library/autism-self-advocacy-skills-aba" + }, + { + "image": "/assets/images/hero-integrity-empowerment-excellence_800x.jpg", + "alt": "Integrity, Empowerment and Excellence: Arizona Institute for Autism expands to new office - hero image", + "title": "Integrity, Empowerment and Excellence: Arizona Institute for Autism expands to new office", + "href": "/library/new-aia-scottsdale-office" + } + ] + }, + "en/integrated-aba-model-announcement": { + "previous": { + "title": "Enhancing Generalization for Broader Impact in Autism", + "href": "/library/enhancing-generalization-skills" + }, + "next": { + "title": "Repetitive Behaviors with Children Diagnosed with Autism", + "href": "/library/repetitive-behavior" + }, + "related": [ + { + "image": "/assets/images/hero-repetetive-behaviors.webp", + "alt": "Repetitive Behaviors with Children Diagnosed with Autism - hero image", + "title": "Repetitive Behaviors with Children Diagnosed with Autism", + "href": "/library/repetitive-behavior" + }, + { + "image": "/assets/images/hero-enhancing-generalization-skills_800x.jpg", + "alt": "enhancing generalization skills in children with autism - hero image", + "title": "Enhancing Generalization for Broader Impact in Autism", + "href": "/library/enhancing-generalization-skills" + }, + { + "image": "/assets/images/hero-asd-sensory-friendly-recipe-pancakes_800x.jpg", + "alt": "asd sensory-friendly pancake recipe - hero image", + "title": "ASD Sensory-Friendly Recipes: Pancakes", + "href": "/library/asd-sensory-friendly-recipes-pancakes" + } + ] + }, + "en/managing-aggressive-behavior-outbursts": { + "previous": { + "title": "Play and Leisure Skills for Children with Autism", + "href": "/library/play-leisure-skills" + }, + "next": { + "title": "November AIA Update", + "href": "/library/november-2022-aia-update" + }, + "related": [ + { + "image": "/assets/images/hero-critical-thinking-skills_800x.jpg", + "alt": "Critical Thinking Skills for Children with Autism - hero image", + "title": "Critical Thinking Skills for Children with Autism", + "href": "/library/critical-thinking-skills" + }, + { + "image": "/assets/images/hero-proactive-reactive-strategies.webp", + "alt": "proactive reactive aba strategies guide - hero image", + "title": "Master Proactive & Reactive ABA Techniques – Schedule a Consultation", + "href": "/library/proactive-reactive-aba-strategies-guide" + }, + { + "image": "/assets/images/hero-new-year-goals-2023_800x.jpg", + "alt": "New Year Goals for Our Children with Autism - hero image", + "title": "New Year Goals for Our Children with Autism", + "href": "/library/new-year-goals-2023" + } + ] + }, + "en/meet-rula-diab-bcba": { + "previous": { + "title": "The Benefits of ABA Therapy for Children with Autism", + "href": "/library/aba-therapy-benefits" + }, + "next": { + "title": "Integrity, Empowerment and Excellence: Arizona Institute for Autism expands to new office", + "href": "/library/new-aia-scottsdale-office" + }, + "related": [ + { + "image": "/assets/images/hero-community-highlight-meet-rula-diab_800x.jpg", + "alt": "meet rula diab of aia - hero image", + "title": "Community Highlights: Meet Rula Diab of Arizona Institute for Autism", + "href": "/library/community-highlight-meet-rula-diab" + }, + { + "image": "/assets/images/hero-repetetive-behaviors.webp", + "alt": "Repetitive Behaviors with Children Diagnosed with Autism - hero image", + "title": "Repetitive Behaviors with Children Diagnosed with Autism", + "href": "/library/repetitive-behavior" + }, + { + "image": "/assets/images/hero-teach-self-advocacy.webp", + "alt": "autism self-advocacy skills through aba - hero image", + "title": "Guide to Teaching Self‑Advocacy in ABA", + "href": "/library/autism-self-advocacy-skills-aba" + } + ] + }, + "en/new-aia-scottsdale-office": { + "previous": { + "title": "Meet Rula Diab | Board Certified Behavior Analyst (BCBA)", + "href": "/library/meet-rula-diab-bcba" + }, + "next": { + "title": "Community Highlights: Meet Rula Diab of Arizona Institute for Autism", + "href": "/library/community-highlight-meet-rula-diab" + }, + "related": [ + { + "image": "/assets/images/hero-teach-self-advocacy.webp", + "alt": "autism self-advocacy skills through aba - hero image", + "title": "Guide to Teaching Self‑Advocacy in ABA", + "href": "/library/autism-self-advocacy-skills-aba" + }, + { + "image": "/assets/images/hero-aba-individual-care-plans.webp", + "alt": "individualized aba therapy - hero image", + "title": "Individualized Care Plans in ABA Therapy", + "href": "/library/individualized-aba-therapy" + }, + { + "image": "/assets/images/hero-aba-therapy-benefits_800x.jpg", + "alt": "Benefits of ABA Therapy for Children with Autism - hero image", + "title": "The Benefits of ABA Therapy for Children with Autism", + "href": "/library/aba-therapy-benefits" + } + ] + }, + "en/new-year-2024-autism-holiday-tips": { + "previous": { + "title": "Guide: Simple ABA Techniques for Toilet Training Children with Autism", + "href": "/library/aba-toilet-training-child-autism" + }, + "next": { + "title": "Understanding Sensory Processing in the Context of ABA Therapy", + "href": "/library/sensory-processing" + }, + "related": [ + { + "image": "/assets/images/hero-aba-therapy-benefits_800x.jpg", + "alt": "Benefits of ABA Therapy for Children with Autism - hero image", + "title": "The Benefits of ABA Therapy for Children with Autism", + "href": "/library/aba-therapy-benefits" + }, + { + "image": "/assets/images/hero-aba-toilet-training-child-autism.webp", + "alt": "potty train children with autism using simple aba techniques - hero image", + "title": "Guide: Simple ABA Techniques for Toilet Training Children with Autism", + "href": "/library/aba-toilet-training-child-autism" + }, + { + "image": "/assets/images/hero-enhancing-generalization-skills_800x.jpg", + "alt": "enhancing generalization skills in children with autism - hero image", + "title": "Enhancing Generalization for Broader Impact in Autism", + "href": "/library/enhancing-generalization-skills" + } + ] + }, + "en/new-year-goals-2023": { + "previous": { + "title": "Critical Thinking Skills for Children with Autism", + "href": "/library/critical-thinking-skills" + }, + "next": { + "title": "AIA’s World Autism Community Day of Celebration", + "href": "/library/aia-world-autism-community-day-celebration" + }, + "related": [ + { + "image": "/assets/images/hero-behavior-functions-management.webp", + "alt": "Master Behavior Management: Discover the Four Functions of Behavior - hero image", + "title": "Master Behavior Management: Discover the Four Functions of Behavior", + "href": "/library/behavior-management-functions-guide" + }, + { + "image": "/assets/images/hero-behavior-modification-techniques-reinforcement-theory_800x.jpg", + "alt": "Ultimate Guide to Behavior Modification Techniques & Reinforcement Theory - hero image", + "title": "The Ultimate Guide to Behavior Modification Techniques & Reinforcement Theory", + "href": "/library/behavior-modification-techniques-reinforcement-theory" + }, + { + "image": "/assets/images/hero-rapport-strategies.webp", + "alt": "rapport strategies for effective aba therapy - hero image", + "title": "Learn the Secrets to Effective Rapport Building in ABA Therapy", + "href": "/library/autism-therapy-rapport-strategies" + } + ] + }, + "en/november-2022-aia-update": { + "previous": { + "title": "Managing Aggressive Behavior Outbursts and Proper Communication with Your Child During those Moments", + "href": "/library/managing-aggressive-behavior-outbursts" + }, + "next": { + "title": "Critical Thinking Skills for Children with Autism", + "href": "/library/critical-thinking-skills" + }, + "related": [ + { + "image": "/assets/images/hero-reduce-behavior-management_800x.jpg", + "alt": "reduce behavior management - hero image", + "title": "4 Ways on How to Reduce Behavior Management", + "href": "/library/reduce-behavior-management" + }, + { + "image": "/assets/images/hero-aba-therapy-benefits_800x.jpg", + "alt": "Benefits of ABA Therapy for Children with Autism - hero image", + "title": "The Benefits of ABA Therapy for Children with Autism", + "href": "/library/aba-therapy-benefits" + }, + { + "image": "/assets/images/hero-aba-preschool-az_800x.jpg", + "alt": "teaching academic, social, communications, and independence skills", + "title": "Now Enrolling: AIA Preparatory Academy for Children Ages 2–6", + "href": "/library/aba-school-readiness-arizona" + } + ] + }, + "en/parents-guide-to-autism-and-aba": { + "previous": { + "title": "Building Communication & Social Skills in Autistic Children: A Practical Guide for Families", + "href": "/library/communication-social-skills-autistic-children-guide" + }, + "related": [ + { + "image": "/assets/images/hero-aba-preschool-az_800x.jpg", + "alt": "teaching academic, social, communications, and independence skills", + "title": "Now Enrolling: AIA Preparatory Academy for Children Ages 2–6", + "href": "/library/aba-school-readiness-arizona" + }, + { + "image": "/assets/images/child-shopping-cart-tired-cranky.jpg", + "alt": "child taking emotional regulation timeout in shopping cart - hero", + "title": "Why Emotional Regulation Should Be the Heart of Every ABA Program", + "href": "/library/emotional-regulation-aba" + }, + { + "image": "/assets/images/autism-evaluation-expectations_hero.png", + "alt": "Parent and child meeting with a clinician in a calm, play-based autism evaluation setting", + "title": "What to Expect at Your Child’s First Autism Evaluation", + "href": "/library/autism-evaluation-what-to-expect" + } + ] + }, + "en/play-leisure-skills": { + "previous": { + "title": "4 Ways on How to Reduce Behavior Management", + "href": "/library/reduce-behavior-management" + }, + "next": { + "title": "Managing Aggressive Behavior Outbursts and Proper Communication with Your Child During those Moments", + "href": "/library/managing-aggressive-behavior-outbursts" + }, + "related": [ + { + "image": "/assets/images/parallel-players-hero.png", + "alt": "Three children engaging happily in parallel play on a colorful rug.", + "title": "Supporting Friendships and Social Play for Children with Autism", + "href": "/library/autism-friendships-social-play-support" + }, + { + "image": "/assets/images/communication-skills-autistic-children-hero_img.png", + "alt": "A parent and an autistic child smiling while using a picture communication board during playtime.", + "title": "Building Communication & Social Skills in Autistic Children: A Practical Guide for Families", + "href": "/library/communication-social-skills-autistic-children-guide" + }, + { + "image": "/assets/images/hero-new-year-goals-2023_800x.jpg", + "alt": "New Year Goals for Our Children with Autism - hero image", + "title": "New Year Goals for Our Children with Autism", + "href": "/library/new-year-goals-2023" + } + ] + }, + "en/positive-reinforcement-techniques": { + "previous": { + "title": "How to Support ABA Therapy Over Summer Break", + "href": "/library/aba-therapy-summer-routine-tips" + }, + "next": { + "title": "Now Enrolling: AIA Preparatory Academy for Children Ages 2–6", + "href": "/library/aba-school-readiness-arizona" + }, + "related": [ + { + "image": "/assets/images/hero-prompting-parenting-benefits.webp", + "alt": "Benefits of Prompting & Parenting in ABA Therapy - hero image", + "title": "Benefits of Prompting & Parenting in ABA Therapy", + "href": "/library/aba-therapy-prompting-parenting-benefits" + }, + { + "image": "/assets/images/hero-learn-dtt-net-methods.webp", + "alt": "Learn About DTT and NET Methods for More Effective ABA Therapy - hero image", + "title": "Learn About DTT and NET Methods for More Effective ABA Therapy", + "href": "/library/aba-therapy-dtt-net-guide" + }, + { + "image": "/assets/images/hero-rapport-strategies.webp", + "alt": "rapport strategies for effective aba therapy - hero image", + "title": "Learn the Secrets to Effective Rapport Building in ABA Therapy", + "href": "/library/autism-therapy-rapport-strategies" + } + ] + }, + "en/proactive-reactive-aba-strategies-guide": { + "previous": { + "title": "Ease Back-to-School Time | ABA Antecedent & Consequence Interventions", + "href": "/library/aba-school-readiness-guide" + }, + "next": { + "title": "Individualized Care Plans in ABA Therapy", + "href": "/library/individualized-aba-therapy" + }, + "related": [ + { + "image": "/assets/images/hero-aba-preschool-az_800x.jpg", + "alt": "teaching academic, social, communications, and independence skills", + "title": "Now Enrolling: AIA Preparatory Academy for Children Ages 2–6", + "href": "/library/aba-school-readiness-arizona" + }, + { + "image": "/assets/images/hero-prompting-parenting-benefits.webp", + "alt": "Benefits of Prompting & Parenting in ABA Therapy - hero image", + "title": "Benefits of Prompting & Parenting in ABA Therapy", + "href": "/library/aba-therapy-prompting-parenting-benefits" + }, + { + "image": "/assets/images/hero-executive-functioning-skills-autism.webp", + "alt": "hero image - executive functioning skills strategies for autistic children", + "title": "Executive Functioning Skills and Autism", + "href": "/library/executive-functioning-skills-autism" + } + ] + }, + "en/reduce-behavior-management": { + "next": { + "title": "Play and Leisure Skills for Children with Autism", + "href": "/library/play-leisure-skills" + }, + "related": [ + { + "image": "/assets/images/hero-asd-sensory-friendly-recipe-pancakes_800x.jpg", + "alt": "asd sensory-friendly pancake recipe - hero image", + "title": "ASD Sensory-Friendly Recipes: Pancakes", + "href": "/library/asd-sensory-friendly-recipes-pancakes" + }, + { + "image": "/assets/images/hero-new-year-goals-2023_800x.jpg", + "alt": "New Year Goals for Our Children with Autism - hero image", + "title": "New Year Goals for Our Children with Autism", + "href": "/library/new-year-goals-2023" + }, + { + "image": "/assets/images/hero-aba-toilet-training-child-autism.webp", + "alt": "potty train children with autism using simple aba techniques - hero image", + "title": "Guide: Simple ABA Techniques for Toilet Training Children with Autism", + "href": "/library/aba-toilet-training-child-autism" + } + ] + }, + "en/repetitive-behavior": { + "previous": { + "title": "Arizona Institute for Autism Adopts an Integrated ABA Model", + "href": "/library/integrated-aba-model-announcement" + }, + "next": { + "title": "ASD Sensory-Friendly Recipes: Pancakes", + "href": "/library/asd-sensory-friendly-recipes-pancakes" + }, + "related": [ + { + "image": "/assets/images/hero-aba-therapy-benefits_800x.jpg", + "alt": "Benefits of ABA Therapy for Children with Autism - hero image", + "title": "The Benefits of ABA Therapy for Children with Autism", + "href": "/library/aba-therapy-benefits" + }, + { + "image": "/assets/images/hero-aba-toilet-training-child-autism.webp", + "alt": "potty train children with autism using simple aba techniques - hero image", + "title": "Guide: Simple ABA Techniques for Toilet Training Children with Autism", + "href": "/library/aba-toilet-training-child-autism" + }, + { + "image": "/assets/images/hero-enhancing-generalization-skills_800x.jpg", + "alt": "enhancing generalization skills in children with autism - hero image", + "title": "Enhancing Generalization for Broader Impact in Autism", + "href": "/library/enhancing-generalization-skills" + } + ] + }, + "en/sensory-processing": { + "previous": { + "title": "New Year 2024: Holiday Tips for Autism Support & Awareness", + "href": "/library/new-year-2024-autism-holiday-tips" + }, + "next": { + "title": "Learn About DTT and NET Methods for More Effective ABA Therapy", + "href": "/library/aba-therapy-dtt-net-guide" + }, + "related": [ + { + "image": "/assets/images/hero-prompting-parenting-benefits.webp", + "alt": "Benefits of Prompting & Parenting in ABA Therapy - hero image", + "title": "Benefits of Prompting & Parenting in ABA Therapy", + "href": "/library/aba-therapy-prompting-parenting-benefits" + }, + { + "image": "/assets/images/hero-rapport-strategies.webp", + "alt": "rapport strategies for effective aba therapy - hero image", + "title": "Learn the Secrets to Effective Rapport Building in ABA Therapy", + "href": "/library/autism-therapy-rapport-strategies" + }, + { + "image": "/assets/images/hero-positive-reinforcement-techniques.webp", + "alt": "aba therapy positive reinforcement", + "title": "Positive Reinforcement in ABA Therapy to Encourage Skill Development", + "href": "/library/positive-reinforcement-techniques" + } + ] + }, + "en/social-pragmatic-communication-autism": { + "previous": { + "title": "Heart Full of Gratitude", + "href": "/library/heart-full-of-gratitude" + }, + "next": { + "title": "Autism Evaluation in Arizona: A Parent's Step-by-Step Guide", + "href": "/library/autism-evaluation-diagnosis-arizona-parent-guide" + }, + "related": [ + { + "image": "/assets/images/hero-executive-functioning-skills-autism.webp", + "alt": "hero image - executive functioning skills strategies for autistic children", + "title": "Executive Functioning Skills and Autism", + "href": "/library/executive-functioning-skills-autism" + }, + { + "image": "/assets/images/autism-evaluation-expectations_hero.png", + "alt": "Parent and child meeting with a clinician in a calm, play-based autism evaluation setting", + "title": "What to Expect at Your Child’s First Autism Evaluation", + "href": "/library/autism-evaluation-what-to-expect" + }, + { + "image": "/assets/images/communication-skills-autistic-children-hero_img.png", + "alt": "A parent and an autistic child smiling while using a picture communication board during playtime.", + "title": "Building Communication & Social Skills in Autistic Children: A Practical Guide for Families", + "href": "/library/communication-social-skills-autistic-children-guide" + } + ] + }, + "en/understanding-autism-support": { + "previous": { + "title": "The Ultimate Guide to Behavior Modification Techniques & Reinforcement Theory", + "href": "/library/behavior-modification-techniques-reinforcement-theory" + }, + "next": { + "title": "Enhancing Generalization for Broader Impact in Autism", + "href": "/library/enhancing-generalization-skills" + }, + "related": [ + { + "image": "/assets/images/hero-aba-therapy-benefits_800x.jpg", + "alt": "Benefits of ABA Therapy for Children with Autism - hero image", + "title": "The Benefits of ABA Therapy for Children with Autism", + "href": "/library/aba-therapy-benefits" + }, + { + "image": "/assets/images/hero-new-year-goals-2024.webp", + "alt": "2024 new year reflection and planning for autism support and awareness - hero image", + "title": "New Year 2024: Holiday Tips for Autism Support & Awareness", + "href": "/library/new-year-2024-autism-holiday-tips" + }, + { + "image": "/assets/images/hero-repetetive-behaviors.webp", + "alt": "Repetitive Behaviors with Children Diagnosed with Autism - hero image", + "title": "Repetitive Behaviors with Children Diagnosed with Autism", + "href": "/library/repetitive-behavior" + } + ] + } +} diff --git a/www/src/layouts/BlogPostLayout.astro b/www/src/layouts/BlogPostLayout.astro index 30dd2e4..a53f64a 100644 --- a/www/src/layouts/BlogPostLayout.astro +++ b/www/src/layouts/BlogPostLayout.astro @@ -1,5 +1,6 @@ --- import BaseLayout from './BaseLayout.astro'; +import BlogPostFooter from '../components/BlogPostFooter.astro'; import LikeViewCounter from '../components/LikeViewCounter.astro'; const { entry } = Astro.props; --- @@ -16,4 +17,5 @@ const { entry } = Astro.props;
+ diff --git a/www/tools/extract-blog-footers.mjs b/www/tools/extract-blog-footers.mjs new file mode 100644 index 0000000..8009a91 --- /dev/null +++ b/www/tools/extract-blog-footers.mjs @@ -0,0 +1,58 @@ +import fs from 'node:fs/promises'; +import path from 'node:path'; +import { fileURLToPath } from 'node:url'; +import fg from 'fast-glob'; + +const root = path.resolve(path.dirname(fileURLToPath(import.meta.url)), '..'); +const contentRoot = path.join(root, 'src/content/blog'); +const output = path.join(root, 'src/data/blog-footers.json'); +const footerHeading = /^### Similar Blog Posts\s*$/m; +const navPattern = /^ ?(Previous Post|Next Post) ?\n\n###### \[([^\]]+)\]\(([^)]+)\)\s*$/gm; +const relatedPattern = /!\[([^\]]*)\]\(([^)]+)\)\s*\n\n#### \[([^\]]+)\]\(([^)]+)\)/g; + +const routeFor = (lang, href) => { + if (/^(?:https?:|mailto:|tel:|#|\/)/.test(href)) return href; + const slug = href.replace(/^\.\.\//, '').replace(/^library\//, ''); + return `${lang === 'en' ? '' : `/${lang}`}/library/${slug}`; +}; + +const records = {}; +for (const file of await fg('**/*.{md,mdx}', { cwd: contentRoot, onlyFiles: true })) { + const source = await fs.readFile(path.join(contentRoot, file), 'utf8'); + const heading = footerHeading.exec(source); + if (!heading) continue; + + const [lang, filename] = file.split('/'); + const slug = filename.replace(/\.(?:md|mdx)$/, ''); + const before = source.slice(0, heading.index); + const footer = source.slice(heading.index); + const navigation = {}; + let firstNavIndex = heading.index; + + for (const match of before.matchAll(navPattern)) { + firstNavIndex = Math.min(firstNavIndex, match.index); + navigation[match[1] === 'Previous Post' ? 'previous' : 'next'] = { + title: match[2], + href: routeFor(lang, match[3]) + }; + } + + const related = [...footer.matchAll(relatedPattern)].map((match) => ({ + image: match[2], + alt: match[1], + title: match[3], + href: routeFor(lang, match[4]) + })); + + records[`${lang}/${slug}`] = { ...navigation, related }; + await fs.writeFile(path.join(contentRoot, file), `${source.slice(0, firstNavIndex).trimEnd()}\n`); +} + +const count = Object.keys(records).length; +if (count === 0) { + throw new Error('No blog footer fragments found; existing footer data was left unchanged.'); +} + +await fs.mkdir(path.dirname(output), { recursive: true }); +await fs.writeFile(output, `${JSON.stringify(records, null, 2)}\n`); +console.log(`Extracted and removed footer fragments from ${count} blog posts.`);