Add a Features3 widget

This commit is contained in:
widgeter
2023-08-04 19:54:29 +02:00
parent 88e90fccbd
commit 4b34c346a7
2 changed files with 91 additions and 0 deletions

View File

@ -9,6 +9,7 @@ import { headerData } from '~/navigation';
import Features2 from '~/components/widgets/Features2.astro';
import Features from '~/components/widgets/Features.astro';
import Stats from '~/components/widgets/Stats.astro';
import Features3 from '~/components/widgets/Features3.astro';
const metadata = {
title: 'Startup Landing Page',
@ -157,4 +158,54 @@ const metadata = {
waste more time! :P
</Fragment>
</CallToAction>
<!-- Features3 Widget ************** -->
<Features3
title="Let us know how we can help"
subtitle="Were here to help and answer any question you might have."
columns={4}
items={[
{
title: 'Phone',
icon: 'tabler:phone',
callToAction: {
targetBlank: true,
text: 'Call us',
href: '/',
},
},
{
title: 'Email',
icon: 'tabler:mail',
callToAction: {
targetBlank: true,
text: 'Write to us',
href: '/',
},
},
{
title: 'Chat with sales',
icon: 'tabler:message-circle',
callToAction: {
targetBlank: true,
text: 'Start chatting',
href: '/',
},
},
{
title: 'Chat with support',
icon: 'tabler:message-circle',
callToAction: {
targetBlank: true,
text: 'Start chatting',
href: '/',
},
},
]}
>
<Fragment slot="bg">
<div class="absolute inset-0 bg-blue-50 dark:bg-transparent"></div>
</Fragment>
</Features3>
</Layout>