mirror of
https://github.com/tabler/tabler.git
synced 2026-08-29 13:21:29 +04:00
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
20 lines
684 B
Plaintext
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>
|