{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "contact-1",
  "type": "registry:block",
  "title": "Contact 1",
  "description": "Contact sales form with company fields and contact details.",
  "registryDependencies": [
    "button",
    "input",
    "label",
    "textarea",
    "select",
    "card"
  ],
  "files": [
    {
      "path": "app/preview/contact/one/page.tsx",
      "content": "import { Button } from '@/components/ui/button'\nimport { Input } from '@/components/ui/input'\nimport { Label } from '@/components/ui/label'\nimport { Textarea } from '@/components/ui/textarea'\nimport { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from '@/components/ui/select'\nimport { Card } from '@/components/ui/card'\n\nexport default function ContactSection() {\n    return (\n        <section className=\"py-32\">\n            <div className=\"mx-auto max-w-3xl px-8 lg:px-0\">\n                <h1 className=\"text-center text-4xl font-semibold lg:text-5xl\">Contact Sales</h1>\n                <p className=\"mt-4 text-center\">We'll help you find the right plan and pricing for your business.</p>\n\n                <Card className=\"mx-auto mt-12 max-w-lg p-8 shadow-md sm:p-16\">\n                    <div>\n                        <h2 className=\"text-xl font-semibold\">Let's get you to the right place</h2>\n                        <p className=\"mt-4 text-sm\">Reach out to our sales team! We’re eager to learn more about how you plan to use our application.</p>\n                    </div>\n\n                    <form action=\"\" className=\"**:[&>label]:block mt-12 space-y-6 *:space-y-3\">\n                        <div>\n                            <Label htmlFor=\"name\">Full name</Label>\n                            <Input type=\"text\" id=\"name\" required />\n                        </div>\n\n                        <div>\n                            <Label htmlFor=\"email\">Work Email</Label>\n                            <Input type=\"email\" id=\"email\" required />\n                        </div>\n\n                        <div>\n                            <Label htmlFor=\"country\">Country/Region</Label>\n                            <Select>\n                                <SelectTrigger>\n                                    <SelectValue placeholder=\"Select Country/Region\" />\n                                </SelectTrigger>\n                                <SelectContent>\n                                    <SelectItem value=\"1\">DR Congo</SelectItem>\n                                    <SelectItem value=\"2\">United States</SelectItem>\n                                    <SelectItem value=\"3\">France</SelectItem>\n                                </SelectContent>\n                            </Select>\n                        </div>\n\n                        <div>\n                            <Label htmlFor=\"website\">Company Website</Label>\n                            <Input type=\"url\" id=\"website\" />\n                            <span className=\"text-muted-foreground inline-block text-sm\">Must start with 'https'</span>\n                        </div>\n\n                        <div>\n                            <Label htmlFor=\"job\">Job function</Label>\n                            <Select>\n                                <SelectTrigger>\n                                    <SelectValue placeholder=\"Select Job Function\" />\n                                </SelectTrigger>\n                                <SelectContent>\n                                    <SelectItem value=\"1\">Finance</SelectItem>\n                                    <SelectItem value=\"2\">Education</SelectItem>\n                                    <SelectItem value=\"3\">Legal</SelectItem>\n                                    <SelectItem value=\"4\">More</SelectItem>\n                                </SelectContent>\n                            </Select>\n                        </div>\n\n                        <div>\n                            <Label htmlFor=\"msg\">Message</Label>\n                            <Textarea id=\"msg\" rows={3} />\n                        </div>\n\n                        <Button>Submit</Button>\n                    </form>\n                </Card>\n            </div>\n        </section>\n    )\n}\n",
      "type": "registry:component",
      "target": "components/contact.tsx"
    }
  ]
}