112 lines
4.1 KiB
Plaintext
112 lines
4.1 KiB
Plaintext
---
|
|
import Layout from '~/layouts/PageLayout.astro';
|
|
import ContactUs from '~/components/widgets/Contact.astro';
|
|
import FAQs from '~/components/widgets/FAQs.astro';
|
|
import Features2 from '~/components/widgets/Features2.astro';
|
|
|
|
const metadata = {
|
|
title: 'Contact',
|
|
};
|
|
---
|
|
|
|
<Layout metadata={metadata}>
|
|
<ContactUs
|
|
title="Drop us a message today!"
|
|
subtitle="For quicker answers, explore our FAQs section. You may find the solution you're looking for right there! If not, our support team is delighted to help you."
|
|
inputs={[
|
|
{
|
|
type: 'text',
|
|
name: 'name',
|
|
label: 'Name',
|
|
},
|
|
{
|
|
type: 'email',
|
|
name: 'email',
|
|
label: 'Email',
|
|
},
|
|
]}
|
|
textarea={{
|
|
label: 'Message',
|
|
}}
|
|
disclaimer={{
|
|
label:
|
|
'By submitting this contact form, you acknowledge and agree to the collection of your personal information.',
|
|
}}
|
|
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
|
|
title="Frequently Asked Questions"
|
|
items={[
|
|
{
|
|
title: 'Do you provide instructions on how to use and edit the templates?',
|
|
description:
|
|
'Absolutely! We understand the importance of providing clear guidance. Each template comes with comprehensive instructions on how to use and customize it effectively.',
|
|
},
|
|
{
|
|
title: 'How can I download the templates after purchasing?',
|
|
description:
|
|
"Downloading your purchased templates is a simple process. Once you've completed the purchase, you'll receive an email containing a link to your personal download area.",
|
|
},
|
|
{
|
|
title: 'Are updates included with the templates?',
|
|
description:
|
|
'Yes, we are committed to continually improving and enhancing our templates to ensure they meet the latest design standards and technological advancements.',
|
|
},
|
|
{
|
|
title: 'How often do you release new templates?',
|
|
description:
|
|
'The exact frequency of releases may vary, our team works diligently to introduce new templates every quarter, depending on design trends, industry developments, and customer demand.',
|
|
},
|
|
{
|
|
title: 'Can I request custom templates to be developed?',
|
|
description: `Absolutely, we offer a custom template development service to cater to your specific needs. If you have a particular design idea, concept, or functionality in mind, we'd be more than happy to discuss creating a custom template for you.`,
|
|
},
|
|
{
|
|
title: 'What payment methods do you accept?',
|
|
description:
|
|
'Currently, we accept major credit and debit cards, including Visa, MasterCard, American Express, and Discover. Additionally, we facilitate payments through trusted online payment platforms such as PayPal and Apple Pay.',
|
|
},
|
|
]}
|
|
/>
|
|
</Layout>
|