Contact

Get in touch

Contact us

Lorem ipsum dolor sit amet, consectetur adipiscing elit.

Phone

123-456-7890

Email

contact@example.com

Address

1234 Main St, Springfield, IL 62701

Send message
placeholder landscape
---
import Contact from 'fulldev-ui/blocks/Contact.astro'
---

<Contact
  heading="Contact us"
  text="Lorem ipsum dolor sit amet, consectetur adipiscing elit."
  tagline="Get in touch"
  channels={[
    {
      type: 'tel',
      heading: 'Phone',
      text: '123-456-7890',
      icon: 'phone',
      href: 'tel:123-456-7890',
    },
    {
      type: 'email',
      heading: 'Email',
      text: 'contact@example.com',
      icon: 'mail',
      href: 'mailto:contact@example.com',
    },
    {
      type: 'address',
      heading: 'Address',
      text: '1234 Main St, Springfield, IL 62701',
      icon: 'map-pin',
    },
  ]}
  socials={['https://facebook.com/example', 'https://instagram.com/example']}
  form={{
    action: '/thank-you',
    fields: [
      {
        type: 'text',
        name: 'name',
        label: 'Name',
        required: true,
      },
      {
        type: 'email',
        name: 'email',
        label: 'Email',
        required: true,
      },
      {
        type: 'tel',
        name: 'phone',
        label: 'Phone',
      },
      {
        type: 'textarea',
        name: 'message',
        label: 'Message',
      },
    ],
    button: 'Send message',
  }}
  image="/images/placeholder-landscape.webp"
/>