Files
saladeaula.digital/superpage/src/components/Course/Faq.astro
2025-05-15 14:07:45 -03:00

18 lines
364 B
Plaintext

---
import Container from "~/components/Container.astro";
---
<Container {...Astro.props}>
<section
class="space-y-2.5 lg:py-24 lg:grid grid-cols-3 gap-5 mx-auto lg:w-5/8"
>
<h2 class="text-pretty text-4xl lg:text-5xl">
FAQ &mdash; Perguntas frequentes
</h2>
<div class="col-span-2">
<slot />
</div>
</section>
</Container>