{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "contact-01",
  "title": "Contact 01",
  "description": "A simple contact form",
  "dependencies": [
    "lucide-react"
  ],
  "files": [
    {
      "path": "src/registry/blocks/shared/contact-01/components/contact.tsx",
      "content": "import { MailIcon, MapPinIcon, PhoneIcon } from \"lucide-react\";\nimport Link from \"next/link\";\n\nconst Contact = () => (\n  <div className=\"flex min-h-screen items-center justify-center py-16\">\n    <div className=\"text-center\">\n      <b className=\"font-medium text-muted-foreground text-sm uppercase tracking-wide\">\n        Contact Us\n      </b>\n      <h2 className=\"mt-3 font-medium text-4xl tracking-tight\">Get In Touch</h2>\n      <p className=\"mt-3 text-lg text-muted-foreground md:text-xl\">\n        Our friendly team is always here to chat\n      </p>\n      <div className=\"mx-auto grid max-w-(--breakpoint-xl) gap-16 px-6 py-24 md:grid-cols-2 md:gap-10 md:px-0 lg:grid-cols-3\">\n        <div className=\"flex flex-col items-center text-center\">\n          <div className=\"flex h-12 w-12 items-center justify-center rounded-full border border-border/30 bg-primary/5 text-primary shadow-xl/2 dark:bg-primary/10\">\n            <MailIcon />\n          </div>\n          <h3 className=\"mt-6 font-medium text-xl\">Email</h3>\n          <p className=\"mt-2 text-muted-foreground\">\n            Our friendly team is here to help.\n          </p>\n          <Link\n            className=\"mt-4 font-medium text-primary\"\n            href=\"mailto:akashmoradiya3444@gmail.com\"\n          >\n            akashmoradiya3444@gmail.com\n          </Link>\n        </div>\n        <div className=\"flex flex-col items-center text-center\">\n          <div className=\"flex h-12 w-12 items-center justify-center rounded-full border border-border/30 bg-primary/5 text-primary shadow-xl/2 dark:bg-primary/10\">\n            <MapPinIcon />\n          </div>\n          <h3 className=\"mt-6 font-medium text-xl\">Office</h3>\n          <p className=\"mt-2 text-muted-foreground\">\n            Come say hello at our office HQ.\n          </p>\n          <Link\n            className=\"mt-4 font-medium text-primary\"\n            href=\"https://map.google.com\"\n            target=\"_blank\"\n          >\n            100 Smith Street Collingwood <br /> VIC 3066 AU\n          </Link>\n        </div>\n        <div className=\"flex flex-col items-center text-center\">\n          <div className=\"flex h-12 w-12 items-center justify-center rounded-full border border-border/30 bg-primary/5 text-primary shadow-xl/2 dark:bg-primary/10\">\n            <PhoneIcon />\n          </div>\n          <h3 className=\"mt-6 font-medium text-xl\">Phone</h3>\n          <p className=\"mt-2 text-muted-foreground\">Mon-Fri from 8am to 5pm.</p>\n          <Link\n            className=\"mt-4 font-medium text-primary\"\n            href=\"tel:akashmoradiya3444@gmail.com\"\n          >\n            +1 (555) 000-0000\n          </Link>\n        </div>\n      </div>\n    </div>\n  </div>\n);\n\nexport default Contact;\n",
      "type": "registry:component"
    }
  ],
  "type": "registry:block"
}