Include a Features2 widget on contact page

This commit is contained in:
widgeter
2023-08-11 19:30:09 +02:00
parent e7d4dfe019
commit 4f491123f0

View File

@ -2,6 +2,7 @@
import Layout from '~/layouts/PageLayout.astro'; import Layout from '~/layouts/PageLayout.astro';
import ContactUs from '~/components/widgets/Contact.astro'; import ContactUs from '~/components/widgets/Contact.astro';
import FAQs from '~/components/widgets/FAQs.astro'; import FAQs from '~/components/widgets/FAQs.astro';
import Features2 from '~/components/widgets/Features2.astro';
const metadata = { const metadata = {
title: 'Contact', title: 'Contact',
@ -34,6 +35,43 @@ const metadata = {
description="Our support team typically responds within 24 business hours." description="Our support team typically responds within 24 business hours."
/> />
<!-- Features2 Widget ************** -->
<Features2
title="We are here to help!"
items={[
{
title: 'General support',
description: `Chat with us for inquiries related to account management, website navigation, payment issues, accessing purchased templates or general questions about the website's functionality.`,
},
{
title: 'Contact sales',
description:
'Chat with us for questions about purchases, customization options, licensing for commercial use, inquiries about specific template, etc.',
},
{
title: 'Technical support',
description:
'Chat with us when facing issues like template installation, problems editing difficulties, compatibility issues with software or download errors, or other technical challenges related to using the templates.',
},
{
title: 'Phone',
description: '+1 (234) 567-890',
icon: 'tabler:headset',
},
{
title: 'Email',
description: 'contact@support.com',
icon: 'tabler:mail',
},
{
title: 'Location',
description: '1234 Lorem Ipsum St, 12345, Miami, EEUU',
icon: 'tabler:map-pin',
},
]}
/>
<!-- FAQs Widget ******************* --> <!-- FAQs Widget ******************* -->
<FAQs <FAQs