{"$schema":"https://ui.shadcn.com/schema/registry-item.json","name":"marketing-hero-forms-product-customizer-form","type":"registry:block","title":"Product Customizer Form","files":[{"path":"components/blocks/marketing/hero-forms/product-customizer-form.tsx","content":"import { useState, useEffect } from 'react';\nimport { Button } from '@/components/ui/button';\nimport { Input } from '@/components/ui/input';\nimport { Label } from '@/components/ui/label';\nimport { RadioGroup, RadioGroupItem } from '@/components/ui/radio-group';\nimport { Slider } from '@/components/ui/slider';\nimport { Switch } from '@/components/ui/switch';\nimport {\n  Card,\n  CardContent,\n  CardDescription,\n  CardFooter,\n  CardHeader,\n  CardTitle,\n} from '@/components/ui/card';\nimport {\n  Tooltip,\n  TooltipContent,\n  TooltipProvider,\n  TooltipTrigger,\n} from '@/components/ui/tooltip';\nimport { Badge } from '@/components/ui/badge';\nimport { Separator } from '@/components/ui/separator';\nimport {\n  InfoIcon,\n  CheckIcon,\n  ShoppingCartIcon,\n  Share2Icon,\n  HeartIcon,\n} from 'lucide-react';\n\nexport default function HeroFormProductCustomizer() {\n  // Product state\n  const [product, setProduct] = useState({\n    name: 'Custom Ergonomic Chair',\n    basePrice: 299,\n    color: 'black',\n    material: 'fabric',\n    armrests: true,\n    headrest: false,\n    lumbarSupport: true,\n    height: 5, // 1-10 scale\n    recline: 3, // 1-5 scale\n    quantity: 1,\n  });\n\n  // UI state\n  const [totalPrice, setTotalPrice] = useState(0);\n  const [orderComplete, setOrderComplete] = useState(false);\n  const [isLoading, setIsLoading] = useState(false);\n\n  // Calculate price based on options\n  useEffect(() => {\n    let price = product.basePrice;\n\n    // Add costs for premium options\n    if (product.material === 'leather') price += 100;\n    else if (product.material === 'mesh') price += 50;\n\n    if (product.headrest) price += 45;\n    if (product.lumbarSupport) price += 35;\n\n    // Multiply by quantity\n    price *= product.quantity;\n\n    setTotalPrice(price);\n  }, [product]);\n\n  // Get image URL based on product configuration\n  const getProductImageUrl = () => {\n    let baseImage = '';\n\n    // Select base image based on color and material\n    if (product.material === 'leather') {\n      if (product.color === 'black') {\n        baseImage =\n          'https://images.unsplash.com/photo-1580480055273-228ff5388ef8?q=80&w=2000&auto=format&fit=crop';\n      } else if (product.color === 'brown') {\n        baseImage =\n          'https://images.unsplash.com/photo-1592078615290-033ee584e267?q=80&w=1964&auto=format&fit=crop';\n      } else {\n        baseImage =\n          'https://images.unsplash.com/photo-1505843490701-5c4b83790555?q=80&w=1918&auto=format&fit=crop';\n      }\n    } else if (product.material === 'mesh') {\n      baseImage =\n        'https://images.unsplash.com/photo-1596079890701-dd42edf0b7d4?q=80&w=2071&auto=format&fit=crop';\n    } else {\n      // Fabric chair\n      if (product.color === 'black') {\n        baseImage =\n          'https://images.unsplash.com/photo-1505843513577-22bb7d21e455?q=80&w=2069&auto=format&fit=crop';\n      } else if (product.color === 'blue') {\n        baseImage =\n          'https://images.unsplash.com/photo-1586023492125-27b2c045efd7?q=80&w=2158&auto=format&fit=crop';\n      } else {\n        baseImage =\n          'https://images.unsplash.com/photo-1567538096630-e0c55bd6374c?q=80&w=1974&auto=format&fit=crop';\n      }\n    }\n\n    return baseImage;\n  };\n\n  // Handle form submission\n  const handleSubmit = (e: React.FormEvent) => {\n    e.preventDefault();\n    setIsLoading(true);\n\n    // Simulate API call\n    setTimeout(() => {\n      setIsLoading(false);\n      setOrderComplete(true);\n    }, 1500);\n  };\n\n  return (\n    <>\n      {/* Hero */}\n      <div className=\"relative overflow-hidden bg-gradient-to-b from-slate-50 to-white dark:from-slate-950 dark:to-slate-900\">\n        <div className=\"bg-grid-slate-200 dark:bg-grid-slate-800/20 absolute inset-0 bg-[size:24px_24px] opacity-10\"></div>\n\n        <div className=\"relative z-10 container mx-auto px-4 py-16 md:px-6 lg:py-24 2xl:max-w-[1400px]\">\n          <div className=\"mx-auto max-w-6xl\">\n            <div className=\"mb-12 text-center\">\n              <Badge\n                variant=\"outline\"\n                className=\"mb-4 px-3 py-1 text-sm font-medium\"\n              >\n                Customizable Product\n              </Badge>\n              <h1 className=\"mb-4 text-4xl font-bold tracking-tight sm:text-5xl\">\n                Design Your Perfect Chair\n              </h1>\n              <p className=\"text-muted-foreground mx-auto max-w-2xl text-xl\">\n                Customize every detail to create a chair that matches your exact\n                needs, comfort preferences, and style.\n              </p>\n            </div>\n\n            {!orderComplete ? (\n              <div className=\"grid gap-8 lg:grid-cols-2 lg:gap-12\">\n                {/* Product Preview */}\n                <div className=\"order-2 lg:order-1\">\n                  <Card className=\"flex h-full flex-col overflow-hidden p-0\">\n                    <div className=\"relative aspect-square w-full overflow-hidden bg-slate-100 dark:bg-slate-800\">\n                      <img\n                        src={getProductImageUrl()}\n                        alt={`${product.color} ${product.material} chair`}\n                        className=\"object-cover\"\n                      />\n                      <div className=\"absolute top-4 right-4 space-x-2\">\n                        <Button\n                          variant=\"outline\"\n                          size=\"icon\"\n                          className=\"rounded-full bg-white/80 backdrop-blur-sm hover:bg-white dark:bg-slate-900/80 dark:hover:bg-slate-900\"\n                        >\n                          <HeartIcon className=\"h-4 w-4\" />\n                          <span className=\"sr-only\">Add to favorites</span>\n                        </Button>\n                        <Button\n                          variant=\"outline\"\n                          size=\"icon\"\n                          className=\"rounded-full bg-white/80 backdrop-blur-sm hover:bg-white dark:bg-slate-900/80 dark:hover:bg-slate-900\"\n                        >\n                          <Share2Icon className=\"h-4 w-4\" />\n                          <span className=\"sr-only\">Share</span>\n                        </Button>\n                      </div>\n                    </div>\n                    <CardContent className=\"flex-grow p-6\">\n                      <div className=\"mb-4 flex items-start justify-between\">\n                        <div>\n                          <h2 className=\"text-2xl font-bold\">{product.name}</h2>\n                          <p className=\"text-muted-foreground\">\n                            Your custom configuration\n                          </p>\n                        </div>\n                        <div className=\"text-right\">\n                          <div className=\"text-2xl font-bold\">\n                            ${totalPrice}\n                          </div>\n                          <p className=\"text-muted-foreground text-xs\">\n                            Free shipping\n                          </p>\n                        </div>\n                      </div>\n\n                      <div className=\"space-y-4\">\n                        <div>\n                          <h3 className=\"mb-1 text-sm font-medium\">\n                            Selected Options\n                          </h3>\n                          <div className=\"grid grid-cols-2 gap-x-6 gap-y-2 text-sm\">\n                            <div className=\"flex justify-between\">\n                              <span className=\"text-muted-foreground\">\n                                Color:\n                              </span>\n                              <span className=\"capitalize\">\n                                {product.color}\n                              </span>\n                            </div>\n                            <div className=\"flex justify-between\">\n                              <span className=\"text-muted-foreground\">\n                                Material:\n                              </span>\n                              <span className=\"capitalize\">\n                                {product.material}\n                              </span>\n                            </div>\n                            <div className=\"flex justify-between\">\n                              <span className=\"text-muted-foreground\">\n                                Armrests:\n                              </span>\n                              <span>{product.armrests ? 'Yes' : 'No'}</span>\n                            </div>\n                            <div className=\"flex justify-between\">\n                              <span className=\"text-muted-foreground\">\n                                Headrest:\n                              </span>\n                              <span>{product.headrest ? 'Yes' : 'No'}</span>\n                            </div>\n                            <div className=\"flex justify-between\">\n                              <span className=\"text-muted-foreground\">\n                                Lumbar Support:\n                              </span>\n                              <span>\n                                {product.lumbarSupport ? 'Yes' : 'No'}\n                              </span>\n                            </div>\n                            <div className=\"flex justify-between\">\n                              <span className=\"text-muted-foreground\">\n                                Height:\n                              </span>\n                              <span>{product.height}/10</span>\n                            </div>\n                            <div className=\"flex justify-between\">\n                              <span className=\"text-muted-foreground\">\n                                Recline:\n                              </span>\n                              <span>{product.recline}/5</span>\n                            </div>\n                            <div className=\"flex justify-between\">\n                              <span className=\"text-muted-foreground\">\n                                Quantity:\n                              </span>\n                              <span>{product.quantity}</span>\n                            </div>\n                          </div>\n                        </div>\n\n                        <Separator />\n\n                        <div>\n                          <h3 className=\"mb-2 text-sm font-medium\">\n                            Product Features\n                          </h3>\n                          <ul className=\"text-muted-foreground space-y-1 text-sm\">\n                            <li className=\"flex items-start\">\n                              <CheckIcon className=\"mt-0.5 mr-2 h-4 w-4 text-green-500\" />\n                              <span>5-year warranty on all parts</span>\n                            </li>\n                            <li className=\"flex items-start\">\n                              <CheckIcon className=\"mt-0.5 mr-2 h-4 w-4 text-green-500\" />\n                              <span>Easy assembly with included tools</span>\n                            </li>\n                            <li className=\"flex items-start\">\n                              <CheckIcon className=\"mt-0.5 mr-2 h-4 w-4 text-green-500\" />\n                              <span>Certified eco-friendly materials</span>\n                            </li>\n                            <li className=\"flex items-start\">\n                              <CheckIcon className=\"mt-0.5 mr-2 h-4 w-4 text-green-500\" />\n                              <span>30-day risk-free trial</span>\n                            </li>\n                          </ul>\n                        </div>\n                      </div>\n                    </CardContent>\n                  </Card>\n                </div>\n\n                {/* Customization Options */}\n                <div className=\"order-1 lg:order-2\">\n                  <Card className=\"h-full\">\n                    <CardHeader>\n                      <CardTitle>Customize Your Chair</CardTitle>\n                      <CardDescription>\n                        Select your preferred options and features\n                      </CardDescription>\n                    </CardHeader>\n                    <CardContent>\n                      <form onSubmit={handleSubmit} className=\"space-y-6\">\n                        {/* Color Selection */}\n                        <div className=\"space-y-3\">\n                          <Label>Color</Label>\n                          <RadioGroup\n                            value={product.color}\n                            onValueChange={(value) =>\n                              setProduct({ ...product, color: value })\n                            }\n                            className=\"flex gap-3\"\n                          >\n                            <div>\n                              <RadioGroupItem\n                                value=\"black\"\n                                id=\"color-black\"\n                                className=\"sr-only\"\n                              />\n                              <Label\n                                htmlFor=\"color-black\"\n                                className={`flex h-8 w-8 cursor-pointer items-center justify-center rounded-full bg-gray-900 ${\n                                  product.color === 'black'\n                                    ? 'ring-primary ring-2 ring-offset-2'\n                                    : ''\n                                }`}\n                              >\n                                {product.color === 'black' && (\n                                  <CheckIcon className=\"h-4 w-4 text-white\" />\n                                )}\n                              </Label>\n                            </div>\n                            <div>\n                              <RadioGroupItem\n                                value=\"blue\"\n                                id=\"color-blue\"\n                                className=\"sr-only\"\n                              />\n                              <Label\n                                htmlFor=\"color-blue\"\n                                className={`flex h-8 w-8 cursor-pointer items-center justify-center rounded-full bg-blue-600 ${\n                                  product.color === 'blue'\n                                    ? 'ring-primary ring-2 ring-offset-2'\n                                    : ''\n                                }`}\n                              >\n                                {product.color === 'blue' && (\n                                  <CheckIcon className=\"h-4 w-4 text-white\" />\n                                )}\n                              </Label>\n                            </div>\n                            <div>\n                              <RadioGroupItem\n                                value=\"brown\"\n                                id=\"color-brown\"\n                                className=\"sr-only\"\n                              />\n                              <Label\n                                htmlFor=\"color-brown\"\n                                className={`flex h-8 w-8 cursor-pointer items-center justify-center rounded-full bg-amber-800 ${\n                                  product.color === 'brown'\n                                    ? 'ring-primary ring-2 ring-offset-2'\n                                    : ''\n                                }`}\n                              >\n                                {product.color === 'brown' && (\n                                  <CheckIcon className=\"h-4 w-4 text-white\" />\n                                )}\n                              </Label>\n                            </div>\n                            <div>\n                              <RadioGroupItem\n                                value=\"gray\"\n                                id=\"color-gray\"\n                                className=\"sr-only\"\n                              />\n                              <Label\n                                htmlFor=\"color-gray\"\n                                className={`flex h-8 w-8 cursor-pointer items-center justify-center rounded-full bg-gray-400 ${\n                                  product.color === 'gray'\n                                    ? 'ring-primary ring-2 ring-offset-2'\n                                    : ''\n                                }`}\n                              >\n                                {product.color === 'gray' && (\n                                  <CheckIcon className=\"h-4 w-4 text-white\" />\n                                )}\n                              </Label>\n                            </div>\n                          </RadioGroup>\n                        </div>\n\n                        {/* Material Selection */}\n                        <div className=\"space-y-3\">\n                          <div className=\"flex items-center justify-between\">\n                            <Label>Material</Label>\n                            <TooltipProvider>\n                              <Tooltip>\n                                <TooltipTrigger asChild>\n                                  <InfoIcon className=\"text-muted-foreground h-4 w-4\" />\n                                </TooltipTrigger>\n                                <TooltipContent className=\"w-80 p-4\">\n                                  <p className=\"mb-1 font-medium\">\n                                    Material Details:\n                                  </p>\n                                  <ul className=\"space-y-1 text-sm\">\n                                    <li>\n                                      <span className=\"font-medium\">\n                                        Fabric:\n                                      </span>{' '}\n                                      Breathable and comfortable, standard\n                                      option.\n                                    </li>\n                                    <li>\n                                      <span className=\"font-medium\">Mesh:</span>{' '}\n                                      Better airflow, ideal for warmer\n                                      environments (+$50).\n                                    </li>\n                                    <li>\n                                      <span className=\"font-medium\">\n                                        Leather:\n                                      </span>{' '}\n                                      Premium look and feel, more durable\n                                      (+$100).\n                                    </li>\n                                  </ul>\n                                </TooltipContent>\n                              </Tooltip>\n                            </TooltipProvider>\n                          </div>\n                          <RadioGroup\n                            value={product.material}\n                            onValueChange={(value) =>\n                              setProduct({ ...product, material: value })\n                            }\n                            className=\"grid grid-cols-3 gap-3\"\n                          >\n                            <div>\n                              <RadioGroupItem\n                                value=\"fabric\"\n                                id=\"material-fabric\"\n                                className=\"sr-only\"\n                              />\n                              <Label\n                                htmlFor=\"material-fabric\"\n                                className={`bg-popover hover:bg-accent hover:text-accent-foreground flex h-20 flex-col items-center justify-center rounded-md border-2 p-2 ${\n                                  product.material === 'fabric'\n                                    ? 'border-primary'\n                                    : 'border-muted'\n                                }`}\n                              >\n                                <span className=\"text-sm font-medium\">\n                                  Fabric\n                                </span>\n                                <span className=\"text-muted-foreground text-xs\">\n                                  Standard\n                                </span>\n                              </Label>\n                            </div>\n                            <div>\n                              <RadioGroupItem\n                                value=\"mesh\"\n                                id=\"material-mesh\"\n                                className=\"sr-only\"\n                              />\n                              <Label\n                                htmlFor=\"material-mesh\"\n                                className={`bg-popover hover:bg-accent hover:text-accent-foreground flex h-20 flex-col items-center justify-center rounded-md border-2 p-2 ${\n                                  product.material === 'mesh'\n                                    ? 'border-primary'\n                                    : 'border-muted'\n                                }`}\n                              >\n                                <span className=\"text-sm font-medium\">\n                                  Mesh\n                                </span>\n                                <span className=\"text-muted-foreground text-xs\">\n                                  +$50\n                                </span>\n                              </Label>\n                            </div>\n                            <div>\n                              <RadioGroupItem\n                                value=\"leather\"\n                                id=\"material-leather\"\n                                className=\"sr-only\"\n                              />\n                              <Label\n                                htmlFor=\"material-leather\"\n                                className={`bg-popover hover:bg-accent hover:text-accent-foreground flex h-20 flex-col items-center justify-center rounded-md border-2 p-2 ${\n                                  product.material === 'leather'\n                                    ? 'border-primary'\n                                    : 'border-muted'\n                                }`}\n                              >\n                                <span className=\"text-sm font-medium\">\n                                  Leather\n                                </span>\n                                <span className=\"text-muted-foreground text-xs\">\n                                  +$100\n                                </span>\n                              </Label>\n                            </div>\n                          </RadioGroup>\n                        </div>\n\n                        <Separator />\n\n                        {/* Optional Features */}\n                        <div className=\"space-y-4\">\n                          <h3 className=\"text-sm font-medium\">Features</h3>\n\n                          <div className=\"flex items-center justify-between\">\n                            <div className=\"space-y-0.5\">\n                              <Label htmlFor=\"armrests\">Armrests</Label>\n                              <div className=\"text-muted-foreground text-xs\">\n                                Adjustable height and width\n                              </div>\n                            </div>\n                            <Switch\n                              id=\"armrests\"\n                              checked={product.armrests}\n                              onCheckedChange={(checked) =>\n                                setProduct({ ...product, armrests: checked })\n                              }\n                            />\n                          </div>\n\n                          <div className=\"flex items-center justify-between\">\n                            <div className=\"space-y-0.5\">\n                              <Label htmlFor=\"headrest\">Headrest</Label>\n                              <div className=\"text-muted-foreground text-xs\">\n                                Additional head support (+$45)\n                              </div>\n                            </div>\n                            <Switch\n                              id=\"headrest\"\n                              checked={product.headrest}\n                              onCheckedChange={(checked) =>\n                                setProduct({ ...product, headrest: checked })\n                              }\n                            />\n                          </div>\n\n                          <div className=\"flex items-center justify-between\">\n                            <div className=\"space-y-0.5\">\n                              <Label htmlFor=\"lumbarSupport\">\n                                Lumbar Support\n                              </Label>\n                              <div className=\"text-muted-foreground text-xs\">\n                                Adjustable back support (+$35)\n                              </div>\n                            </div>\n                            <Switch\n                              id=\"lumbarSupport\"\n                              checked={product.lumbarSupport}\n                              onCheckedChange={(checked) =>\n                                setProduct({\n                                  ...product,\n                                  lumbarSupport: checked,\n                                })\n                              }\n                            />\n                          </div>\n                        </div>\n\n                        <Separator />\n\n                        {/* Adjustments */}\n                        <div className=\"space-y-4\">\n                          <h3 className=\"text-sm font-medium\">Adjustments</h3>\n\n                          <div className=\"space-y-3\">\n                            <div className=\"flex justify-between\">\n                              <Label htmlFor=\"height\">Chair Height</Label>\n                              <span className=\"text-muted-foreground text-sm\">\n                                {product.height}/10\n                              </span>\n                            </div>\n                            <Slider\n                              id=\"height\"\n                              min={1}\n                              max={10}\n                              step={1}\n                              value={[product.height]}\n                              onValueChange={(values) =>\n                                setProduct({ ...product, height: values[0]! })\n                              }\n                            />\n                            <div className=\"text-muted-foreground flex justify-between text-xs\">\n                              <span>Lower</span>\n                              <span>Higher</span>\n                            </div>\n                          </div>\n\n                          <div className=\"space-y-3\">\n                            <div className=\"flex justify-between\">\n                              <Label htmlFor=\"recline\">Recline Tension</Label>\n                              <span className=\"text-muted-foreground text-sm\">\n                                {product.recline}/5\n                              </span>\n                            </div>\n                            <Slider\n                              id=\"recline\"\n                              min={1}\n                              max={5}\n                              step={1}\n                              value={[product.recline]}\n                              onValueChange={(values) =>\n                                setProduct({ ...product, recline: values[0]! })\n                              }\n                            />\n                            <div className=\"text-muted-foreground flex justify-between text-xs\">\n                              <span>Soft</span>\n                              <span>Firm</span>\n                            </div>\n                          </div>\n                        </div>\n\n                        <Separator />\n\n                        {/* Quantity */}\n                        <div className=\"space-y-3\">\n                          <Label htmlFor=\"quantity\">Quantity</Label>\n                          <div className=\"flex items-center\">\n                            <Button\n                              type=\"button\"\n                              variant=\"outline\"\n                              size=\"icon\"\n                              className=\"h-8 w-8 rounded-r-none\"\n                              onClick={() =>\n                                product.quantity > 1 &&\n                                setProduct({\n                                  ...product,\n                                  quantity: product.quantity - 1,\n                                })\n                              }\n                              disabled={product.quantity <= 1}\n                            >\n                              -\n                            </Button>\n                            <Input\n                              id=\"quantity\"\n                              type=\"number\"\n                              min={1}\n                              max={10}\n                              className=\"h-8 w-16 [appearance:textfield] rounded-none text-center [&::-webkit-inner-spin-button]:appearance-none [&::-webkit-outer-spin-button]:appearance-none\"\n                              value={product.quantity}\n                              onChange={(e) => {\n                                const value = parseInt(e.target.value);\n                                if (\n                                  !isNaN(value) &&\n                                  value >= 1 &&\n                                  value <= 10\n                                ) {\n                                  setProduct({ ...product, quantity: value });\n                                }\n                              }}\n                            />\n                            <Button\n                              type=\"button\"\n                              variant=\"outline\"\n                              size=\"icon\"\n                              className=\"h-8 w-8 rounded-l-none\"\n                              onClick={() =>\n                                product.quantity < 10 &&\n                                setProduct({\n                                  ...product,\n                                  quantity: product.quantity + 1,\n                                })\n                              }\n                              disabled={product.quantity >= 10}\n                            >\n                              +\n                            </Button>\n                          </div>\n                        </div>\n\n                        <Separator />\n\n                        <div className=\"pt-4\">\n                          <div className=\"mb-4 flex items-center justify-between\">\n                            <div className=\"text-lg font-medium\">Total</div>\n                            <div className=\"text-2xl font-bold\">\n                              ${totalPrice}\n                            </div>\n                          </div>\n                          <Button\n                            type=\"submit\"\n                            className=\"w-full\"\n                            disabled={isLoading}\n                          >\n                            {isLoading ? (\n                              <span className=\"flex items-center\">\n                                <svg\n                                  className=\"mr-2 -ml-1 h-4 w-4 animate-spin text-white\"\n                                  xmlns=\"http://www.w3.org/2000/svg\"\n                                  fill=\"none\"\n                                  viewBox=\"0 0 24 24\"\n                                >\n                                  <circle\n                                    className=\"opacity-25\"\n                                    cx=\"12\"\n                                    cy=\"12\"\n                                    r=\"10\"\n                                    stroke=\"currentColor\"\n                                    strokeWidth=\"4\"\n                                  ></circle>\n                                  <path\n                                    className=\"opacity-75\"\n                                    fill=\"currentColor\"\n                                    d=\"M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z\"\n                                  ></path>\n                                </svg>\n                                Processing...\n                              </span>\n                            ) : (\n                              <span className=\"flex items-center\">\n                                <ShoppingCartIcon className=\"mr-2 h-4 w-4\" />\n                                Add to Cart\n                              </span>\n                            )}\n                          </Button>\n                        </div>\n                      </form>\n                    </CardContent>\n                  </Card>\n                </div>\n              </div>\n            ) : (\n              <Card className=\"mx-auto max-w-xl\">\n                <CardHeader className=\"text-center\">\n                  <div className=\"mx-auto mb-4 flex h-16 w-16 items-center justify-center rounded-full bg-green-100 dark:bg-green-900/30\">\n                    <CheckIcon className=\"h-8 w-8 text-green-600 dark:text-green-400\" />\n                  </div>\n                  <CardTitle className=\"text-2xl\">\n                    Order Added to Cart!\n                  </CardTitle>\n                  <CardDescription>\n                    Your custom chair has been added to your cart.\n                  </CardDescription>\n                </CardHeader>\n                <CardContent>\n                  <div className=\"mb-6 flex items-start gap-4\">\n                    <div className=\"relative h-24 w-24 flex-shrink-0 overflow-hidden rounded-md bg-slate-100\">\n                      <img\n                        src={getProductImageUrl()}\n                        alt={`${product.color} ${product.material} chair`}\n                        className=\"object-cover\"\n                      />\n                    </div>\n                    <div>\n                      <h3 className=\"font-medium\">{product.name}</h3>\n                      <p className=\"text-muted-foreground text-sm\">\n                        Custom configuration\n                      </p>\n                      <div className=\"mt-1 flex text-sm\">\n                        <p className=\"text-muted-foreground\">\n                          {product.color.charAt(0).toUpperCase() +\n                            product.color.slice(1)}\n                          ,{' '}\n                          {product.material.charAt(0).toUpperCase() +\n                            product.material.slice(1)}\n                          {product.headrest ? ', with headrest' : ''}\n                        </p>\n                      </div>\n                      <div className=\"text-muted-foreground mt-1 text-sm\">\n                        Qty {product.quantity}\n                      </div>\n                    </div>\n                    <div className=\"flex-1 text-right\">\n                      <p className=\"font-medium\">${totalPrice}</p>\n                    </div>\n                  </div>\n\n                  <Separator className=\"my-6\" />\n\n                  <div className=\"space-y-1.5\">\n                    <div className=\"flex justify-between\">\n                      <span className=\"text-muted-foreground\">Subtotal</span>\n                      <span>${totalPrice}</span>\n                    </div>\n                    <div className=\"flex justify-between\">\n                      <span className=\"text-muted-foreground\">Shipping</span>\n                      <span>Free</span>\n                    </div>\n                    <div className=\"flex justify-between\">\n                      <span className=\"text-muted-foreground\">\n                        Tax (estimated)\n                      </span>\n                      <span>${Math.round(totalPrice * 0.0725)}</span>\n                    </div>\n                    <Separator className=\"my-2\" />\n                    <div className=\"flex justify-between font-medium\">\n                      <span>Total</span>\n                      <span>\n                        ${totalPrice + Math.round(totalPrice * 0.0725)}\n                      </span>\n                    </div>\n                  </div>\n                </CardContent>\n                <CardFooter className=\"flex flex-col space-y-3\">\n                  <Button className=\"w-full\">Proceed to Checkout</Button>\n                  <Button\n                    variant=\"outline\"\n                    className=\"w-full\"\n                    onClick={() => setOrderComplete(false)}\n                  >\n                    Continue Shopping\n                  </Button>\n                </CardFooter>\n              </Card>\n            )}\n          </div>\n        </div>\n      </div>\n      {/* End Hero */}\n    </>\n  );\n}\n","type":"registry:component","target":"components/blocks/marketing/hero-forms/product-customizer-form.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/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/label.tsx","content":"\"use client\"\n\nimport * as React from \"react\"\nimport { Label as LabelPrimitive } from \"radix-ui\"\n\nimport { cn } from \"@/lib/utils\"\n\nfunction Label({\n  className,\n  ...props\n}: React.ComponentProps<typeof LabelPrimitive.Root>) {\n  return (\n    <LabelPrimitive.Root\n      data-slot=\"label\"\n      className={cn(\n        \"flex items-center gap-2 text-sm leading-none font-medium select-none group-data-[disabled=true]:pointer-events-none group-data-[disabled=true]:opacity-50 peer-disabled:cursor-not-allowed peer-disabled:opacity-50\",\n        className\n      )}\n      {...props}\n    />\n  )\n}\n\nexport { Label }\n","type":"registry:ui","target":"components/ui/label.tsx"},{"path":"components/ui/radio-group.tsx","content":"\"use client\"\n\nimport * as React from \"react\"\nimport { RadioGroup as RadioGroupPrimitive } from \"radix-ui\"\n\nimport { cn } from \"@/lib/utils\"\n\nfunction RadioGroup({\n  className,\n  ...props\n}: React.ComponentProps<typeof RadioGroupPrimitive.Root>) {\n  return (\n    <RadioGroupPrimitive.Root\n      data-slot=\"radio-group\"\n      className={cn(\"grid w-full gap-3\", className)}\n      {...props}\n    />\n  )\n}\n\nfunction RadioGroupItem({\n  className,\n  ...props\n}: React.ComponentProps<typeof RadioGroupPrimitive.Item>) {\n  return (\n    <RadioGroupPrimitive.Item\n      data-slot=\"radio-group-item\"\n      className={cn(\n        \"group/radio-group-item peer relative flex aspect-square size-4 shrink-0 rounded-full border border-input outline-none after:absolute after:-inset-x-3 after:-inset-y-2 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 aria-invalid:aria-checked:border-primary dark:bg-input/30 dark:aria-invalid:border-destructive/50 dark:aria-invalid:ring-destructive/40 data-checked:border-primary data-checked:bg-primary data-checked:text-primary-foreground dark:data-checked:bg-primary\",\n        className\n      )}\n      {...props}\n    >\n      <RadioGroupPrimitive.Indicator\n        data-slot=\"radio-group-indicator\"\n        className=\"flex size-4 items-center justify-center\"\n      >\n        <span className=\"absolute top-1/2 left-1/2 size-2 -translate-x-1/2 -translate-y-1/2 rounded-full bg-primary-foreground\" />\n      </RadioGroupPrimitive.Indicator>\n    </RadioGroupPrimitive.Item>\n  )\n}\n\nexport { RadioGroup, RadioGroupItem }\n","type":"registry:ui","target":"components/ui/radio-group.tsx"},{"path":"components/ui/slider.tsx","content":"\"use client\"\n\nimport * as React from \"react\"\nimport { Slider as SliderPrimitive } from \"radix-ui\"\n\nimport { cn } from \"@/lib/utils\"\n\nfunction Slider({\n  className,\n  defaultValue,\n  value,\n  min = 0,\n  max = 100,\n  ...props\n}: React.ComponentProps<typeof SliderPrimitive.Root>) {\n  const _values = React.useMemo(\n    () =>\n      Array.isArray(value)\n        ? value\n        : Array.isArray(defaultValue)\n          ? defaultValue\n          : [min, max],\n    [value, defaultValue, min, max]\n  )\n\n  return (\n    <SliderPrimitive.Root\n      data-slot=\"slider\"\n      defaultValue={defaultValue}\n      value={value}\n      min={min}\n      max={max}\n      className={cn(\n        \"relative flex w-full touch-none items-center select-none data-disabled:opacity-50 data-vertical:h-full data-vertical:min-h-40 data-vertical:w-auto data-vertical:flex-col\",\n        className\n      )}\n      {...props}\n    >\n      <SliderPrimitive.Track\n        data-slot=\"slider-track\"\n        className=\"relative grow overflow-hidden rounded-full bg-muted data-horizontal:h-1.5 data-horizontal:w-full data-vertical:h-full data-vertical:w-1.5\"\n      >\n        <SliderPrimitive.Range\n          data-slot=\"slider-range\"\n          className=\"absolute bg-primary select-none data-horizontal:h-full data-vertical:w-full\"\n        />\n      </SliderPrimitive.Track>\n      {Array.from({ length: _values.length }, (_, index) => (\n        <SliderPrimitive.Thumb\n          data-slot=\"slider-thumb\"\n          key={index}\n          className=\"block size-4 shrink-0 rounded-full border border-primary bg-white shadow-sm ring-ring/50 transition-[color,box-shadow] select-none hover:ring-4 focus-visible:ring-4 focus-visible:outline-hidden disabled:pointer-events-none disabled:opacity-50\"\n        />\n      ))}\n    </SliderPrimitive.Root>\n  )\n}\n\nexport { Slider }\n","type":"registry:ui","target":"components/ui/slider.tsx"},{"path":"components/ui/switch.tsx","content":"\"use client\"\n\nimport * as React from \"react\"\nimport { Switch as SwitchPrimitive } from \"radix-ui\"\n\nimport { cn } from \"@/lib/utils\"\n\nfunction Switch({\n  className,\n  size = \"default\",\n  ...props\n}: React.ComponentProps<typeof SwitchPrimitive.Root> & {\n  size?: \"sm\" | \"default\"\n}) {\n  return (\n    <SwitchPrimitive.Root\n      data-slot=\"switch\"\n      data-size={size}\n      className={cn(\n        \"peer group/switch relative inline-flex shrink-0 items-center rounded-full border border-transparent shadow-xs transition-all outline-none after:absolute after:-inset-x-3 after:-inset-y-2 focus-visible:border-ring focus-visible:ring-3 focus-visible:ring-ring/50 aria-invalid:border-destructive aria-invalid:ring-3 aria-invalid:ring-destructive/20 data-[size=default]:h-[18.4px] data-[size=default]:w-[32px] data-[size=sm]:h-[14px] data-[size=sm]:w-[24px] dark:aria-invalid:border-destructive/50 dark:aria-invalid:ring-destructive/40 data-checked:bg-primary data-unchecked:bg-input dark:data-unchecked:bg-input/80 data-disabled:cursor-not-allowed data-disabled:opacity-50\",\n        className\n      )}\n      {...props}\n    >\n      <SwitchPrimitive.Thumb\n        data-slot=\"switch-thumb\"\n        className=\"pointer-events-none block rounded-full bg-background ring-0 transition-transform group-data-[size=default]/switch:size-4 group-data-[size=sm]/switch:size-3 group-data-[size=default]/switch:data-checked:translate-x-[calc(100%-2px)] group-data-[size=sm]/switch:data-checked:translate-x-[calc(100%-2px)] dark:data-checked:bg-primary-foreground group-data-[size=default]/switch:data-unchecked:translate-x-0 group-data-[size=sm]/switch:data-unchecked:translate-x-0 dark:data-unchecked:bg-foreground\"\n      />\n    </SwitchPrimitive.Root>\n  )\n}\n\nexport { Switch }\n","type":"registry:ui","target":"components/ui/switch.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/tooltip.tsx","content":"\"use client\"\n\nimport * as React from \"react\"\nimport { Tooltip as TooltipPrimitive } from \"radix-ui\"\n\nimport { cn } from \"@/lib/utils\"\n\nfunction TooltipProvider({\n  delayDuration = 0,\n  ...props\n}: React.ComponentProps<typeof TooltipPrimitive.Provider>) {\n  return (\n    <TooltipPrimitive.Provider\n      data-slot=\"tooltip-provider\"\n      delayDuration={delayDuration}\n      {...props}\n    />\n  )\n}\n\nfunction Tooltip({\n  ...props\n}: React.ComponentProps<typeof TooltipPrimitive.Root>) {\n  return <TooltipPrimitive.Root data-slot=\"tooltip\" {...props} />\n}\n\nfunction TooltipTrigger({\n  ...props\n}: React.ComponentProps<typeof TooltipPrimitive.Trigger>) {\n  return <TooltipPrimitive.Trigger data-slot=\"tooltip-trigger\" {...props} />\n}\n\nfunction TooltipContent({\n  className,\n  sideOffset = 0,\n  children,\n  ...props\n}: React.ComponentProps<typeof TooltipPrimitive.Content>) {\n  return (\n    <TooltipPrimitive.Portal>\n      <TooltipPrimitive.Content\n        data-slot=\"tooltip-content\"\n        sideOffset={sideOffset}\n        className={cn(\n          \"z-50 inline-flex w-fit max-w-xs origin-(--radix-tooltip-content-transform-origin) items-center gap-1.5 rounded-md bg-foreground px-3 py-1.5 text-xs text-background has-data-[slot=kbd]:pr-1.5 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-[slot=kbd]:relative **:data-[slot=kbd]:isolate **:data-[slot=kbd]:z-50 **:data-[slot=kbd]:rounded-sm data-[state=delayed-open]:animate-in data-[state=delayed-open]:fade-in-0 data-[state=delayed-open]:zoom-in-95 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\",\n          className\n        )}\n        {...props}\n      >\n        {children}\n        <TooltipPrimitive.Arrow className=\"z-50 size-2.5 translate-y-[calc(-50%_-_2px)] rotate-45 rounded-[2px] bg-foreground fill-foreground\" />\n      </TooltipPrimitive.Content>\n    </TooltipPrimitive.Portal>\n  )\n}\n\nexport { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger }\n","type":"registry:ui","target":"components/ui/tooltip.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/separator.tsx","content":"\"use client\";\n\nimport * as React from \"react\";\nimport { Separator as SeparatorPrimitive } from \"radix-ui\";\n\nimport { cn } from \"@/lib/utils\";\n\nfunction Separator({\n  className,\n  orientation = \"horizontal\",\n  decorative = true,\n  ...props\n}: React.ComponentProps<typeof SeparatorPrimitive.Root>) {\n  return (\n    <SeparatorPrimitive.Root\n      data-slot=\"separator\"\n      decorative={decorative}\n      orientation={orientation}\n      className={cn(\n        \"shrink-0 bg-border data-horizontal:h-px data-horizontal:w-full data-vertical:w-px \",\n        className\n      )}\n      {...props}\n    />\n  );\n}\n\nexport { Separator };\n","type":"registry:ui","target":"components/ui/separator.tsx"}],"description":"A hero with a product customizer form for options like size and color. Lets shoppers configure their choice and preview it before checkout.","dependencies":["class-variance-authority","lucide-react","radix-ui"]}