diff --git a/www/src/components/CareersPage.astro b/www/src/components/CareersPage.astro new file mode 100644 index 0000000..5a7abc4 --- /dev/null +++ b/www/src/components/CareersPage.astro @@ -0,0 +1,245 @@ +--- +const indeedUrl = 'https://www.indeed.com/cmp/Arizona-Institute-For-Autism/jobs'; + +const benefits = [ + 'Competitive Salary', 'Giveback Opportunity', 'Medical Insurance Plan', + 'Dental Life Insurance Plan', 'Vision Insurance Plan', 'Life Insurance Plan', + '401 K', 'Vacation Time', 'Sick Time', +]; + +const culture = [ + 'Family-Oriented', 'Supportive', 'Educational', + 'Motivating', 'Transparent', 'Inclusive', +]; + +const careerPath = [ + 'Behavioral Technician', 'Registered Behavioral Technician (RBT)', 'Senior Behavioral Technician, RBT', + 'Clinical Case Supervisor', 'BCBA (Board Certified Behavioral Analyst)', 'Clinical Assistant Director, BCBA', 'Clinical Director, BCBA', +]; + +const benefitIcons = [ + ['competitive-compensation_blue.svg', 'Competitive\nCompensation'], + ['flexible-scheduling_blue.svg', 'Flexible\nScheduling'], + ['caseload-teamwork_blue.svg', 'Caseload\nTeamwork'], + ['career-growth_blue.svg', 'Career\nGrowth'], + ['monthly-training_blue.svg', 'Monthly\nTraining'], + ['diversity-inclusion-opportunity_blue.svg', 'Diversity & Inclusive\nOpportunities'], +]; + +const careerCards = [ + { image: 'clinical-careers.webp', title: 'Clinical', body: "Bring your specialized knowledge to the clinical team. You'll get the training tools you need to serve a community you'll love." }, + { image: 'non-clinical-careers.webp', title: 'Non-Clinical', body: "Build a career you love as a member of our non-clinical team. In this role, you'll service team members, families, and the community while ensuring quality service." }, + { image: 'corporate-center-team-support.webp', title: 'Center Support', body: 'Take a fresh and innovative approach as a member of the Corporate team. Take on new challenges and opportunities to help shape the future of Pediatric care.' }, + { image: 'internships-practicum.webp', title: 'Internships', body: 'Our specialty interns help shape the future of our center carefully curated clinical, operations, advocacy, people, and other departments.' }, +]; +--- + +
+ + +
+

Join the AIA Team

+

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

+

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

+ View Open Positions +
+ + +
+
+
+

Our Benefits

+
    + {benefits.map((b) =>
  • {b}
  • )} +
+
+
+ Integrated ABA model + Compassionate AIA staff members +
+
+
+ + +
+
+
+

Our Diverse Culture

+
    + {culture.map((c) =>
  • {c}
  • )} +
+
+
+ Toddler with BCBA support + ABA learn and play skills +
+
+
+ + +
+
+
+

See Your Impact

+

The work we do has a direct impact on our learners, families, our communities, our team members, and the healthcare industry.

+

Every day you'll work with others driven to make a difference through transforming primary autism and pediatric care.

+
+ Scottsdale location ribbon-cutting ceremony +
+
+ + +
+

Expand & Explore Your Potential

+

We're growing fast, and that makes us a great place for you to grow. Focus on learning, discovering, and trying new areas that interest you. Advance in your chosen field. We'll help you get there.

+
+ + +
+
+
+

Scholarships Awarded in Partnership with GCU

+

Through AIA's partnership with GCU, all AIA employees, along with their spouses and dependents, are eligible for a tuition discount when they enroll in one of GCU's programs.

+ Grand Canyon University logo +
+
+
+ + +
+

Build Your Resume with BCBA Internships & Practicum

+

At the Arizona Institute for Autism, we afford students at Arizona State University to gain practicum experience. Due to our partnership with the Arizona State University Department of Psychology, future Board Certified Behavior Analysts will meet the training requirements of the ASU Department of Psychology MS ABA Program and the BACB.

+

Students will be given the opportunity to obtain thorough behavior-analytic experience and training in a fashion that fulfills its service provision related functions as an organization, so long as those functions are analytic in nature and the goals of the practicum experience are in accordance with the Behavior Analyst Certification Board.

+ Arizona State University +
+ + +
+
+

Choose Your Clinical Career Path

+

Work someone you love. Begin your journey with Arizona's leading ABA Integrated Therapy provider today!

+
+
+
    + {careerPath.map((p) =>
  • {p}
  • )} +
+
+
+ The Council of Autism Service Providers member logo + BACB logo +
+
+ View Open Positions +
+
+ + +
+
+

Benefits of Working at Arizona Institute for Autism

+
+ {benefitIcons.map(([icon, label]) => ( +
+ {label.replace('\n', +

{label.split('\n').map((line, i) => i > 0 ? [
, line] : line)}

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

Your Clinical Path to Success

+

Behavioral Technician → Registered Behavioral Technician → Senior Behavioral Technician

+

Clinical Case Supervisor → BCBA → Clinical Assistant Director → Clinical Director

+
+
+ + +
+
+

Find Your Path

+

If you have an interest, we have a department for you to step into and teams to support you in your growth.

+
+
+
+ {careerCards.map(({ image, title, body }) => ( +
+ {title} +
+

{title}

+

{body}

+
+
+ ))} +
+ View Open Positions +
+
+ +
+ + diff --git a/www/src/layouts/PageLayout.astro b/www/src/layouts/PageLayout.astro index 30b416d..4d2f2ba 100644 --- a/www/src/layouts/PageLayout.astro +++ b/www/src/layouts/PageLayout.astro @@ -4,6 +4,7 @@ import FormShell from '../components/FormShell.astro'; import TeamPage from '../components/TeamPage.astro'; import AboutPage from '../components/AboutPage.astro'; import ServicesPage from '../components/ServicesPage.astro'; +import CareersPage from '../components/CareersPage.astro'; import PageHero from '../components/PageHero.astro'; import { pageHeroImages } from '../data/page-visuals'; const { entry } = Astro.props; @@ -58,6 +59,8 @@ const heroImage = pageHeroImages[entry.data.slug]; ? : entry.data.slug === 'services' && entry.data.lang === 'en' ? + : entry.data.slug === 'careers' && entry.data.lang === 'en' + ? :
} {showForm && }