Include Steps widget on pricing page

This commit is contained in:
widgeter
2023-08-10 11:46:50 +02:00
parent fc1459415b
commit 7a0b780620

View File

@ -2,6 +2,7 @@
import Layout from '~/layouts/PageLayout.astro';
import Prices from '~/components/widgets/Pricing.astro';
import FAQs from '~/components/widgets/FAQs.astro';
import Steps from '~/components/widgets/Steps.astro';
const metadata = {
title: 'Pricing',
@ -98,6 +99,52 @@ const metadata = {
]}
/>
<!-- Steps Widget ****************** -->
<Steps
title="A guided journey from plans to creativity"
tagline="simplified process"
isReversed={true}
items={[
{
title: 'Explore plans',
icon: 'tabler:number-1',
},
{
title: 'Select a plan',
icon: 'tabler:number-2',
},
{
title: 'Sign Up / Log In',
icon: 'tabler:number-3',
},
{
title: 'Review order',
icon: 'tabler:number-4',
},
{
title: 'Enter payment details',
icon: 'tabler:number-5',
},
{
title: 'Confirmation',
icon: 'tabler:number-6',
},
{
title: 'Confirmation',
icon: 'tabler:number-7',
},
{
title: 'Download and start using the template(s)',
icon: 'tabler:number-8',
},
]}
image={{
src: import('~/assets/images/creativity.jpg'),
alt: 'Steps image',
}}
/>
<!-- FAQs Widget ******************* -->
<FAQs