{"$schema":"https://ui.shadcn.com/schema/registry-item.json","name":"marketing-careers-job-board","type":"registry:block","title":"Job Board","files":[{"path":"components/blocks/marketing/careers/job-board.tsx","content":"import * as React from 'react';\nimport { Badge } from '@/components/ui/badge';\nimport { Button } from '@/components/ui/button';\nimport {\n  Card,\n  CardContent,\n  CardFooter,\n  CardHeader,\n  CardTitle,\n} from '@/components/ui/card';\nimport { Input } from '@/components/ui/input';\nimport {\n  Select,\n  SelectContent,\n  SelectGroup,\n  SelectItem,\n  SelectLabel,\n  SelectTrigger,\n  SelectValue,\n} from '@/components/ui/select';\nimport {\n  BriefcaseIcon,\n  BuildingIcon,\n  ClockIcon,\n  DollarSignIcon,\n  MapPinIcon,\n  SearchIcon,\n  FilterIcon,\n  BookmarkIcon,\n  GlobeIcon,\n} from 'lucide-react';\n\ninterface JobPosition {\n  id: string;\n  title: string;\n  department: string;\n  companyName: string;\n  location: string;\n  locationType: 'remote' | 'onsite' | 'hybrid';\n  employmentType: 'full-time' | 'part-time' | 'contract' | 'internship';\n  experienceLevel: 'entry' | 'mid' | 'senior' | 'lead' | 'executive';\n  postedDate: string;\n  salary: string;\n  description: string;\n}\n\nexport default function JobBoard() {\n  // Sample job position data\n  const jobPositions: JobPosition[] = [\n    {\n      id: 'frontend-developer',\n      title: 'Frontend Developer',\n      department: 'Engineering',\n      companyName: 'TechCorp',\n      location: 'San Francisco, CA',\n      locationType: 'hybrid',\n      employmentType: 'full-time',\n      experienceLevel: 'mid',\n      postedDate: '2023-10-10',\n      salary: '$90,000 - $120,000',\n      description:\n        'Join our team to build intuitive and responsive web applications using React, Next.js, and TypeScript.',\n    },\n    {\n      id: 'ux-researcher',\n      title: 'UX Researcher',\n      department: 'Design',\n      companyName: 'DesignLab',\n      location: 'New York, NY',\n      locationType: 'onsite',\n      employmentType: 'full-time',\n      experienceLevel: 'senior',\n      postedDate: '2023-10-08',\n      salary: '$100,000 - $130,000',\n      description:\n        'Lead user research initiatives to inform product design decisions and improve user experience.',\n    },\n    {\n      id: 'data-scientist',\n      title: 'Data Scientist',\n      department: 'Data',\n      companyName: 'DataInsights',\n      location: 'Remote',\n      locationType: 'remote',\n      employmentType: 'full-time',\n      experienceLevel: 'senior',\n      postedDate: '2023-10-09',\n      salary: '$110,000 - $150,000',\n      description:\n        'Apply statistical analysis and machine learning techniques to extract insights from large datasets.',\n    },\n    {\n      id: 'devops-engineer',\n      title: 'DevOps Engineer',\n      department: 'Operations',\n      companyName: 'CloudTech',\n      location: 'Austin, TX',\n      locationType: 'hybrid',\n      employmentType: 'full-time',\n      experienceLevel: 'mid',\n      postedDate: '2023-10-07',\n      salary: '$100,000 - $140,000',\n      description:\n        'Implement and maintain CI/CD pipelines and cloud infrastructure using AWS, Kubernetes, and Terraform.',\n    },\n    {\n      id: 'marketing-manager',\n      title: 'Marketing Manager',\n      department: 'Marketing',\n      companyName: 'BrandBoost',\n      location: 'Chicago, IL',\n      locationType: 'hybrid',\n      employmentType: 'full-time',\n      experienceLevel: 'senior',\n      postedDate: '2023-10-05',\n      salary: '$95,000 - $125,000',\n      description:\n        'Develop and execute marketing strategies to drive brand awareness and customer acquisition.',\n    },\n    {\n      id: 'backend-engineer',\n      title: 'Backend Engineer',\n      department: 'Engineering',\n      companyName: 'ServerStack',\n      location: 'Seattle, WA',\n      locationType: 'hybrid',\n      employmentType: 'full-time',\n      experienceLevel: 'senior',\n      postedDate: '2023-10-06',\n      salary: '$120,000 - $160,000',\n      description:\n        'Design and build scalable backend services and APIs using Node.js, Go, and distributed systems.',\n    },\n    {\n      id: 'product-manager',\n      title: 'Product Manager',\n      department: 'Product',\n      companyName: 'ProductLabs',\n      location: 'Boston, MA',\n      locationType: 'onsite',\n      employmentType: 'full-time',\n      experienceLevel: 'senior',\n      postedDate: '2023-10-04',\n      salary: '$110,000 - $150,000',\n      description:\n        'Lead product development from conception to launch, working with cross-functional teams to deliver exceptional user experiences.',\n    },\n    {\n      id: 'qa-engineer',\n      title: 'QA Engineer',\n      department: 'Engineering',\n      companyName: 'QualityTech',\n      location: 'Denver, CO',\n      locationType: 'hybrid',\n      employmentType: 'full-time',\n      experienceLevel: 'mid',\n      postedDate: '2023-10-03',\n      salary: '$85,000 - $115,000',\n      description:\n        'Ensure software quality through test automation, manual testing, and establishing QA best practices.',\n    },\n    {\n      id: 'technical-writer',\n      title: 'Technical Writer',\n      department: 'Documentation',\n      companyName: 'DocuTech',\n      location: 'Remote',\n      locationType: 'remote',\n      employmentType: 'contract',\n      experienceLevel: 'mid',\n      postedDate: '2023-10-02',\n      salary: '$70,000 - $90,000',\n      description:\n        'Create clear and concise technical documentation, API references, and user guides for our products.',\n    },\n    {\n      id: 'sales-representative',\n      title: 'Sales Representative',\n      department: 'Sales',\n      companyName: 'SalesPro',\n      location: 'Los Angeles, CA',\n      locationType: 'hybrid',\n      employmentType: 'full-time',\n      experienceLevel: 'entry',\n      postedDate: '2023-10-01',\n      salary: '$60,000 - $80,000 + Commission',\n      description:\n        'Identify and pursue sales opportunities, build client relationships, and meet revenue targets.',\n    },\n    {\n      id: 'hr-specialist',\n      title: 'HR Specialist',\n      department: 'Human Resources',\n      companyName: 'PeopleFirst',\n      location: 'Miami, FL',\n      locationType: 'onsite',\n      employmentType: 'full-time',\n      experienceLevel: 'mid',\n      postedDate: '2023-09-30',\n      salary: '$75,000 - $95,000',\n      description:\n        'Support recruitment, onboarding, employee relations, and HR programs to foster a positive workplace culture.',\n    },\n    {\n      id: 'mobile-developer',\n      title: 'Mobile Developer',\n      department: 'Engineering',\n      companyName: 'AppWorks',\n      location: 'Portland, OR',\n      locationType: 'hybrid',\n      employmentType: 'full-time',\n      experienceLevel: 'mid',\n      postedDate: '2023-09-29',\n      salary: '$95,000 - $125,000',\n      description:\n        'Build native mobile applications for iOS and Android using Swift, Kotlin, and React Native.',\n    },\n  ];\n\n  // Define filter options\n  const departments = Array.from(\n    new Set(jobPositions.map((job) => job.department))\n  ).sort();\n  const locations = Array.from(\n    new Set(jobPositions.map((job) => job.location))\n  ).sort();\n  const locationTypes = ['remote', 'onsite', 'hybrid'];\n  const employmentTypes = ['full-time', 'part-time', 'contract', 'internship'];\n  const experienceLevels = ['entry', 'mid', 'senior', 'lead', 'executive'];\n\n  // State for search and filters\n  const [searchQuery, setSearchQuery] = React.useState('');\n  const [departmentFilter, setDepartmentFilter] = React.useState('all');\n  const [locationFilter, setLocationFilter] = React.useState('all');\n  const [locationTypeFilter, setLocationTypeFilter] = React.useState('all');\n  const [employmentTypeFilter, setEmploymentTypeFilter] = React.useState('all');\n  const [experienceFilter, setExperienceFilter] = React.useState('all');\n  const [filteredJobs, setFilteredJobs] =\n    React.useState<JobPosition[]>(jobPositions);\n  const [filtersVisible, setFiltersVisible] = React.useState(false);\n\n  // Helper functions\n  // Calculate days ago from date\n  const getDaysAgo = (dateString: string) => {\n    const postDate = new Date(dateString);\n    const today = new Date();\n    const diffTime = Math.abs(today.getTime() - postDate.getTime());\n    const diffDays = Math.ceil(diffTime / (1000 * 60 * 60 * 24));\n\n    if (diffDays === 0) {\n      return 'Today';\n    } else if (diffDays === 1) {\n      return 'Yesterday';\n    } else {\n      return `${diffDays} days ago`;\n    }\n  };\n\n  // Format location type for display\n  const formatLocationType = (type: string) => {\n    switch (type) {\n      case 'remote':\n        return 'Remote';\n      case 'hybrid':\n        return 'Hybrid';\n      case 'onsite':\n        return 'On-site';\n      default:\n        return type;\n    }\n  };\n\n  // Format employment type for display\n  const formatEmploymentType = (type: string) => {\n    switch (type) {\n      case 'full-time':\n        return 'Full-time';\n      case 'part-time':\n        return 'Part-time';\n      case 'contract':\n        return 'Contract';\n      case 'internship':\n        return 'Internship';\n      default:\n        return type;\n    }\n  };\n\n  // Format experience level for display\n  const formatExperienceLevel = (level: string) => {\n    switch (level) {\n      case 'entry':\n        return 'Entry Level';\n      case 'mid':\n        return 'Mid Level';\n      case 'senior':\n        return 'Senior Level';\n      case 'lead':\n        return 'Lead';\n      case 'executive':\n        return 'Executive';\n      default:\n        return level;\n    }\n  };\n\n  // Filter jobs based on search and filters\n  React.useEffect(() => {\n    const filtered = jobPositions.filter((job) => {\n      const matchesSearch =\n        job.title.toLowerCase().includes(searchQuery.toLowerCase()) ||\n        job.description.toLowerCase().includes(searchQuery.toLowerCase());\n\n      const matchesDepartment =\n        departmentFilter === 'all' || job.department === departmentFilter;\n      const matchesLocation =\n        locationFilter === 'all' || job.location === locationFilter;\n      const matchesLocationType =\n        locationTypeFilter === 'all' || job.locationType === locationTypeFilter;\n      const matchesEmploymentType =\n        employmentTypeFilter === 'all' ||\n        job.employmentType === employmentTypeFilter;\n      const matchesExperienceLevel =\n        experienceFilter === 'all' || job.experienceLevel === experienceFilter;\n\n      return (\n        matchesSearch &&\n        matchesDepartment &&\n        matchesLocation &&\n        matchesLocationType &&\n        matchesEmploymentType &&\n        matchesExperienceLevel\n      );\n    });\n\n    setFilteredJobs(filtered);\n  }, [\n    searchQuery,\n    departmentFilter,\n    locationFilter,\n    locationTypeFilter,\n    employmentTypeFilter,\n    experienceFilter,\n  ]);\n\n  // Reset all filters\n  const resetFilters = () => {\n    setSearchQuery('');\n    setDepartmentFilter('all');\n    setLocationFilter('all');\n    setLocationTypeFilter('all');\n    setEmploymentTypeFilter('all');\n    setExperienceFilter('all');\n  };\n\n  return (\n    <div className=\"container mx-auto px-4 py-12\">\n      <div className=\"mb-10 text-center\">\n        <h2 className=\"mb-4 text-3xl font-bold tracking-tight\">\n          Career Opportunities\n        </h2>\n        <p className=\"text-muted-foreground mx-auto max-w-2xl\">\n          Discover your next career opportunity. Browse our open positions and\n          find the perfect role that matches your skills, experience, and career\n          goals.\n        </p>\n      </div>\n\n      <div className=\"mb-8\">\n        <div className=\"mb-4 flex flex-col gap-4 md:flex-row\">\n          <div className=\"relative flex-grow\">\n            <SearchIcon className=\"text-muted-foreground absolute top-1/2 left-3 h-4 w-4 -translate-y-1/2 transform\" />\n            <Input\n              placeholder=\"Search jobs by title, department, or company...\"\n              value={searchQuery}\n              onChange={(e) => setSearchQuery(e.target.value)}\n              className=\"pl-10\"\n            />\n          </div>\n          <Button\n            variant=\"outline\"\n            onClick={() => setFiltersVisible(!filtersVisible)}\n            className=\"w-full md:w-auto\"\n          >\n            <FilterIcon className=\"mr-2 h-4 w-4\" />\n            {filtersVisible ? 'Hide Filters' : 'Show Filters'}\n          </Button>\n          {(departmentFilter ||\n            locationFilter ||\n            locationTypeFilter ||\n            employmentTypeFilter ||\n            experienceFilter) && (\n            <Button\n              variant=\"ghost\"\n              onClick={resetFilters}\n              className=\"w-full md:w-auto\"\n            >\n              Reset Filters\n            </Button>\n          )}\n        </div>\n\n        {filtersVisible && (\n          <div className=\"bg-muted/10 mt-4 grid grid-cols-1 gap-4 rounded-lg border p-4 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-5\">\n            <Select\n              value={departmentFilter}\n              onValueChange={setDepartmentFilter}\n            >\n              <SelectTrigger>\n                <SelectValue placeholder=\"Department\" />\n              </SelectTrigger>\n              <SelectContent>\n                <SelectGroup>\n                  <SelectLabel>Department</SelectLabel>\n                  <SelectItem value=\"all\">All Departments</SelectItem>\n                  {departments.map((department) => (\n                    <SelectItem key={department} value={department}>\n                      {department}\n                    </SelectItem>\n                  ))}\n                </SelectGroup>\n              </SelectContent>\n            </Select>\n\n            <Select value={locationFilter} onValueChange={setLocationFilter}>\n              <SelectTrigger>\n                <SelectValue placeholder=\"Location\" />\n              </SelectTrigger>\n              <SelectContent>\n                <SelectGroup>\n                  <SelectLabel>Location</SelectLabel>\n                  <SelectItem value=\"all\">All Locations</SelectItem>\n                  {locations.map((location) => (\n                    <SelectItem key={location} value={location}>\n                      {location}\n                    </SelectItem>\n                  ))}\n                </SelectGroup>\n              </SelectContent>\n            </Select>\n\n            <Select\n              value={locationTypeFilter}\n              onValueChange={setLocationTypeFilter}\n            >\n              <SelectTrigger>\n                <SelectValue placeholder=\"Work Environment\" />\n              </SelectTrigger>\n              <SelectContent>\n                <SelectGroup>\n                  <SelectLabel>Work Environment</SelectLabel>\n                  <SelectItem value=\"all\">All Types</SelectItem>\n                  {locationTypes.map((type) => (\n                    <SelectItem key={type} value={type}>\n                      {formatLocationType(type)}\n                    </SelectItem>\n                  ))}\n                </SelectGroup>\n              </SelectContent>\n            </Select>\n\n            <Select\n              value={employmentTypeFilter}\n              onValueChange={setEmploymentTypeFilter}\n            >\n              <SelectTrigger>\n                <SelectValue placeholder=\"Employment Type\" />\n              </SelectTrigger>\n              <SelectContent>\n                <SelectGroup>\n                  <SelectLabel>Employment Type</SelectLabel>\n                  <SelectItem value=\"all\">All Types</SelectItem>\n                  {employmentTypes.map((type) => (\n                    <SelectItem key={type} value={type}>\n                      {formatEmploymentType(type)}\n                    </SelectItem>\n                  ))}\n                </SelectGroup>\n              </SelectContent>\n            </Select>\n\n            <Select\n              value={experienceFilter}\n              onValueChange={setExperienceFilter}\n            >\n              <SelectTrigger>\n                <SelectValue placeholder=\"Experience Level\" />\n              </SelectTrigger>\n              <SelectContent>\n                <SelectGroup>\n                  <SelectLabel>Experience Level</SelectLabel>\n                  <SelectItem value=\"all\">All Levels</SelectItem>\n                  {experienceLevels.map((level) => (\n                    <SelectItem key={level} value={level}>\n                      {formatExperienceLevel(level)}\n                    </SelectItem>\n                  ))}\n                </SelectGroup>\n              </SelectContent>\n            </Select>\n          </div>\n        )}\n      </div>\n\n      {filteredJobs.length === 0 ? (\n        <div className=\"flex flex-col items-center justify-center py-12 text-center\">\n          <div className=\"mb-4\">\n            <SearchIcon className=\"text-muted-foreground h-12 w-12\" />\n          </div>\n          <h3 className=\"mb-2 text-xl font-semibold\">No matching jobs found</h3>\n          <p className=\"text-muted-foreground mb-6\">\n            Try adjusting your search criteria or filters to find what\n            you&apos;re looking for.\n          </p>\n          <Button onClick={resetFilters}>Clear All Filters</Button>\n        </div>\n      ) : (\n        <div className=\"grid grid-cols-1 gap-6 md:grid-cols-2 lg:grid-cols-3\">\n          {filteredJobs.map((job) => (\n            <Card key={job.id} className=\"flex h-full flex-col\">\n              <CardHeader>\n                <div className=\"mb-2 flex items-start justify-between\">\n                  <Badge variant=\"outline\" className=\"text-xs\">\n                    {formatEmploymentType(job.employmentType)}\n                  </Badge>\n                  <Badge\n                    variant=\"secondary\"\n                    className={\n                      job.locationType === 'remote'\n                        ? 'bg-blue-100 text-blue-800 dark:bg-blue-900 dark:text-blue-300'\n                        : job.locationType === 'hybrid'\n                          ? 'bg-purple-100 text-purple-800 dark:bg-purple-900 dark:text-purple-300'\n                          : 'bg-green-100 text-green-800 dark:bg-green-900 dark:text-green-300'\n                    }\n                  >\n                    {job.locationType === 'remote' ? (\n                      <GlobeIcon className=\"mr-1 h-3 w-3\" />\n                    ) : null}\n                    {formatLocationType(job.locationType)}\n                  </Badge>\n                </div>\n                <CardTitle className=\"line-clamp-2\">{job.title}</CardTitle>\n                <div className=\"mt-1 flex items-center gap-1\">\n                  <BuildingIcon className=\"text-muted-foreground h-3.5 w-3.5\" />\n                  <p className=\"text-muted-foreground text-sm\">\n                    {job.companyName}\n                  </p>\n                </div>\n              </CardHeader>\n              <CardContent className=\"flex-grow\">\n                <div className=\"space-y-3\">\n                  <div className=\"flex items-center gap-2\">\n                    <MapPinIcon className=\"text-muted-foreground h-4 w-4 flex-shrink-0\" />\n                    <span className=\"text-sm\">{job.location}</span>\n                  </div>\n                  <div className=\"flex items-center gap-2\">\n                    <BriefcaseIcon className=\"text-muted-foreground h-4 w-4 flex-shrink-0\" />\n                    <span className=\"text-sm\">{job.department}</span>\n                  </div>\n                  <div className=\"flex items-center gap-2\">\n                    <DollarSignIcon className=\"text-muted-foreground h-4 w-4 flex-shrink-0\" />\n                    <span className=\"text-sm\">{job.salary}</span>\n                  </div>\n                  <div className=\"flex items-center gap-2\">\n                    <ClockIcon className=\"text-muted-foreground h-4 w-4 flex-shrink-0\" />\n                    <span className=\"text-sm\">\n                      Posted {getDaysAgo(job.postedDate)}\n                    </span>\n                  </div>\n                </div>\n\n                <div className=\"mt-4\">\n                  <p className=\"text-muted-foreground line-clamp-3 text-sm\">\n                    {job.description}\n                  </p>\n                </div>\n              </CardContent>\n              <CardFooter className=\"flex gap-3 pt-2\">\n                <Button variant=\"outline\" size=\"sm\" className=\"w-1/2\">\n                  <BookmarkIcon className=\"mr-1 h-4 w-4\" />\n                  Save\n                </Button>\n                <Button size=\"sm\" className=\"w-1/2\">\n                  Apply Now\n                </Button>\n              </CardFooter>\n            </Card>\n          ))}\n        </div>\n      )}\n\n      <div className=\"mt-10 text-center\">\n        <p className=\"text-muted-foreground mb-4\">\n          Showing {filteredJobs.length} of {jobPositions.length} available\n          positions\n        </p>\n        <Button variant=\"outline\">Load More</Button>\n      </div>\n    </div>\n  );\n}\n","type":"registry:component","target":"components/blocks/marketing/careers/job-board.tsx"},{"path":"components/ui/badge.tsx","content":"import * as React from \"react\"\nimport { cva, type VariantProps } from \"class-variance-authority\"\nimport { Slot } from \"radix-ui\"\n\nimport { cn } from \"@/lib/utils\"\n\nconst badgeVariants = cva(\n  \"group/badge inline-flex h-5 w-fit shrink-0 items-center justify-center gap-1 overflow-hidden rounded-4xl border border-transparent px-2 py-0.5 text-xs font-medium whitespace-nowrap transition-all focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 has-data-[icon=inline-end]:pr-1.5 has-data-[icon=inline-start]:pl-1.5 aria-invalid:border-destructive aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 [&>svg]:pointer-events-none [&>svg]:size-3!\",\n  {\n    variants: {\n      variant: {\n        default: \"bg-primary text-primary-foreground [a]:hover:bg-primary/80\",\n        secondary:\n          \"bg-secondary text-secondary-foreground [a]:hover:bg-secondary/80\",\n        destructive:\n          \"bg-destructive/10 text-destructive focus-visible:ring-destructive/20 dark:bg-destructive/20 dark:focus-visible:ring-destructive/40 [a]:hover:bg-destructive/20\",\n        outline:\n          \"border-border text-foreground [a]:hover:bg-muted [a]:hover:text-muted-foreground\",\n        ghost:\n          \"hover:bg-muted hover:text-muted-foreground dark:hover:bg-muted/50\",\n        link: \"text-primary underline-offset-4 hover:underline\",\n      },\n    },\n    defaultVariants: {\n      variant: \"default\",\n    },\n  }\n)\n\nfunction Badge({\n  className,\n  variant = \"default\",\n  asChild = false,\n  ...props\n}: React.ComponentProps<\"span\"> &\n  VariantProps<typeof badgeVariants> & { asChild?: boolean }) {\n  const Comp = asChild ? Slot.Root : \"span\"\n\n  return (\n    <Comp\n      data-slot=\"badge\"\n      data-variant={variant}\n      className={cn(badgeVariants({ variant }), className)}\n      {...props}\n    />\n  )\n}\n\nexport { Badge, badgeVariants }\n","type":"registry:ui","target":"components/ui/badge.tsx"},{"path":"components/ui/button.tsx","content":"import * as React from \"react\"\nimport { cva, type VariantProps } from \"class-variance-authority\"\nimport { Slot } from \"radix-ui\"\n\nimport { cn } from \"@/lib/utils\"\n\nconst buttonVariants = cva(\n  \"group/button inline-flex shrink-0 items-center justify-center rounded-md border border-transparent bg-clip-padding text-sm font-medium whitespace-nowrap transition-all outline-none select-none focus-visible:border-ring focus-visible:ring-3 focus-visible:ring-ring/50 active:not-aria-[haspopup]:translate-y-px disabled:pointer-events-none disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-3 aria-invalid:ring-destructive/20 dark:aria-invalid:border-destructive/50 dark:aria-invalid:ring-destructive/40 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4\",\n  {\n    variants: {\n      variant: {\n        default: \"bg-primary text-primary-foreground hover:bg-primary/80\",\n        outline:\n          \"border-border bg-background shadow-xs hover:bg-muted hover:text-foreground aria-expanded:bg-muted aria-expanded:text-foreground dark:border-input dark:bg-input/30 dark:hover:bg-input/50\",\n        secondary:\n          \"bg-secondary text-secondary-foreground hover:bg-secondary/80 aria-expanded:bg-secondary aria-expanded:text-secondary-foreground\",\n        ghost:\n          \"hover:bg-muted hover:text-foreground aria-expanded:bg-muted aria-expanded:text-foreground dark:hover:bg-muted/50\",\n        destructive:\n          \"bg-destructive/10 text-destructive hover:bg-destructive/20 focus-visible:border-destructive/40 focus-visible:ring-destructive/20 dark:bg-destructive/20 dark:hover:bg-destructive/30 dark:focus-visible:ring-destructive/40\",\n        link: \"text-primary underline-offset-4 hover:underline\",\n      },\n      size: {\n        default:\n          \"h-9 gap-1.5 px-2.5 in-data-[slot=button-group]:rounded-md has-data-[icon=inline-end]:pr-2 has-data-[icon=inline-start]:pl-2\",\n        xs: \"h-6 gap-1 rounded-[min(var(--radius-md),8px)] px-2 text-xs in-data-[slot=button-group]:rounded-md has-data-[icon=inline-end]:pr-1.5 has-data-[icon=inline-start]:pl-1.5 [&_svg:not([class*='size-'])]:size-3\",\n        sm: \"h-8 gap-1 rounded-[min(var(--radius-md),10px)] px-2.5 in-data-[slot=button-group]:rounded-md has-data-[icon=inline-end]:pr-1.5 has-data-[icon=inline-start]:pl-1.5\",\n        lg: \"h-10 gap-1.5 px-2.5 has-data-[icon=inline-end]:pr-2 has-data-[icon=inline-start]:pl-2\",\n        icon: \"size-9\",\n        \"icon-xs\":\n          \"size-6 rounded-[min(var(--radius-md),8px)] in-data-[slot=button-group]:rounded-md [&_svg:not([class*='size-'])]:size-3\",\n        \"icon-sm\":\n          \"size-8 rounded-[min(var(--radius-md),10px)] in-data-[slot=button-group]:rounded-md\",\n        \"icon-lg\": \"size-10\",\n      },\n    },\n    defaultVariants: {\n      variant: \"default\",\n      size: \"default\",\n    },\n  }\n)\n\nfunction Button({\n  className,\n  variant = \"default\",\n  size = \"default\",\n  asChild = false,\n  ...props\n}: React.ComponentProps<\"button\"> &\n  VariantProps<typeof buttonVariants> & {\n    asChild?: boolean\n  }) {\n  const Comp = asChild ? Slot.Root : \"button\"\n\n  return (\n    <Comp\n      data-slot=\"button\"\n      data-variant={variant}\n      data-size={size}\n      className={cn(buttonVariants({ variant, size, className }))}\n      {...props}\n    />\n  )\n}\n\nexport { Button, buttonVariants }\n","type":"registry:ui","target":"components/ui/button.tsx"},{"path":"components/ui/card.tsx","content":"import * as React from \"react\"\n\nimport { cn } from \"@/lib/utils\"\n\nfunction Card({\n  className,\n  size = \"default\",\n  ...props\n}: React.ComponentProps<\"div\"> & { size?: \"default\" | \"sm\" }) {\n  return (\n    <div\n      data-slot=\"card\"\n      data-size={size}\n      className={cn(\n        \"group/card flex flex-col gap-6 overflow-hidden rounded-xl bg-card py-6 text-sm text-card-foreground shadow-xs ring-1 ring-foreground/10 has-[>img:first-child]:pt-0 data-[size=sm]:gap-4 data-[size=sm]:py-4 *:[img:first-child]:rounded-t-xl *:[img:last-child]:rounded-b-xl\",\n        className\n      )}\n      {...props}\n    />\n  )\n}\n\nfunction CardHeader({ className, ...props }: React.ComponentProps<\"div\">) {\n  return (\n    <div\n      data-slot=\"card-header\"\n      className={cn(\n        \"group/card-header @container/card-header grid auto-rows-min items-start gap-1 rounded-t-xl px-6 group-data-[size=sm]/card:px-4 has-data-[slot=card-action]:grid-cols-[1fr_auto] has-data-[slot=card-description]:grid-rows-[auto_auto] [.border-b]:pb-6 group-data-[size=sm]/card:[.border-b]:pb-4\",\n        className\n      )}\n      {...props}\n    />\n  )\n}\n\nfunction CardTitle({ className, ...props }: React.ComponentProps<\"div\">) {\n  return (\n    <div\n      data-slot=\"card-title\"\n      className={cn(\n        \"font-heading text-base leading-normal font-medium group-data-[size=sm]/card:text-sm\",\n        className\n      )}\n      {...props}\n    />\n  )\n}\n\nfunction CardDescription({ className, ...props }: React.ComponentProps<\"div\">) {\n  return (\n    <div\n      data-slot=\"card-description\"\n      className={cn(\"text-sm text-muted-foreground\", className)}\n      {...props}\n    />\n  )\n}\n\nfunction CardAction({ className, ...props }: React.ComponentProps<\"div\">) {\n  return (\n    <div\n      data-slot=\"card-action\"\n      className={cn(\n        \"col-start-2 row-span-2 row-start-1 self-start justify-self-end\",\n        className\n      )}\n      {...props}\n    />\n  )\n}\n\nfunction CardContent({ className, ...props }: React.ComponentProps<\"div\">) {\n  return (\n    <div\n      data-slot=\"card-content\"\n      className={cn(\"px-6 group-data-[size=sm]/card:px-4\", className)}\n      {...props}\n    />\n  )\n}\n\nfunction CardFooter({ className, ...props }: React.ComponentProps<\"div\">) {\n  return (\n    <div\n      data-slot=\"card-footer\"\n      className={cn(\n        \"flex items-center rounded-b-xl px-6 group-data-[size=sm]/card:px-4 [.border-t]:pt-6 group-data-[size=sm]/card:[.border-t]:pt-4\",\n        className\n      )}\n      {...props}\n    />\n  )\n}\n\nexport {\n  Card,\n  CardHeader,\n  CardFooter,\n  CardTitle,\n  CardAction,\n  CardDescription,\n  CardContent,\n}\n","type":"registry:ui","target":"components/ui/card.tsx"},{"path":"components/ui/input.tsx","content":"import * as React from \"react\"\n\nimport { cn } from \"@/lib/utils\"\n\nfunction Input({ className, type, ...props }: React.ComponentProps<\"input\">) {\n  return (\n    <input\n      type={type}\n      data-slot=\"input\"\n      className={cn(\n        \"h-9 w-full min-w-0 rounded-md border border-input bg-transparent px-2.5 py-1 text-base shadow-xs transition-[color,box-shadow] outline-none file:inline-flex file:h-7 file:border-0 file:bg-transparent file:text-sm file:font-medium file:text-foreground placeholder:text-muted-foreground focus-visible:border-ring focus-visible:ring-3 focus-visible:ring-ring/50 disabled:pointer-events-none disabled:cursor-not-allowed disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-3 aria-invalid:ring-destructive/20 md:text-sm dark:bg-input/30 dark:aria-invalid:border-destructive/50 dark:aria-invalid:ring-destructive/40\",\n        className\n      )}\n      {...props}\n    />\n  )\n}\n\nexport { Input }\n","type":"registry:ui","target":"components/ui/input.tsx"},{"path":"components/ui/select.tsx","content":"\"use client\"\n\nimport * as React from \"react\"\nimport { Select as SelectPrimitive } from \"radix-ui\"\n\nimport { cn } from \"@/lib/utils\"\nimport { ChevronDownIcon, CheckIcon, ChevronUpIcon } from \"lucide-react\"\n\nfunction Select({\n  ...props\n}: React.ComponentProps<typeof SelectPrimitive.Root>) {\n  return <SelectPrimitive.Root data-slot=\"select\" {...props} />\n}\n\nfunction SelectGroup({\n  className,\n  ...props\n}: React.ComponentProps<typeof SelectPrimitive.Group>) {\n  return (\n    <SelectPrimitive.Group\n      data-slot=\"select-group\"\n      className={cn(\"scroll-my-1 p-1\", className)}\n      {...props}\n    />\n  )\n}\n\nfunction SelectValue({\n  ...props\n}: React.ComponentProps<typeof SelectPrimitive.Value>) {\n  return <SelectPrimitive.Value data-slot=\"select-value\" {...props} />\n}\n\nfunction SelectTrigger({\n  className,\n  size = \"default\",\n  children,\n  ...props\n}: React.ComponentProps<typeof SelectPrimitive.Trigger> & {\n  size?: \"sm\" | \"default\"\n}) {\n  return (\n    <SelectPrimitive.Trigger\n      data-slot=\"select-trigger\"\n      data-size={size}\n      className={cn(\n        \"flex w-fit items-center justify-between gap-1.5 rounded-md border border-input bg-transparent py-2 pr-2 pl-2.5 text-sm whitespace-nowrap shadow-xs transition-[color,box-shadow] outline-none focus-visible:border-ring focus-visible:ring-3 focus-visible:ring-ring/50 disabled:cursor-not-allowed disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-3 aria-invalid:ring-destructive/20 data-placeholder:text-muted-foreground data-[size=default]:h-9 data-[size=sm]:h-8 *:data-[slot=select-value]:line-clamp-1 *:data-[slot=select-value]:flex *:data-[slot=select-value]:items-center *:data-[slot=select-value]:gap-1.5 dark:bg-input/30 dark:hover:bg-input/50 dark:aria-invalid:border-destructive/50 dark:aria-invalid:ring-destructive/40 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4\",\n        className\n      )}\n      {...props}\n    >\n      {children}\n      <SelectPrimitive.Icon asChild>\n        <ChevronDownIcon className=\"pointer-events-none size-4 text-muted-foreground\" />\n      </SelectPrimitive.Icon>\n    </SelectPrimitive.Trigger>\n  )\n}\n\nfunction SelectContent({\n  className,\n  children,\n  position = \"item-aligned\",\n  align = \"center\",\n  ...props\n}: React.ComponentProps<typeof SelectPrimitive.Content>) {\n  return (\n    <SelectPrimitive.Portal>\n      <SelectPrimitive.Content\n        data-slot=\"select-content\"\n        data-align-trigger={position === \"item-aligned\"}\n        className={cn(\"relative z-50 max-h-(--radix-select-content-available-height) min-w-36 origin-(--radix-select-content-transform-origin) overflow-x-hidden overflow-y-auto rounded-md bg-popover text-popover-foreground shadow-md ring-1 ring-foreground/10 duration-100 data-[align-trigger=true]:animate-none data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 data-open:animate-in data-open:fade-in-0 data-open:zoom-in-95 data-closed:animate-out data-closed:fade-out-0 data-closed:zoom-out-95\", position ===\"popper\"&&\"data-[side=bottom]:translate-y-1 data-[side=left]:-translate-x-1 data-[side=right]:translate-x-1 data-[side=top]:-translate-y-1\", className )}\n        position={position}\n        align={align}\n        {...props}\n      >\n        <SelectScrollUpButton />\n        <SelectPrimitive.Viewport\n          data-position={position}\n          className={cn(\n            \"data-[position=popper]:h-(--radix-select-trigger-height) data-[position=popper]:w-full data-[position=popper]:min-w-(--radix-select-trigger-width)\",\n            position === \"popper\" && \"\"\n          )}\n        >\n          {children}\n        </SelectPrimitive.Viewport>\n        <SelectScrollDownButton />\n      </SelectPrimitive.Content>\n    </SelectPrimitive.Portal>\n  )\n}\n\nfunction SelectLabel({\n  className,\n  ...props\n}: React.ComponentProps<typeof SelectPrimitive.Label>) {\n  return (\n    <SelectPrimitive.Label\n      data-slot=\"select-label\"\n      className={cn(\"px-2 py-1.5 text-xs text-muted-foreground\", className)}\n      {...props}\n    />\n  )\n}\n\nfunction SelectItem({\n  className,\n  children,\n  ...props\n}: React.ComponentProps<typeof SelectPrimitive.Item>) {\n  return (\n    <SelectPrimitive.Item\n      data-slot=\"select-item\"\n      className={cn(\n        \"relative flex w-full cursor-default items-center gap-2 rounded-sm py-1.5 pr-8 pl-2 text-sm outline-hidden select-none focus:bg-accent focus:text-accent-foreground not-data-[variant=destructive]:focus:**:text-accent-foreground data-disabled:pointer-events-none data-disabled:opacity-50 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4 *:[span]:last:flex *:[span]:last:items-center *:[span]:last:gap-2\",\n        className\n      )}\n      {...props}\n    >\n      <span className=\"pointer-events-none absolute right-2 flex size-4 items-center justify-center\">\n        <SelectPrimitive.ItemIndicator>\n          <CheckIcon className=\"pointer-events-none\" />\n        </SelectPrimitive.ItemIndicator>\n      </span>\n      <SelectPrimitive.ItemText>{children}</SelectPrimitive.ItemText>\n    </SelectPrimitive.Item>\n  )\n}\n\nfunction SelectSeparator({\n  className,\n  ...props\n}: React.ComponentProps<typeof SelectPrimitive.Separator>) {\n  return (\n    <SelectPrimitive.Separator\n      data-slot=\"select-separator\"\n      className={cn(\"pointer-events-none -mx-1 my-1 h-px bg-border\", className)}\n      {...props}\n    />\n  )\n}\n\nfunction SelectScrollUpButton({\n  className,\n  ...props\n}: React.ComponentProps<typeof SelectPrimitive.ScrollUpButton>) {\n  return (\n    <SelectPrimitive.ScrollUpButton\n      data-slot=\"select-scroll-up-button\"\n      className={cn(\n        \"z-10 flex cursor-default items-center justify-center bg-popover py-1 [&_svg:not([class*='size-'])]:size-4\",\n        className\n      )}\n      {...props}\n    >\n      <ChevronUpIcon\n      />\n    </SelectPrimitive.ScrollUpButton>\n  )\n}\n\nfunction SelectScrollDownButton({\n  className,\n  ...props\n}: React.ComponentProps<typeof SelectPrimitive.ScrollDownButton>) {\n  return (\n    <SelectPrimitive.ScrollDownButton\n      data-slot=\"select-scroll-down-button\"\n      className={cn(\n        \"z-10 flex cursor-default items-center justify-center bg-popover py-1 [&_svg:not([class*='size-'])]:size-4\",\n        className\n      )}\n      {...props}\n    >\n      <ChevronDownIcon\n      />\n    </SelectPrimitive.ScrollDownButton>\n  )\n}\n\nexport {\n  Select,\n  SelectContent,\n  SelectGroup,\n  SelectItem,\n  SelectLabel,\n  SelectScrollDownButton,\n  SelectScrollUpButton,\n  SelectSeparator,\n  SelectTrigger,\n  SelectValue,\n}\n","type":"registry:ui","target":"components/ui/select.tsx"}],"description":"A searchable job board with filters for team, location, and type. Lets candidates scan every open role and apply to the one that fits them best.","dependencies":["class-variance-authority","lucide-react","radix-ui"]}