refactor(component): rename contact obfuscation component
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
---
|
||||
import Button from './Button.astro';
|
||||
import EmailObfuscation from './EmailObfuscation.astro';
|
||||
import ContactObfuscation from './ContactObfuscation.astro';
|
||||
|
||||
interface Props {
|
||||
title?: string;
|
||||
@@ -20,7 +20,7 @@ const { title = 'Contact AIA' } = Astro.props;
|
||||
<label>Service of interest<select name="service"><option>ABA Therapy</option><option>Autism Evaluation</option><option>Learner Social Club</option><option>Other</option></select></label>
|
||||
<label>How can we help?<textarea name="message" rows="5"></textarea></label>
|
||||
<Button type="submit" disabled aria-describedby="contact-form-note" class="contact-form-card__submit">Submit</Button>
|
||||
<p id="contact-form-note" class="contact-form-card__note">Online submission is not yet connected. Please call <EmailObfuscation phone="(480) 687-7099" hrefValue="+14806877099" obfuscatedText="9907-786 (084)" />.</p>
|
||||
<p id="contact-form-note" class="contact-form-card__note">Online submission is not yet connected. Please call <ContactObfuscation phone="(480) 687-7099" hrefValue="+14806877099" obfuscatedText="9907-786 (084)" />.</p>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
|
||||
+1
-1
@@ -20,7 +20,7 @@ const {
|
||||
} = Astro.props;
|
||||
|
||||
if ((email ? 1 : 0) + (phone ? 1 : 0) !== 1) {
|
||||
throw new Error('EmailObfuscation requires exactly one of email or phone.');
|
||||
throw new Error('ContactObfuscation requires exactly one of email or phone.');
|
||||
}
|
||||
|
||||
const contactType = email ? 'email' : 'phone';
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
import EmailObfuscation from './EmailObfuscation.astro';
|
||||
import ContactObfuscation from './ContactObfuscation.astro';
|
||||
import site from '../data/site.json';
|
||||
const year = new Date().getFullYear();
|
||||
const { lang = 'en' } = Astro.props;
|
||||
@@ -32,11 +32,11 @@ const labels = lang === 'es'
|
||||
<div class="footer-contact">
|
||||
<div class="footer-contact-item">
|
||||
<img src="/assets/images/phone-blue.svg" alt="" aria-hidden="true" width="24" height="24" />
|
||||
<EmailObfuscation phone={site.phone} hrefValue="+14806877099" obfuscatedText="9907-786 (084)" />
|
||||
<ContactObfuscation phone={site.phone} hrefValue="+14806877099" obfuscatedText="9907-786 (084)" />
|
||||
</div>
|
||||
<div class="footer-contact-item">
|
||||
<img src="/assets/images/envelope-blue.svg" alt="" aria-hidden="true" width="24" height="24" />
|
||||
<EmailObfuscation email={site.email} obfuscatedText="moc.msitua4etutitsniza@ofni" />
|
||||
<ContactObfuscation email={site.email} obfuscatedText="moc.msitua4etutitsniza@ofni" />
|
||||
</div>
|
||||
<div class="footer-contact-item">
|
||||
<img src="/assets/images/location-blue.svg" alt="" aria-hidden="true" width="24" height="24" />
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
import Button from './Button.astro';
|
||||
import EmailObfuscation from './EmailObfuscation.astro';
|
||||
import ContactObfuscation from './ContactObfuscation.astro';
|
||||
const { title = 'Schedule Your Free Consultation', showBackground = false } = Astro.props;
|
||||
---
|
||||
<section class:list={['form-section', { 'form-section-background': showBackground }]} aria-labelledby="form-title">
|
||||
@@ -15,7 +15,7 @@ const { title = 'Schedule Your Free Consultation', showBackground = false } = As
|
||||
<label>Service of interest<select name="service"><option>ABA Therapy</option><option>Autism Evaluation</option><option>Learner Social Club</option><option>Other</option></select></label>
|
||||
<label>How can we help?<textarea name="message" rows="5"></textarea></label>
|
||||
<Button type="submit" disabled aria-describedby="form-note">Submit</Button>
|
||||
<p id="form-note" class="form-note">Online submission is not yet connected. Please call <EmailObfuscation phone="(480) 687-7099" hrefValue="+14806877099" obfuscatedText="9907-786 (084)" />.</p>
|
||||
<p id="form-note" class="form-note">Online submission is not yet connected. Please call <ContactObfuscation phone="(480) 687-7099" hrefValue="+14806877099" obfuscatedText="9907-786 (084)" />.</p>
|
||||
</form>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
import Button from '../Button.astro';
|
||||
import EmailObfuscation from '../EmailObfuscation.astro';
|
||||
import ContactObfuscation from '../ContactObfuscation.astro';
|
||||
const groups = [
|
||||
{
|
||||
title: 'Board Certified Behavioral Analysts & Psychologists',
|
||||
@@ -69,7 +69,7 @@ const groups = [
|
||||
<p class="eyebrow">Join the AIA Team!</p>
|
||||
<h2>Employment Opportunities</h2>
|
||||
<p>Apply online to join the AIA team! At the Arizona Institute for Autism (AIA) we are on a mission to improve special education and strengthen communities throughout Arizona.</p>
|
||||
<p>Our talented and passionate employees are a critical piece to the high-quality ABA therapy we provide along with our commitment to behavioral health, school solutions, and community outreach. For questions regarding open positions, please contact us at <EmailObfuscation email="hr@azinstitute4autism.com" obfuscatedText="hr [at] abaclinicaz [dot] com" class="team-email" />.</p>
|
||||
<p>Our talented and passionate employees are a critical piece to the high-quality ABA therapy we provide along with our commitment to behavioral health, school solutions, and community outreach. For questions regarding open positions, please contact us at <ContactObfuscation email="hr@azinstitute4autism.com" obfuscatedText="hr [at] abaclinicaz [dot] com" class="team-email" />.</p>
|
||||
<Button href="/careers">View Open Positions</Button>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
@@ -13,7 +13,7 @@ tags: []
|
||||
draft: false
|
||||
---
|
||||
|
||||
import EmailObfuscation from '../../../components/EmailObfuscation.astro';
|
||||
import ContactObfuscation from '../../../components/ContactObfuscation.astro';
|
||||
|
||||
Applied Behavior Analysis (ABA) is an evidence-based approach that utilizes the principles of behavior analysis to modify maladaptive behaviors and enhance socially significant behaviors. It is often employed for children with Autism Spectrum Disorder (ASD). ABA aims to teach a variety of skills, such as communication, social interactions, and daily skills, all within a safe, engaging, and fun environment conducive to therapeutic success. It also helps children minimize disruptive behaviors that may impede their learning, while prioritizing the child's individual autonomy.
|
||||
|
||||
@@ -23,4 +23,4 @@ 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 <EmailObfuscation phone="(480) 687-7099" hrefValue="+14806877099" obfuscatedText="9907-786 (084)" />, or email <EmailObfuscation email="info@azinstitute4autism.com" obfuscatedText="info [at] azinstitute4autism [dot] 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!
|
||||
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 <ContactObfuscation phone="(480) 687-7099" hrefValue="+14806877099" obfuscatedText="9907-786 (084)" />, or email <ContactObfuscation email="info@azinstitute4autism.com" obfuscatedText="info [at] azinstitute4autism [dot] 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!
|
||||
|
||||
@@ -13,7 +13,7 @@ tags: []
|
||||
draft: false
|
||||
---
|
||||
|
||||
import EmailObfuscation from '../../../components/EmailObfuscation.astro';
|
||||
import ContactObfuscation from '../../../components/ContactObfuscation.astro';
|
||||
|
||||
Toilet training a child with autism can be a complex process that requires patience, consistency, and tailored strategies. Applied Behavior Analysis (ABA) offers effective techniques to support this journey. Here's a structured approach to facilitate toilet training for children with autism:
|
||||
|
||||
@@ -63,4 +63,4 @@ 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 <EmailObfuscation phone="(480) 687-7099" hrefValue="+14806877099" obfuscatedText="9907-786 (084)" />, or email <EmailObfuscation email="info@azinstitute4autism.com" obfuscatedText="info [at] azinstitute4autism [dot] 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!
|
||||
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 <ContactObfuscation phone="(480) 687-7099" hrefValue="+14806877099" obfuscatedText="9907-786 (084)" />, or email <ContactObfuscation email="info@azinstitute4autism.com" obfuscatedText="info [at] azinstitute4autism [dot] 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!
|
||||
|
||||
@@ -13,7 +13,7 @@ tags: []
|
||||
draft: false
|
||||
---
|
||||
|
||||
import EmailObfuscation from '../../../components/EmailObfuscation.astro';
|
||||
import ContactObfuscation from '../../../components/ContactObfuscation.astro';
|
||||
|
||||
Hello AIA families,
|
||||
|
||||
@@ -47,4 +47,4 @@ 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 <EmailObfuscation email="kelly@azinstitute4autism.com" obfuscatedText="kelly [at] azinstitute4autism [dot] com" />.
|
||||
If you have questions about AIA's World Autism Community Day of Celebration or are interested in providing a sensory-friendly booth, contact <ContactObfuscation email="kelly@azinstitute4autism.com" obfuscatedText="kelly [at] azinstitute4autism [dot] com" />.
|
||||
|
||||
@@ -13,7 +13,7 @@ tags: []
|
||||
draft: false
|
||||
---
|
||||
|
||||
import EmailObfuscation from '../../../components/EmailObfuscation.astro';
|
||||
import ContactObfuscation from '../../../components/ContactObfuscation.astro';
|
||||
|
||||
As a parent of a child diagnosed with [autism spectrum disorder](https://www.autismspeaks.org/what-autism), you may experience challenges when it comes to mealtime. Many children on the spectrum struggle with [sensory and food sensitivities](https://www.eatright.org/health/health-conditions/intellectual-and-developmental-disabilities/nutrition-for-your-child-with-autism-spectrum-disorder-asd), making it difficult to find foods that they prefer. With Thanksgiving quickly approaching, you may be wondering if there are any recipes that your child may enjoy for the holiday. Well good news- you are in the right place! For this month’s blog, I will be sharing an easy, delicious Thanksgiving recipe that you and your child will both enjoy- Pumpkin Dump Cake! This recipe is a great twist on the classic pumpkin pie.
|
||||
|
||||
@@ -75,4 +75,4 @@ 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 <EmailObfuscation phone="(480) 707-2195" hrefValue="+14807072195" obfuscatedText="5912-707 (084)" />, or email <EmailObfuscation email="info@azinstitute4autism.com" obfuscatedText="info [at] azinstitute4autism [dot] 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)!
|
||||
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 <ContactObfuscation phone="(480) 707-2195" hrefValue="+14807072195" obfuscatedText="5912-707 (084)" />, or email <ContactObfuscation email="info@azinstitute4autism.com" obfuscatedText="info [at] azinstitute4autism [dot] 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)!
|
||||
|
||||
@@ -13,7 +13,7 @@ tags: []
|
||||
draft: false
|
||||
---
|
||||
|
||||
import EmailObfuscation from '../../../components/EmailObfuscation.astro';
|
||||
import ContactObfuscation from '../../../components/ContactObfuscation.astro';
|
||||
|
||||
If you are the parent of a child with autism spectrum disorder, you probably know how difficult mealtime can be. Many children with an autism diagnosis tend to have sensory processing disorder, which can make it difficult for them to enjoy certain foods due to the texture, consistency, temperature, etc. Your child may only prefer a small variety of foods, which often leaves their diet lacking the essential nutrients they need. In this blog series, I will be sharing sensory-friendly recipes and tips to hopefully make mealtime easy and fun for your kiddo! These recipes will help broaden your child’s horizons when it comes to food and nutrition.
|
||||
|
||||
@@ -91,4 +91,4 @@ 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 <EmailObfuscation phone="(480) 687-7099" hrefValue="+14806877099" obfuscatedText="9907-786 (084)" />, or email <EmailObfuscation email="info@azinstitute4autism.com" obfuscatedText="info [at] azinstitute4autism [dot] 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!
|
||||
For more information on aba therapy services offered by AIA or to book your free consultation, visit our [contact page](../contact), call us at <ContactObfuscation phone="(480) 687-7099" hrefValue="+14806877099" obfuscatedText="9907-786 (084)" />, or email <ContactObfuscation email="info@azinstitute4autism.com" obfuscatedText="info [at] azinstitute4autism [dot] 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!
|
||||
|
||||
@@ -13,7 +13,7 @@ tags: []
|
||||
draft: false
|
||||
---
|
||||
|
||||
import EmailObfuscation from '../../../components/EmailObfuscation.astro';
|
||||
import ContactObfuscation from '../../../components/ContactObfuscation.astro';
|
||||
|
||||
Children may exhibit maladaptive behaviors for various reasons, often driven by underlying functions. To address these behaviors, Applied Behavior clinicians use the [ABC model](https://www.iidc.indiana.edu/irca/articles/observing-behavior-using-a-b-c-data), a structured approach that helps identify patterns and triggers. This model involves observing a child's behavior in their natural environment, focusing on three key elements: the Antecedent (what happens before the behavior), the Behavior itself, and the Consequence (what follows the behavior). By carefully analyzing these factors, clinicians gain insights into why certain behaviors occur.
|
||||
|
||||
@@ -37,6 +37,6 @@ BCBA clinicians use [consequence interventions](https://specialconnections.ku.ed
|
||||
|
||||
## 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 <EmailObfuscation phone="(480) 687-7099" hrefValue="+14806877099" obfuscatedText="9907-786 (084)" />, or email <EmailObfuscation email="hello@azinstitute4autism.com" obfuscatedText="hello [at] azinstitute4autism [dot] com" />.
|
||||
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 <ContactObfuscation phone="(480) 687-7099" hrefValue="+14806877099" obfuscatedText="9907-786 (084)" />, or email <ContactObfuscation email="hello@azinstitute4autism.com" obfuscatedText="hello [at] azinstitute4autism [dot] com" />.
|
||||
|
||||
If you are looking for tips, check out more monthly [blog posts](../library) from AIA's clinical director, Rula Diab!
|
||||
|
||||
@@ -13,7 +13,7 @@ tags: []
|
||||
draft: false
|
||||
---
|
||||
|
||||
import EmailObfuscation from '../../../components/EmailObfuscation.astro';
|
||||
import ContactObfuscation from '../../../components/ContactObfuscation.astro';
|
||||
|
||||
Critical thinking is an important skill our children need to learn. It enables a child to generate the ability for a higher level of conceptual thinking and appropriately solve problems in their everyday life.
|
||||
|
||||
@@ -35,4 +35,4 @@ 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 <EmailObfuscation email="hello@azinsitute4autism.com" obfuscatedText="hello [at] azinsitute4autism [dot] com" /> or contact us directly from our contact page.
|
||||
For more information on how to manage aggressive behavior and proper communication, connect with us by sending your messages and questions to <ContactObfuscation email="hello@azinsitute4autism.com" obfuscatedText="hello [at] azinsitute4autism [dot] com" /> or contact us directly from our contact page.
|
||||
|
||||
@@ -13,7 +13,7 @@ tags: []
|
||||
draft: false
|
||||
---
|
||||
|
||||
import EmailObfuscation from '../../../components/EmailObfuscation.astro';
|
||||
import ContactObfuscation from '../../../components/ContactObfuscation.astro';
|
||||
|
||||
Generalization is a crucial aspect of learning, ensuring that skills and behaviors extend beyond the initial learning environment. Without generalization, individuals may struggle to apply what they’ve learned to new situations, limiting the effectiveness of their education or therapy.
|
||||
|
||||
@@ -41,6 +41,6 @@ Understanding the three primary types of generalization—stimulus, response, an
|
||||
|
||||
## 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 <EmailObfuscation phone="(480) 687-7099" hrefValue="+14806877099" obfuscatedText="9907-786 (084)" />, or email <EmailObfuscation email="info@azinstitute4autism.com" obfuscatedText="info [at] azinstitute4autism [dot] com" />.
|
||||
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 <ContactObfuscation phone="(480) 687-7099" hrefValue="+14806877099" obfuscatedText="9907-786 (084)" />, or email <ContactObfuscation email="info@azinstitute4autism.com" obfuscatedText="info [at] azinstitute4autism [dot] com" />.
|
||||
|
||||
If you are looking for more tips, check our [monthly blog posts](../library) from AIA’s clinical director, Rula Diab!
|
||||
|
||||
@@ -13,7 +13,7 @@ tags: []
|
||||
draft: false
|
||||
---
|
||||
|
||||
import EmailObfuscation from '../../../components/EmailObfuscation.astro';
|
||||
import ContactObfuscation from '../../../components/ContactObfuscation.astro';
|
||||
|
||||
The Arizona Institute for Autism is thrilled to announce its transformation into an Integrated ABA Model, an approach that brings together clinicians and educators to provide exceptional intervention, learning experience, and individualized support for learners with autism. This model incorporates evidence-based interventions, ensuring a comprehensive approach tailored to each child's abilities, interests, and learning style.
|
||||
|
||||
@@ -27,4 +27,4 @@ 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 <EmailObfuscation phone="(480) 687-7099" hrefValue="+14806877099" obfuscatedText="9907-786 (084)" />, or email <EmailObfuscation email="info@azinstitute4autism.com" obfuscatedText="info [at] azinstitute4autism [dot] com" />. If you are looking for more tips, check out monthly [blog posts](../library) from AIA's clinical director, Rula Diab!
|
||||
For more information on services offered by AIA or to book your free consultation, visit [https://www.azinstitute4autism.com](../index), call us at <ContactObfuscation phone="(480) 687-7099" hrefValue="+14806877099" obfuscatedText="9907-786 (084)" />, or email <ContactObfuscation email="info@azinstitute4autism.com" obfuscatedText="info [at] azinstitute4autism [dot] com" />. If you are looking for more tips, check out monthly [blog posts](../library) from AIA's clinical director, Rula Diab!
|
||||
|
||||
@@ -13,7 +13,7 @@ tags: []
|
||||
draft: false
|
||||
---
|
||||
|
||||
import EmailObfuscation from '../../../components/EmailObfuscation.astro';
|
||||
import ContactObfuscation from '../../../components/ContactObfuscation.astro';
|
||||
|
||||
Children with Autism may have difficulty communicating their needs and wants. Struggling to express their needs and escaping an unpreferred situation can all result in a child feeling frustrated. Not having control over their environment can often lead to aggressive and unengaging behaviors.
|
||||
|
||||
@@ -35,4 +35,4 @@ 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 <EmailObfuscation email="hello@azinsitute4autism.com" obfuscatedText="hello [at] azinsitute4autism [dot] com" /> or contact us directly at www.azinstitute4autism.com/contactus.
|
||||
For more information on how to manage aggressive behavior and proper communication, connect with us by sending your messages and questions to <ContactObfuscation email="hello@azinsitute4autism.com" obfuscatedText="hello [at] azinsitute4autism [dot] com" /> or contact us directly at www.azinstitute4autism.com/contactus.
|
||||
|
||||
@@ -13,7 +13,7 @@ tags: []
|
||||
draft: false
|
||||
---
|
||||
|
||||
import EmailObfuscation from '../../../components/EmailObfuscation.astro';
|
||||
import ContactObfuscation from '../../../components/ContactObfuscation.astro';
|
||||
|
||||
The start of a new year is often associated with feelings of joy and optimism. It is also a time for parents of children with autism to reflect on their child's progress and set goals for the future. Here are some important factors to keep in mind for New Year 2024 when it comes to Applied Behavioral Analysis (ABA) therapy and holiday time:
|
||||
|
||||
@@ -27,4 +27,4 @@ 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 <EmailObfuscation phone="(480) 687-7099" hrefValue="+14806877099" obfuscatedText="9907-786 (084)" />, or email <EmailObfuscation email="info@azinstitute4autism.com" obfuscatedText="info [at] azinstitute4autism [dot] 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!
|
||||
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 <ContactObfuscation phone="(480) 687-7099" hrefValue="+14806877099" obfuscatedText="9907-786 (084)" />, or email <ContactObfuscation email="info@azinstitute4autism.com" obfuscatedText="info [at] azinstitute4autism [dot] 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!
|
||||
|
||||
@@ -13,10 +13,10 @@ tags: []
|
||||
draft: false
|
||||
---
|
||||
|
||||
import EmailObfuscation from '../../../components/EmailObfuscation.astro';
|
||||
import ContactObfuscation from '../../../components/ContactObfuscation.astro';
|
||||
|
||||
The New Year can be challenging for children with Autism and may lead to distress. Different factors affect the ability of children with autism to cope during those times. The inability to deal with changes and disruption in routines and cope with unclear expectations can be stressful. Additionally, sensory overload including loud music, bright lighting, strong smells, etc. may cause children to feel uncomfortable.
|
||||
|
||||
To decrease stress as much as possible during the holiday time, it is important to provide your child with visual Support (i.e., visual schedules) for the purpose of preparing your child to manage changes in schedule and minimize disruption and triggers. Additionally, social stories can be great visual support to clarify activities and events during the holidays along with using a reinforcer system (i.e., Token System) to handle behaviors before it happens.
|
||||
|
||||
For more information on how to manage aggressive behavior and proper communication, connect with us by sending your messages and questions to <EmailObfuscation email="hello@azinsitute4autism.com" obfuscatedText="hello [at] azinsitute4autism [dot] com" /> or contact us directly from our contact page.
|
||||
For more information on how to manage aggressive behavior and proper communication, connect with us by sending your messages and questions to <ContactObfuscation email="hello@azinsitute4autism.com" obfuscatedText="hello [at] azinsitute4autism [dot] com" /> or contact us directly from our contact page.
|
||||
|
||||
@@ -13,7 +13,7 @@ tags: []
|
||||
draft: false
|
||||
---
|
||||
|
||||
import EmailObfuscation from '../../../components/EmailObfuscation.astro';
|
||||
import ContactObfuscation from '../../../components/ContactObfuscation.astro';
|
||||
|
||||
Children can get overwhelmed, frustrated, and sensory overloaded at any time because of different needs, which can result in a child engaging in challenging behaviors. However, the common thing among all children is that they are in need of support with their communication skills. Different strategies can be used to prevent or minimize challenging behavior, including:
|
||||
|
||||
@@ -25,4 +25,4 @@ 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 <EmailObfuscation phone="(480) 687-7099" hrefValue="+14806877099" obfuscatedText="9907-786 (084)" /> or reach out via our [contact form](../contact).
|
||||
For more information on how to reduce behavior management, schedule a consultation with us today at <ContactObfuscation phone="(480) 687-7099" hrefValue="+14806877099" obfuscatedText="9907-786 (084)" /> or reach out via our [contact form](../contact).
|
||||
|
||||
@@ -13,7 +13,7 @@ tags: []
|
||||
draft: false
|
||||
---
|
||||
|
||||
import EmailObfuscation from '../../../components/EmailObfuscation.astro';
|
||||
import ContactObfuscation from '../../../components/ContactObfuscation.astro';
|
||||
|
||||
Children with autism often engage in repetitive behaviors as a way to cope with sensory overload. These behaviors can manifest in various ways including repetitive motor behaviors. Repetitive behaviors can affect children's learning experiences, social interactions, and engagement in daily activities.
|
||||
|
||||
@@ -21,4 +21,4 @@ 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 <EmailObfuscation phone="(480) 687-7099" hrefValue="+14806877099" obfuscatedText="9907-786 (084)" />, or email <EmailObfuscation email="info@azinstitute4autism.com" obfuscatedText="info [at] azinstitute4autism [dot] com" />. If you are looking for more tips, check out monthly [blog posts](../library) from AIA’s clinical director, Rula Diab!
|
||||
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 <ContactObfuscation phone="(480) 687-7099" hrefValue="+14806877099" obfuscatedText="9907-786 (084)" />, or email <ContactObfuscation email="info@azinstitute4autism.com" obfuscatedText="info [at] azinstitute4autism [dot] com" />. If you are looking for more tips, check out monthly [blog posts](../library) from AIA’s clinical director, Rula Diab!
|
||||
|
||||
@@ -13,7 +13,7 @@ tags: []
|
||||
draft: false
|
||||
---
|
||||
|
||||
import EmailObfuscation from '../../../components/EmailObfuscation.astro';
|
||||
import ContactObfuscation from '../../../components/ContactObfuscation.astro';
|
||||
|
||||
Parenting a child with autism is an immensely rewarding experience, but it also presents unique challenges. To provide the best support, it is crucial to navigate our children's development while comprehending their needs.
|
||||
|
||||
@@ -43,6 +43,6 @@ Remember, each child with autism is unique. By educating yourself, seeking suppo
|
||||
|
||||
## Looking for more information?
|
||||
|
||||
For more information on services offered by AIA or to book your free consultation, visit us at [https://www.azinstitute4autism.com](../index), call us at <EmailObfuscation phone="(480) 687-7099" hrefValue="+14806877099" obfuscatedText="9907-786 (084)" />, or email <EmailObfuscation email="hello@azinstitute4autism.com" obfuscatedText="hello [at] azinstitute4autism [dot] com" />.
|
||||
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 <ContactObfuscation phone="(480) 687-7099" hrefValue="+14806877099" obfuscatedText="9907-786 (084)" />, or email <ContactObfuscation email="hello@azinstitute4autism.com" obfuscatedText="hello [at] azinstitute4autism [dot] com" />.
|
||||
|
||||
If you are looking for more tips, check out [monthly blog posts](../library) from AIA’s clinical director, Rula Diab!
|
||||
|
||||
@@ -13,7 +13,7 @@ tags: []
|
||||
draft: false
|
||||
---
|
||||
|
||||
import EmailObfuscation from '../../../components/EmailObfuscation.astro';
|
||||
import ContactObfuscation from '../../../components/ContactObfuscation.astro';
|
||||
|
||||
La generalización es un aspecto crucial del aprendizaje, ya que garantiza que las habilidades y los comportamientos se extiendan más allá del entorno de aprendizaje inicial. Sin generalización, los individuos pueden tener dificultades para aplicar lo que han aprendido a nuevas situaciones, limitando la efectividad de su educación o terapia.
|
||||
|
||||
@@ -41,6 +41,6 @@ Comprender los tres tipos principales de generalización (estímulo, respuesta y
|
||||
|
||||
## ¿Buscas más información?
|
||||
|
||||
Para más información sobre los servicios ofrecidos por AIA, o para reservar su consulta gratuita, visítenos en [https://www.azinstitute4autism.com](../../index), contáctenos en <EmailObfuscation phone="(480) 687-7099" hrefValue="+14806877099" obfuscatedText="9907-786 (084)" />, o correo electrónico <EmailObfuscation email="info@azinstitute4autism.com" obfuscatedText="info [at] azinstitute4autism [dot] com" />.
|
||||
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 <ContactObfuscation phone="(480) 687-7099" hrefValue="+14806877099" obfuscatedText="9907-786 (084)" />, o correo electrónico <ContactObfuscation email="info@azinstitute4autism.com" obfuscatedText="info [at] azinstitute4autism [dot] com" />.
|
||||
|
||||
Si buscas más consejos, ¡consulta las [publicaciones mensuales de nuestro blog](../../library) de la directora clínica de AIA, Rula Diab!
|
||||
|
||||
@@ -7,7 +7,7 @@ lang: "en"
|
||||
translationKey: "contact"
|
||||
draft: false
|
||||
---
|
||||
import EmailObfuscation from '../../../components/EmailObfuscation.astro';
|
||||
import ContactObfuscation from '../../../components/ContactObfuscation.astro';
|
||||
import Button from '../../../components/Button.astro';
|
||||
|
||||
## Schedule a Tour
|
||||
@@ -20,11 +20,11 @@ Reach out to one of our expert Client Advocates to see if ABA-integrated therapy
|
||||
|
||||
If you have questions about any of our services and programs, feel free to use the contact form on this page. You may also call or email using the following information.
|
||||
|
||||
**General Inquiries:** <EmailObfuscation phone="(480) 687-7099" hrefValue="+14806877099" obfuscatedText="9907-786 (084)" />
|
||||
**General Inquiries:** <ContactObfuscation phone="(480) 687-7099" hrefValue="+14806877099" obfuscatedText="9907-786 (084)" />
|
||||
|
||||
**Billing Inquiries:** <EmailObfuscation phone="(602) 708-0429" hrefValue="+16027080429" obfuscatedText="9240-807 (206)" />
|
||||
**Billing Inquiries:** <ContactObfuscation phone="(602) 708-0429" hrefValue="+16027080429" obfuscatedText="9240-807 (206)" />
|
||||
|
||||
**Email:** <EmailObfuscation email="info@azinstitute4autism.com" obfuscatedText="moc.msitua4etutitsniza@ofni" />
|
||||
**Email:** <ContactObfuscation email="info@azinstitute4autism.com" obfuscatedText="moc.msitua4etutitsniza@ofni" />
|
||||
|
||||
**Address:** 8901 E. Raintree Drive, St #160 Scottsdale, AZ 85260
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ lang: "en"
|
||||
translationKey: "donate-autism-giveback"
|
||||
draft: false
|
||||
---
|
||||
import EmailObfuscation from '../../../components/EmailObfuscation.astro';
|
||||
import ContactObfuscation from '../../../components/ContactObfuscation.astro';
|
||||
|
||||
## Ways to Giveback
|
||||
|
||||
@@ -23,7 +23,7 @@ Visit AIA’s Amazon iGiveback Wishlist today, pick an item (or two!), and help
|
||||
|
||||
### Host a Fundraiser
|
||||
|
||||
Would you like to host a fundraiser to benefit the Arizona Institute for Autism? Please contact us at <EmailObfuscation email="info@azinstitute4autism.com" obfuscatedText="moc.msitua4etutitsniza@ofni" /> and a member of our team will be in touch to discuss next steps! All potential third party events will be evaluated in terms of their alignment with Arizona Institute for Autism's mission.
|
||||
Would you like to host a fundraiser to benefit the Arizona Institute for Autism? Please contact us at <ContactObfuscation email="info@azinstitute4autism.com" obfuscatedText="moc.msitua4etutitsniza@ofni" /> and a member of our team will be in touch to discuss next steps! All potential third party events will be evaluated in terms of their alignment with Arizona Institute for Autism's mission.
|
||||
|
||||
## Community 4 Autism
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@ draft: false
|
||||
---
|
||||
|
||||
import Button from '../../../components/Button.astro';
|
||||
import EmailObfuscation from '../../../components/EmailObfuscation.astro';
|
||||
import ContactObfuscation from '../../../components/ContactObfuscation.astro';
|
||||
|
||||
## Learner Social Club
|
||||
|
||||
@@ -51,6 +51,6 @@ The Learner Social Club currently serves youth learners aged 8–17 years. Our f
|
||||
|
||||
Interested in Trying Out Our Program?
|
||||
|
||||
Get a 1-Day Trial Pass by emailing us at <EmailObfuscation email="info@azinstitute4autism.com" obfuscatedText="info [at] azinstitute4autism [dot] com" />.
|
||||
Get a 1-Day Trial Pass by emailing us at <ContactObfuscation email="info@azinstitute4autism.com" obfuscatedText="info [at] azinstitute4autism [dot] com" />.
|
||||
|
||||
<Button href="https://form.jotform.com/231638510219149" target="_blank" center>Enroll Now</Button>
|
||||
|
||||
@@ -7,7 +7,7 @@ lang: "en"
|
||||
translationKey: "privacy-policy"
|
||||
draft: false
|
||||
---
|
||||
import EmailObfuscation from '../../../components/EmailObfuscation.astro';
|
||||
import ContactObfuscation from '../../../components/ContactObfuscation.astro';
|
||||
|
||||
Last updated: February 19, 2025
|
||||
|
||||
@@ -125,10 +125,10 @@ We may update this privacy policy periodically. All changes will be posted on th
|
||||
|
||||
If you have any questions or concerns about this privacy policy or wish to exercise your privacy rights, please contact us at:
|
||||
|
||||
- Email: <EmailObfuscation email="info@azinstitute4autism.com" obfuscatedText="info [at] azinstitute4autism [dot] com" />
|
||||
- Email: <ContactObfuscation email="info@azinstitute4autism.com" obfuscatedText="info [at] azinstitute4autism [dot] com" />
|
||||
|
||||
- Address: 8901 E. Raintree Drive, Suite #160 Scottsdale Arizona 85260
|
||||
|
||||
- Phone: <EmailObfuscation phone="(480) 687-7099" hrefValue="+14806877099" obfuscatedText="9907-786 (084)" />
|
||||
- Phone: <ContactObfuscation phone="(480) 687-7099" hrefValue="+14806877099" obfuscatedText="9907-786 (084)" />
|
||||
|
||||
By using our website and services, you confirm that you have read, understood, and agree to the terms outlined in this privacy policy.
|
||||
|
||||
@@ -7,7 +7,7 @@ lang: "en"
|
||||
translationKey: "schedule-consultation"
|
||||
draft: false
|
||||
---
|
||||
import EmailObfuscation from '../../../components/EmailObfuscation.astro';
|
||||
import ContactObfuscation from '../../../components/ContactObfuscation.astro';
|
||||
|
||||
We're here for you!
|
||||
|
||||
@@ -39,13 +39,13 @@ Along with ABA therapy for children and teens diagnosed with autism, our support
|
||||
|
||||
  Phone
|
||||
|
||||
<EmailObfuscation phone="(480) 687-7099" hrefValue="+14806877099" obfuscatedText="9907-786 (084)" />
|
||||
<ContactObfuscation phone="(480) 687-7099" hrefValue="+14806877099" obfuscatedText="9907-786 (084)" />
|
||||
|
||||

|
||||
|
||||
Email
|
||||
|
||||
<EmailObfuscation email="info@abaclinicaz.com" obfuscatedText="info [at] abaclinicaz [dot] com" />
|
||||
<ContactObfuscation email="info@abaclinicaz.com" obfuscatedText="info [at] abaclinicaz [dot] com" />
|
||||
|
||||

|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ lang: "es"
|
||||
translationKey: "contact"
|
||||
draft: false
|
||||
---
|
||||
import EmailObfuscation from '../../../components/EmailObfuscation.astro';
|
||||
import ContactObfuscation from '../../../components/ContactObfuscation.astro';
|
||||
import Button from '../../../components/Button.astro';
|
||||
|
||||
## Programar una visita
|
||||
@@ -20,11 +20,11 @@ Comuníquese con uno de nuestros defensores de clientes expertos para ver si la
|
||||
|
||||
Si tiene preguntas sobre alguno de nuestros servicios y programas, no dude en utilizar el formulario de contacto de esta página. También puede llamar o enviar un correo electrónico utilizando la siguiente información.
|
||||
|
||||
**Consultas generales:** <EmailObfuscation phone="(480) 687-7099" hrefValue="+14806877099" obfuscatedText="9907-786 (084)" />
|
||||
**Consultas generales:** <ContactObfuscation phone="(480) 687-7099" hrefValue="+14806877099" obfuscatedText="9907-786 (084)" />
|
||||
|
||||
**Consultas de facturación:** <EmailObfuscation phone="(602) 708-0429" hrefValue="+16027080429" obfuscatedText="9240-807 (206)" />
|
||||
**Consultas de facturación:** <ContactObfuscation phone="(602) 708-0429" hrefValue="+16027080429" obfuscatedText="9240-807 (206)" />
|
||||
|
||||
**Correo electrónico:** <EmailObfuscation email="info@azinstitute4autism.com" obfuscatedText="moc.msitua4etutitsniza@ofni" />
|
||||
**Correo electrónico:** <ContactObfuscation email="info@azinstitute4autism.com" obfuscatedText="moc.msitua4etutitsniza@ofni" />
|
||||
|
||||
**Dirección:** 8901 E. Raintree Drive, St #160 Scottsdale, AZ 85260
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@ draft: false
|
||||
---
|
||||
|
||||
import Button from '../../../components/Button.astro';
|
||||
import EmailObfuscation from '../../../components/EmailObfuscation.astro';
|
||||
import ContactObfuscation from '../../../components/ContactObfuscation.astro';
|
||||
|
||||
## Learner Social Club
|
||||
|
||||
@@ -59,6 +59,6 @@ Learner Social Club actualmente atiende a jóvenes de 8 a 17 años. Nuestras opc
|
||||
|
||||
¿Le interesa probar nuestro programa?
|
||||
|
||||
Obtenga un pase de prueba de 1 día enviándonos un correo electrónico a <EmailObfuscation email="info@azinstitute4autism.com" obfuscatedText="info [at] azinstitute4autism [dot] com" />.
|
||||
Obtenga un pase de prueba de 1 día enviándonos un correo electrónico a <ContactObfuscation email="info@azinstitute4autism.com" obfuscatedText="info [at] azinstitute4autism [dot] com" />.
|
||||
|
||||
<Button href="https://form.jotform.com/231638510219149" target="_blank">Enroll Now</Button>
|
||||
|
||||
@@ -12,7 +12,7 @@ const organizationSchema = {
|
||||
'@type': 'MedicalOrganization',
|
||||
name: site.name,
|
||||
url: site.url,
|
||||
// Contact details are rendered through EmailObfuscation to avoid plain text in HTML.
|
||||
// Contact details are rendered through ContactObfuscation to avoid plain text in HTML.
|
||||
address: {
|
||||
'@type': 'PostalAddress',
|
||||
streetAddress: '8901 E Raintree Dr Ste 160',
|
||||
|
||||
Reference in New Issue
Block a user