36 lines
1.6 KiB
Plaintext
36 lines
1.6 KiB
Plaintext
---
|
|
import Root from '../../layouts/Root.astro';
|
|
import Main from '../../layouts/Bundle.astro';
|
|
import AwsdevopsImage from '../../assets/img/careers/awsdevops-banner-desktop.webp';
|
|
import Banner from '../../components/banner/banner.astro';
|
|
import { awsDevopsCareerProgram } from '../../data';
|
|
import AwsCloudopsDescription from '../../sections/aws-devops/aws-devops-description.astro';
|
|
import AwsDevopsFeatures from '../../sections/aws-devops/aws-devops-features.astro';
|
|
import CareerProgram from '../../sections/global/career-program/career-program.astro';
|
|
import CareerSection from '../../sections/global/career-section/career-section.astro';
|
|
import Cta from '../../sections/global/cta/cta.astro';
|
|
|
|
const programLink:string = 'https://drive.google.com/file/d/12lYUSAcN0qI9R0_N63oPTimBKIYRKOh9/preview';
|
|
---
|
|
<Root
|
|
title='Carrera AWS DevOps Engineer'
|
|
description='Nuestra carrera AWS DevOps tiene exactamente lo que necesitas para salir rapidamente al mercado laboral. Incluye los cursos mas demandados y usados en toda empresa. Nuestro programa de estudio se realizo bajo un exhaustivo trabajo de investigacion con las principales empresas del mercado mundial.'
|
|
path='/awsdevops/'>
|
|
<Main className='' id='awsdevops'>
|
|
<Banner
|
|
as="section"
|
|
id="featureSection"
|
|
className="content-space-t-4"
|
|
backgroundImage={AwsdevopsImage}
|
|
backgroundAlt="AwsDevOps image">
|
|
<AwsDevopsFeatures />
|
|
</Banner>
|
|
<CareerSection>
|
|
<AwsCloudopsDescription />
|
|
</CareerSection>
|
|
<Cta />
|
|
<CareerProgram href={programLink} list={awsDevopsCareerProgram} download="AWS Programa de carrera"/>
|
|
<Cta />
|
|
</Main>
|
|
</Root>
|