1
0
mirror of https://github.com/tabler/tabler.git synced 2026-08-07 20:02:23 +04:00
Files
tabler/preview/pages/marketing/pricing.astro
T
2026-07-28 00:09:02 +02:00

23 lines
902 B
Plaintext

---
// Port of preview/pages/marketing/pricing.html (title: Pricing).
// The `description` front matter is not emitted by the base layout (no
// page-specific <meta name="description"> in the reference build) — no prop.
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>