Include a pricing widget on sass page
This commit is contained in:
@ -7,6 +7,7 @@ import Features from '~/components/widgets/Features.astro';
|
|||||||
import Steps2 from '~/components/widgets/Steps2.astro';
|
import Steps2 from '~/components/widgets/Steps2.astro';
|
||||||
import Content from '~/components/widgets/Content.astro';
|
import Content from '~/components/widgets/Content.astro';
|
||||||
import CallToAction from '~/components/widgets/CallToAction.astro';
|
import CallToAction from '~/components/widgets/CallToAction.astro';
|
||||||
|
import Pricing from '~/components/widgets/Pricing.astro';
|
||||||
|
|
||||||
import { headerData } from '~/navigation';
|
import { headerData } from '~/navigation';
|
||||||
|
|
||||||
@ -216,6 +217,49 @@ const metadata = {
|
|||||||
</Fragment>
|
</Fragment>
|
||||||
</Content>
|
</Content>
|
||||||
|
|
||||||
|
<!-- Pricing Widget ******************* -->
|
||||||
|
|
||||||
|
<Pricing
|
||||||
|
title="Flexible pricing plans for AstroWind"
|
||||||
|
prices={[
|
||||||
|
{
|
||||||
|
title: 'free',
|
||||||
|
subtitle: 'Access to core features and a wide range of templates',
|
||||||
|
price: '0',
|
||||||
|
period: '/ month',
|
||||||
|
callToAction: {
|
||||||
|
targetBlank: true,
|
||||||
|
text: 'Get Started for Free',
|
||||||
|
href: '#',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'pro',
|
||||||
|
subtitle: 'Premium templates and advanced customization',
|
||||||
|
price: 15,
|
||||||
|
period: '/ Month',
|
||||||
|
callToAction: {
|
||||||
|
targetBlank: true,
|
||||||
|
text: 'Upgrade to Pro',
|
||||||
|
href: '#',
|
||||||
|
},
|
||||||
|
hasRibbon: true,
|
||||||
|
ribbonTitle: 'popular',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Enterprise',
|
||||||
|
subtitle: 'Tailored solutions for large-scale projects',
|
||||||
|
price: 45,
|
||||||
|
period: '/ Month',
|
||||||
|
callToAction: {
|
||||||
|
targetBlank: true,
|
||||||
|
text: 'Unlock Enterprise Features',
|
||||||
|
href: '#',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
|
||||||
<!-- Steps2 Widget ****************** -->
|
<!-- Steps2 Widget ****************** -->
|
||||||
|
|
||||||
<Steps2
|
<Steps2
|
||||||
|
@ -110,46 +110,46 @@ const metadata = {
|
|||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<!-- Features3 Widget ************** -->
|
<!-- Features3 Widget ************** -->
|
||||||
|
|
||||||
<Features3
|
<Features3
|
||||||
title="Price-related features"
|
title="Price-related features"
|
||||||
subtitle="Discover the advantages of choosing our plans"
|
subtitle="Discover the advantages of choosing our plans"
|
||||||
columns={2}
|
columns={2}
|
||||||
items={[
|
items={[
|
||||||
{
|
{
|
||||||
title: 'Tiered Pricing Plans',
|
title: 'Tiered Pricing Plans',
|
||||||
description: 'Choose from a range of pricing plans designed to accommodate different budgets and requirements.',
|
description: 'Choose from a range of pricing plans designed to accommodate different budgets and requirements.',
|
||||||
icon: 'tabler:stairs',
|
icon: 'tabler:stairs',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: 'Transparent Pricing',
|
title: 'Transparent Pricing',
|
||||||
description: 'Clearly displayed pricing details for each plan, with no hidden costs or unexpected charges.',
|
description: 'Clearly displayed pricing details for each plan, with no hidden costs or unexpected charges.',
|
||||||
icon: 'tabler:flip-vertical',
|
icon: 'tabler:flip-vertical',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: 'Secure Payment Methods',
|
title: 'Secure Payment Methods',
|
||||||
description: 'Secure payment gateways to protect your financial information during transactions.',
|
description: 'Secure payment gateways to protect your financial information during transactions.',
|
||||||
icon: 'tabler:shield-lock',
|
icon: 'tabler:shield-lock',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: 'Instant Access',
|
title: 'Instant Access',
|
||||||
description: `Immediate access to your chosen plan's features and templates upon subscription.`,
|
description: `Immediate access to your chosen plan's features and templates upon subscription.`,
|
||||||
icon: 'tabler:accessible',
|
icon: 'tabler:accessible',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: 'Upgrade Value',
|
title: 'Upgrade Value',
|
||||||
description: 'Upgrade to higher-tier plans to unlock more features and benefits for an enhanced experience.',
|
description: 'Upgrade to higher-tier plans to unlock more features and benefits for an enhanced experience.',
|
||||||
icon: 'tabler:chevrons-up',
|
icon: 'tabler:chevrons-up',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '24H support',
|
title: '24H support',
|
||||||
description: 'Questions answered via live chat, email or phone, every calendar day.',
|
description: 'Questions answered via live chat, email or phone, every calendar day.',
|
||||||
icon: 'tabler:headset',
|
icon: 'tabler:headset',
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
classes={{ container: "max-w-5xl"}}
|
classes={{ container: 'max-w-5xl' }}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<!-- Steps Widget ****************** -->
|
<!-- Steps Widget ****************** -->
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user