This commit is contained in:
2025-04-29 18:34:59 -03:00
parent 67f73538c3
commit e85ac86d12
6 changed files with 105 additions and 32 deletions

View File

@@ -7,7 +7,7 @@ const { items = [] } = Astro.props;
<div id="carousel" class="relative">
<button
id="prev"
class="inset-y-0 left-0 px-1.5 bg-white/10 absolute cursor-pointer lg:hidden z-1"
class="inset-y-0 left-0 px-1.5 absolute cursor-pointer lg:hidden z-1"
aria-label="Anterior"
>
<Icon name="chevron-left" class="size-6" />
@@ -15,7 +15,7 @@ const { items = [] } = Astro.props;
<button
id="next"
class="inset-y-0 right-0 px-1.5 bg-white/10 absolute cursor-pointer lg:hidden z-1"
class="inset-y-0 right-0 px-1.5 absolute cursor-pointer lg:hidden z-1"
aria-label="Próximo"
>
<Icon name="chevron-right" class="size-6" />

View File

@@ -16,7 +16,7 @@ import Form from "./Contact.jsx";
<h1
class="text-lime-400 border border-lime-400 rounded-lg text-center p-0.5 uppercase"
>
EDUSEG Flexível
EDUSEG<sup>&reg;</sup> Flexível
</h1>
<h2 class="text-xl/6 font-semibold">
Catálogo completo sempre à sua disposição
@@ -43,7 +43,7 @@ import Form from "./Contact.jsx";
<h1
class="text-lime-400 border border-lime-400 rounded-lg text-center p-0.5 uppercase"
>
EDUSEG In-Company
EDUSEG<sup>&reg;</sup> In-Company
</h1>
<h2 class="text-xl/6 font-semibold">
Treinamento presencial na sua empresa
@@ -71,7 +71,7 @@ import Form from "./Contact.jsx";
<h1
class="text-lime-400 border border-lime-400 rounded-lg text-center p-0.5 uppercase"
>
EDUSEG Conteúdo
EDUSEG<sup>&reg;</sup> Conteúdo
</h1>
<h2 class="text-xl/6 font-semibold">
Leve nosso conteúdo para sua plataforma

View File

@@ -4,14 +4,16 @@ import Container from "~/components/Container.astro";
<Container>
<section class="lg:w-5/6 grid lg:grid-cols-3 gap-2.5 lg:gap-5 mx-auto">
<div class="bg-white/5 p-12 rounded-xl border border-white/10">
<div
class="bg-white/5 p-12 rounded-xl space-y-1.5 border border-white/10"
>
<h1 class="text-lime-400 text-4xl font-semibold uppercase">
+100 mil
</h1>
<span class="uppercase font-medium">Profissionais capacitados</span>
</div>
<div
class="bg-white/5 p-12 rounded-xl space-y-2.5 border border-white/10"
class="bg-white/5 p-12 rounded-xl space-y-1.5 border border-white/10"
>
<h1 class="text-lime-400 text-4xl font-semibold uppercase">
+5 mil
@@ -19,7 +21,7 @@ import Container from "~/components/Container.astro";
<span class="uppercase font-medium">Empresas atendidas</span>
</div>
<div
class="bg-white/5 p-12 rounded-xl space-y-2.5 border border-white/10"
class="bg-white/5 p-12 rounded-xl space-y-1.5 border border-white/10"
>
<h1 class="text-lime-400 text-4xl font-semibold uppercase">
Desde 2012

View File

@@ -37,10 +37,11 @@ const trainer = await getEntry("trainers", Astro.props.name);
href={url}
target="_blank"
aria-labelledby={alt}
class="text-white/70 hover:text-white"
>
<Icon
name={alt.toLowerCase()}
class="fill-white/70 size-5"
class=" size-5"
/>
</a>
);