Files
tabler/preview/pages/marketing/pricing.astro
T

20 lines
684 B
Plaintext

---
import MarketingLayout from '@shared/layouts/MarketingLayout.astro';
import Pricing from '@shared/components/marketing/sections/Pricing.astro';
import PricingBanner from '@shared/components/marketing/sections/PricingBanner.astro';
import Faq from '@shared/components/marketing/sections/Faq.astro';
---
<MarketingLayout title="Pricing">
<header class="hero">
<div class="container">
<h2 class="hero-title">Simple, transparent pricing</h2>
<p class="hero-description">Get early access to 100+ components and free updates every month. Make it yours today!</p>
</div>
</header>
<Pricing class="pt-0" />
<PricingBanner />
<Faq background="light" />
</MarketingLayout>