Skip to content

Commit

Permalink
Merge pull request #5 from pixlie/dev
Browse files Browse the repository at this point in the history
Contact page content (form doesn't work atm)
  • Loading branch information
HilaryTorn authored Sep 26, 2024
2 parents d42ab50 + 9d960b6 commit 2b24031
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/components/widgets/Contact.astro
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const {
textarea={textarea}
disclaimer={disclaimer}
button={button}
description={description}
description={description || ""}
/>
</div>
)
Expand Down
16 changes: 8 additions & 8 deletions src/pages/contact.astro
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
import Layout from '~/layouts/PageLayout.astro';
import HeroText from '~/components/widgets/HeroText.astro';
// import HeroText from '~/components/widgets/HeroText.astro';
import ContactUs from '~/components/widgets/Contact.astro';
import Features2 from '~/components/widgets/Features2.astro';
// import Features2 from '~/components/widgets/Features2.astro';
const metadata = {
title: 'Contact',
Expand All @@ -12,12 +12,12 @@ const metadata = {
<Layout metadata={metadata}>
<!-- HeroText Widget ******************* -->

<HeroText tagline="Contact" title="Let's Connect!" />
<!-- <HeroText tagline="Contact" title="Let's Connect!" /> -->

<ContactUs
id="form"
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."
title="Let's Connect"
subtitle="Curious about partnering or exploring how Pixlie AI can benefit your business? We’d love to hear from you!"
inputs={[
{
type: 'text',
Expand All @@ -37,12 +37,12 @@ const metadata = {
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
<!-- <Features2
title="We are here to help!"
items={[
{
Expand Down Expand Up @@ -75,5 +75,5 @@ const metadata = {
icon: 'tabler:map-pin',
},
]}
/>
/> -->
</Layout>

0 comments on commit 2b24031

Please sign in to comment.