wio
This commit is contained in:
@@ -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
|
||||
|
||||
11
superpage/src/components/Course/Plans.astro
Normal file
11
superpage/src/components/Course/Plans.astro
Normal 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>
|
||||
@@ -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";
|
||||
|
||||
Reference in New Issue
Block a user