18 lines
364 B
Plaintext
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 — Perguntas frequentes
|
|
</h2>
|
|
|
|
<div class="col-span-2">
|
|
<slot />
|
|
</div>
|
|
</section>
|
|
</Container>
|