37 lines
1.6 KiB
Plaintext
37 lines
1.6 KiB
Plaintext
---
|
|
import Root from '../../layouts/Root.astro';
|
|
import Main from '../../layouts/Bundle.astro';
|
|
import CloudopsImage from '../../assets/img/careers/cloud-engineer-banner.webp';
|
|
import Banner from '../../components/banner/banner.astro';
|
|
import { cloudopsCareerProgram } from '../../data';
|
|
import CloudopsDescription from '../../sections/cloudops/cloudops-description.astro';
|
|
import CloudopsFeatures from '../../sections/cloudops/cloudops-features.astro';
|
|
import CareerSection from '../../sections/global/career-section/career-section.astro';
|
|
import CareerProgram from '../../sections/global/career-program/career-program.astro';
|
|
import Cta from '../../sections/global/cta/cta.astro';
|
|
|
|
const programLink:string = 'https://drive.google.com/file/d/1IQVPvhikLos-xs8s3gJazN7Nj45ZSNYL/preview';
|
|
---
|
|
|
|
<Root
|
|
title='Carrera Cloud Engineer'
|
|
description='Nuestra carrera CloudOps 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='/cloudops/'>
|
|
<Main className="" id="cloudops">
|
|
<Banner
|
|
as="section"
|
|
id="featureSection"
|
|
className="content-space-t-4"
|
|
backgroundImage={CloudopsImage}
|
|
backgroundAlt="Cloudops image">
|
|
<CloudopsFeatures />
|
|
</Banner>
|
|
<CareerSection>
|
|
<CloudopsDescription />
|
|
</CareerSection>
|
|
<Cta />
|
|
<CareerProgram href={programLink} list={cloudopsCareerProgram} />
|
|
<Cta />
|
|
</Main>
|
|
</Root>
|