This commit is contained in:
2025-04-28 20:16:00 -03:00
parent 7a45d58fb8
commit aaf4c1e9ee
6 changed files with 37 additions and 9 deletions

View File

@@ -0,0 +1,11 @@
---
import Container from "~/components/Container.astro";
---
<Container id="planos">
<div class="flex min-h-72 w-4/6 mx-auto">
<div class="border border-white/10 p-5 rounded-2xl w-3/6">Plan A</div>
<div class="text-black bg-lime-400 p-5 rounded-2xl w-4/6">Plan B</div>
<div class="border border-white/10 p-5 rounded-2xl w-3/6">Plan C</div>
</div>
</Container>