{"$schema":"https://ui.shadcn.com/schema/registry-item.json","name":"portfolio-portfolio-email-signup-and-newsletter-footer-integrated-signup","type":"registry:block","title":"Footer Integrated Signup","files":[{"path":"components/blocks/portfolio/portfolio-email-signup-and-newsletter/footer-integrated-signup.tsx","content":"import { Button } from '@/components/ui/button';\nimport { Input } from '@/components/ui/input';\nimport { ArrowRight } from 'lucide-react';\n\nexport default function PortfolioFooterIntegratedSignup() {\n  return (\n    <div className=\"border-border bg-muted/10 w-full border-t py-8 md:py-10\">\n      <div className=\"container mx-auto px-4\">\n        <div className=\"grid grid-cols-1 gap-8 md:grid-cols-12 md:gap-10\">\n          {/* Brand & Navigation column */}\n          <div className=\"md:col-span-7 lg:col-span-8\">\n            <div className=\"flex h-full flex-col justify-between\">\n              <div>\n                <div className=\"mb-6\">\n                  <h3 className=\"text-xl font-bold\">Sarah Johnson</h3>\n                  <p className=\"text-muted-foreground mt-1\">\n                    UX Designer & Digital Consultant\n                  </p>\n                </div>\n\n                <div className=\"grid grid-cols-2 gap-6 sm:grid-cols-3\">\n                  <div className=\"space-y-3\">\n                    <p className=\"text-sm font-medium\">Navigation</p>\n                    <nav className=\"flex flex-col space-y-2 text-sm\">\n                      <a\n                        href=\"#\"\n                        className=\"text-muted-foreground hover:text-foreground transition-colors\"\n                      >\n                        Portfolio\n                      </a>\n                      <a\n                        href=\"#\"\n                        className=\"text-muted-foreground hover:text-foreground transition-colors\"\n                      >\n                        Services\n                      </a>\n                      <a\n                        href=\"#\"\n                        className=\"text-muted-foreground hover:text-foreground transition-colors\"\n                      >\n                        About\n                      </a>\n                      <a\n                        href=\"#\"\n                        className=\"text-muted-foreground hover:text-foreground transition-colors\"\n                      >\n                        Contact\n                      </a>\n                    </nav>\n                  </div>\n\n                  <div className=\"space-y-3\">\n                    <p className=\"text-sm font-medium\">Resources</p>\n                    <nav className=\"flex flex-col space-y-2 text-sm\">\n                      <a\n                        href=\"#\"\n                        className=\"text-muted-foreground hover:text-foreground transition-colors\"\n                      >\n                        Case Studies\n                      </a>\n                      <a\n                        href=\"#\"\n                        className=\"text-muted-foreground hover:text-foreground transition-colors\"\n                      >\n                        Blog\n                      </a>\n                      <a\n                        href=\"#\"\n                        className=\"text-muted-foreground hover:text-foreground transition-colors\"\n                      >\n                        Free Resources\n                      </a>\n                    </nav>\n                  </div>\n\n                  <div className=\"space-y-3\">\n                    <p className=\"text-sm font-medium\">Connect</p>\n                    <nav className=\"flex flex-col space-y-2 text-sm\">\n                      <a\n                        href=\"#\"\n                        className=\"text-muted-foreground hover:text-foreground transition-colors\"\n                      >\n                        Twitter\n                      </a>\n                      <a\n                        href=\"#\"\n                        className=\"text-muted-foreground hover:text-foreground transition-colors\"\n                      >\n                        Instagram\n                      </a>\n                      <a\n                        href=\"#\"\n                        className=\"text-muted-foreground hover:text-foreground transition-colors\"\n                      >\n                        LinkedIn\n                      </a>\n                      <a\n                        href=\"#\"\n                        className=\"text-muted-foreground hover:text-foreground transition-colors\"\n                      >\n                        Dribbble\n                      </a>\n                    </nav>\n                  </div>\n                </div>\n              </div>\n\n              <div className=\"text-muted-foreground mt-8 text-sm\">\n                &copy; {new Date().getFullYear()} Sarah Johnson. All rights\n                reserved.\n              </div>\n            </div>\n          </div>\n\n          {/* Newsletter column */}\n          <div className=\"md:col-span-5 lg:col-span-4\">\n            <div className=\"border-border bg-background/50 rounded-lg border p-5 backdrop-blur-sm\">\n              <h3 className=\"text-base font-medium\">Stay in the loop</h3>\n              <p className=\"text-muted-foreground mt-1 text-sm\">\n                Subscribe to receive design insights and resources straight to\n                your inbox.\n              </p>\n\n              <form className=\"mt-4\">\n                <div className=\"flex space-x-2\">\n                  <div className=\"flex-1\">\n                    <Input\n                      type=\"email\"\n                      placeholder=\"Your email\"\n                      aria-label=\"Your email\"\n                      className=\"w-full\"\n                    />\n                  </div>\n                  <Button type=\"submit\" size=\"icon\">\n                    <ArrowRight className=\"h-4 w-4\" />\n                  </Button>\n                </div>\n\n                <p className=\"text-muted-foreground mt-2 text-xs\">\n                  I send one newsletter per week. No spam, just valuable\n                  content.\n                </p>\n              </form>\n\n              <div className=\"mt-5 flex flex-col space-y-2\">\n                <div className=\"text-sm font-medium\">Contact</div>\n                <p className=\"text-muted-foreground text-sm\">\n                  hello@sarahjohnson.com\n                </p>\n                <p className=\"text-muted-foreground text-sm\">\n                  San Francisco, CA\n                </p>\n              </div>\n            </div>\n          </div>\n        </div>\n      </div>\n    </div>\n  );\n}\n","type":"registry:component","target":"components/blocks/portfolio/portfolio-email-signup-and-newsletter/footer-integrated-signup.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"}],"description":"An email field built into the site footer beside links and details. Captures subscribers at the bottom of every page without a dedicated section.","dependencies":["class-variance-authority","lucide-react","radix-ui"]}