Navigation: [/sitemap.md](/sitemap.md)

---
type: block
category: "contact"
title: "Contact 2"
description: "Tell us about the site, timeline, and what kind of help you need."
---

```astro live props={{ name: 'contact-2' }}
---
import Contact2Block from "@/components/blocks/contact-2.astro"
---

<Contact2Block
  title="Let's work together"
  description="Tell us about the site, timeline, and what kind of help you need."
  contactItems={[
    {
      icon: "mail",
      title: "Email",
      description: "contact@full.dev",
      href: "mailto:contact@full.dev",
    },
    {
      icon: "phone",
      title: "Phone",
      description: "+31 6 83485163",
      href: "tel:+31683485163",
    },
    {
      icon: "map-pin",
      title: "Office",
      description: "Vismarkt 5a, 9712 CA Groningen",
      href: "https://maps.google.com/?q=Vismarkt%205a%2C%209712%20CA%20Groningen",
    },
    {
      icon: "clock",
      title: "Hours",
      description: "Weekdays, 9 am to 6 pm CET",
      href: "#",
    },
  ]}
  form={{
    title: "Send us a message",
    legend: "Contact form",
    nameLabel: "Name",
    namePlaceholder: "Jordan Lee",
    emailLabel: "Email",
    emailPlaceholder: "jordan@northwind.studio",
    messageLabel: "Message",
    messagePlaceholder:
      "We are refreshing our docs and need reusable sections for onboarding, changelogs, and feature launches.",
    actionLabel: "Send message",
  }}
/>
```
