This commit is contained in:
2025-04-17 17:14:33 -03:00
parent 73f5175146
commit 08eba30a35
2 changed files with 30 additions and 32 deletions

View File

@@ -7,6 +7,7 @@ import { CheckBadgeIcon, LockClosedIcon } from '@heroicons/react/24/solid'
import { LinkedInIcon } from '~/components/LinkedInIcon'
import Layout from '~/layouts/Layout.astro'
import ClientsLogo from '~/components/ClientsLogo.astro'
import { Form } from '~/components/Form'
import placeholder from '~/assets/placeholder.png'
import mulherdenegocios from '~/assets/mulher-de-negocios.png'
import homemdenegocios from '~/assets/homem-de-negocios.png'
@@ -33,7 +34,7 @@ const trainer = data.course?.trainer ? await getEntry(data.course?.trainer) : nu
<Layout title={data.title}>
<div class="space-y-6 lg:space-y-24">
<Container className="lg:flex items-center justify-start gap-6">
<Container className="lg:flex items-center justify-start gap-6 max-lg:pt-6">
<Picture
src={data?.img ? data.img : placeholder}
alt={data.title}
@@ -216,5 +217,7 @@ const trainer = data.course?.trainer ? await getEntry(data.course?.trainer) : nu
</div>
</div>
</Container>
<Form client:load />
</div>
</Layout>