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

@@ -15,7 +15,7 @@ const { title } = Astro.props;
class="bg-lime-400 sticky top-0 z-10 py-3 drop-shadow shadow-sm"
x-data="{ open: false }"
x-on:keydown.esc.prevent.stop="open = false"
x-effect="document.documentElement.classList.toggle('overflow-hidden', open)"
x-effect="document.body.classList.toggle('overflow-hidden', open)"
>
<Container class="flex items-center">
<button

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>

View File

@@ -5,3 +5,4 @@ export { default as Features } from "./Features.astro";
export { default as Modules } from "./Modules.astro";
export { default as Trainer } from "./Trainer.astro";
export { default as Faq } from "./Faq.astro";
export { default as Plans } from "./Plans.astro";