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

---
type: block
category: "contact"
title: "Contact 1"
description: "Have a project in mind? Reach out and let us help you build something great."
---

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

<Contact1Block
  title="Get in touch with us"
  description="Have a project in mind? Reach out and let us help you build something great."
  contactItems={[
    {
      icon: "mail",
      title: "Email us",
      description: "contact@full.dev",
      href: "mailto:contact@full.dev",
    },
    {
      icon: "phone",
      title: "Call us",
      description: "+31 6 83485163",
      href: "tel:+31683485163",
    },
    {
      icon: "map-pin",
      title: "Visit us",
      description: "Vismarkt 5a, 9712 CA Groningen",
      href: "https://maps.google.com/?q=Vismarkt%205a%2C%209712%20CA%20Groningen",
    },
    {
      icon: "clock",
      title: "Support hours",
      description: "Weekdays, 9 am to 6 pm CET",
      href: "#",
    },
  ]}
  form={{
    legend: "Contact form",
    nameLabel: "Name",
    namePlaceholder: "Avery Morgan",
    emailLabel: "Email",
    emailPlaceholder: "avery@studio.dev",
    messageLabel: "Message",
    messagePlaceholder:
      "Tell us about your project, timeline, and what kind of help you need...",
    messageDescription: "Include goals, team size, and any hard deadlines.",
    actionLabel: "Send message",
  }}
/>
```
