feat: convert site to astro via codex

This commit is contained in:
2026-06-08 11:17:39 -07:00
parent f3d3562cec
commit 33e78ff8a5
355 changed files with 19954 additions and 6 deletions
+67
View File
@@ -0,0 +1,67 @@
---
const groups = [
{
title: 'Board Certified Behavioral Analysts & Psychologists',
members: [
['team-rula-diab.webp', 'Rula Diab, BCBA, LBA, M.Ed', 'Clinical Director'],
['team-jennifer-espinoza.webp', 'Jennifer Espinoza, MAOL/ABA', 'Clinical BCBA'],
['team-timirah-clay.webp', 'Timirah Clay, M.Psy/ABA', 'Clinical BCBA']
]
},
{
title: 'Clinical Support',
members: [
['team-carol-harrington.webp', 'Carol Harrington, A.A. Spec. Ed.', 'Clinical Manager'],
['team-rachel-crosby.webp', 'Rachel Crosby', 'Clinical Administrator'],
['team-jennifer-bonefont.webp', 'Jennifer Bonefont, B.A. Psy', 'Clinical Client Advocate Supervisor']
]
},
{
title: 'Clinical Case Supervisors',
members: [['team-rachael-sanchez.webp', 'Rachael Sanchez, BS, M Psy/ABA', 'Clinical Supervisor']]
},
{
title: 'Clinical Education Specialists',
members: [['team-mahima-bedi.webp', 'Mahima Bedi', 'Clinical Instructor']]
},
{
title: 'ABA Clinic Management',
members: [
['team-mariah-marley.webp', 'Mariah Marley', 'Claims Billing'],
['team-eney-garcia.webp', 'Eney Garcia, BA', 'Accounts Billing'],
['team-ayah-shahbander.webp', 'Ayah Shahbander', 'Human Resources'],
['team-barbara-samanich.webp', 'Barbara Samanich, BFA', 'Creative Marketing Developer']
]
}
];
---
<article class="team-page">
<section class="team-intro container-narrow">
<h2>Our Clinical Team</h2>
<p class="script-label">Arizona Institute for Autism<br />Scottsdale, Arizona</p>
<p>AIA's clinical team consists of experienced professionals and paraprofessionals as well as Board Certified Behavior Analysts (BCBA) and Psychologists who have diverse experience and expertise.</p>
</section>
{groups.map((group) => (
<section class="team-group container">
<h2>{group.title}</h2>
<div class="team-grid">
{group.members.map(([image, name, role]) => (
<article class="team-member">
<img src={`/assets/images/${image}`} alt={name} loading="lazy" />
<h3>{name}</h3>
<p>{role}</p>
</article>
))}
</div>
</section>
))}
<section class="team-careers">
<div class="container-narrow">
<p class="script-label">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.</p>
<a class="button" href="/careers">View Open Positions</a>
</div>
</section>
</article>