{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "contact-sections-13", "type": "registry:block", "description": "Contact information cards with form", "registryDependencies": [ "button", "card", "input", "label", "textarea" ], "files": [ { "path": "creative-tim-ui/blocks/contact-sections-13/page.tsx", "content": "\"use client\"\n\nimport { Clock, Mail, MapPin, Phone } from \"lucide-react\"\n\nimport { Button } from \"@/components/ui/button\"\nimport { Card } from \"@/components/ui/card\"\nimport { Input } from \"@/components/ui/input\"\nimport { Label } from \"@/components/ui/label\"\nimport { Textarea } from \"@/components/ui/textarea\"\n\nconst CONTACT_INFO = [\n {\n icon: MapPin,\n title: \"Visit us\",\n info: \"123 Main Street, New York, NY 10001\",\n },\n {\n icon: Phone,\n title: \"Call us\",\n info: \"+1 (424) 535-3523\",\n },\n {\n icon: Mail,\n title: \"Email us\",\n info: \"hello@mail.com\",\n },\n {\n icon: Clock,\n title: \"Working hours\",\n info: \"Mon - Fri, 9:00 AM - 6:00 PM\",\n },\n]\n\nexport default function ContactSections13() {\n return (\n
\n
\n
\n

Contact Information

\n

\n We're here to answer any questions you may have about our services.\n Reach out to us and we'll respond as soon as we can.\n

\n
\n
\n {CONTACT_INFO.map(({ icon: Icon, title, info }, key) => (\n \n
\n \n
\n

{title}

\n

{info}

\n
\n ))}\n
\n \n

Send us a message

\n
\n
\n
\n \n \n
\n
\n \n \n
\n
\n
\n \n \n
\n \n
\n
\n
\n
\n )\n}\n", "type": "registry:page", "target": "app/contact-sections-13/page.tsx" } ], "meta": { "iframeHeight": "1200px", "container": "w-full bg-surface min-h-svh flex px-4 py-12 items-center md:py-20 justify-center min-w-0", "mobile": "component" }, "categories": [ "contact" ] }