1
0
mirror of https://github.com/tabler/tabler.git synced 2026-08-07 20:02:23 +04:00

Migrate preview and docs packages from Eleventy to Astro (#2694)

Co-authored-by: Bartek <xbartoszdobija@gmail.com>
This commit is contained in:
Paweł Kuna
2026-07-28 00:09:02 +02:00
committed by GitHub
parent 9820d110f6
commit d8956a06d6
1150 changed files with 52147 additions and 32804 deletions
+29
View File
@@ -0,0 +1,29 @@
---
// Port of preview/pages/settings-plan.html (layout: settings).
import SettingsLayout from '@shared/layouts/SettingsLayout.astro';
import PricingCard from '@shared/components/cards/PricingCard.astro';
import PricingCardEnterprise from '@shared/components/cards/PricingCardEnterprise.astro';
---
<SettingsLayout active="settings-plan">
<div class="card-body">
<h2 class="mb-4">Plans</h2>
<p class="text-secondary mb-4">This workspaces Basic Plan is set to $34 per month and will renew on June 19, 2022.</p>
<div class="row row-cards">
<div class="col-lg-4">
<PricingCard price="0" users={3} category="Free" />
</div>
<div class="col-lg-4">
<PricingCard price="49" users={10} category="Premium" features="1100" featuredColor="green" />
</div>
<div class="col-lg-4">
<PricingCard price="99" category="Enterprise" users={100} features="1110" />
</div>
<div class="col-12">
<PricingCardEnterprise />
</div>
</div>
</div>
</SettingsLayout>