{"$schema":"https://ui.shadcn.com/schema/registry-item.json","name":"portfolio-portfolio-work-experience-cards-logo-first-card-layout","type":"registry:block","title":"Logo First Card Layout","files":[{"path":"components/blocks/portfolio/portfolio-work-experience-cards/logo-first-card-layout.tsx","content":"import { Badge } from '@/components/ui/badge';\n\nexport default function LogoFirstCardLayout() {\n  const workExperiences = [\n    {\n      company: 'Designcraft Studios',\n      logo: 'https://images.unsplash.com/photo-1563694983011-6f4d90358083?q=80&w=1287&auto=format&fit=crop&ixlib=rb-4.0.3',\n      role: 'Senior UX Designer',\n      duration: '2021 - Present',\n      description:\n        'Lead the design of digital products for enterprise clients, mentoring junior designers and implementing design systems.',\n      skills: ['UI/UX Design', 'User Research', 'Design Systems'],\n      link: '#',\n    },\n    {\n      company: 'TechInnovate',\n      logo: 'https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?q=80&w=1470&auto=format&fit=crop&ixlib=rb-4.0.3',\n      role: 'Product Designer',\n      duration: '2018 - 2021',\n      description:\n        'Created wireframes, prototypes, and final designs for mobile and web applications focusing on fintech solutions.',\n      skills: ['Wireframing', 'Prototyping', 'Mobile Design'],\n      link: '#',\n    },\n    {\n      company: 'CreativeWorks Agency',\n      logo: 'https://images.unsplash.com/photo-1460925895917-afdab827c52f?q=80&w=1415&auto=format&fit=crop&ixlib=rb-4.0.3',\n      role: 'UI Designer',\n      duration: '2016 - 2018',\n      description:\n        'Designed interfaces for various client websites and applications, collaborating with development teams to ensure quality implementation.',\n      skills: ['Web Design', 'Visual Design', 'Brand Guidelines'],\n      link: '#',\n    },\n    {\n      company: 'Digital Solutions Inc.',\n      logo: 'https://images.unsplash.com/photo-1551836022-d5d88e9218df?q=80&w=1470&auto=format&fit=crop&ixlib=rb-4.0.3',\n      role: 'Junior Designer',\n      duration: '2014 - 2016',\n      description:\n        'Assisted senior designers with research, interface design, and creating visual assets for client projects.',\n      skills: ['Graphic Design', 'Research', 'Collaboration'],\n      link: '#',\n    },\n  ];\n\n  return (\n    <section className=\"py-16 md:py-24\">\n      <div className=\"container mx-auto px-4 md:px-6 2xl:max-w-[1400px]\">\n        <div className=\"mb-12 text-center md:mb-16\">\n          <h2 className=\"mb-4 text-3xl font-bold tracking-tight sm:text-4xl md:text-5xl\">\n            Work Experience\n          </h2>\n          <p className=\"text-muted-foreground mx-auto max-w-3xl text-lg\">\n            A chronological overview of my professional journey, highlighting\n            key roles and responsibilities.\n          </p>\n        </div>\n\n        <div className=\"grid gap-6 sm:grid-cols-2 lg:grid-cols-4\">\n          {workExperiences.map((experience, index) => (\n            <a\n              href={experience.link}\n              key={index}\n              className=\"bg-card group hover:border-primary flex h-full flex-col overflow-hidden rounded-xl border transition-all hover:shadow-md\"\n            >\n              {/* Company Logo */}\n              <div className=\"bg-muted/25 relative h-44 w-full overflow-hidden\">\n                <div className=\"absolute inset-0 flex items-center justify-center p-4\">\n                  <div className=\"bg-background relative h-20 w-20 overflow-hidden rounded-full p-1 shadow-sm\">\n                    <img\n                      src={experience.logo}\n                      alt={experience.company}\n                      className=\"object-cover p-1\"\n                    />\n                  </div>\n                </div>\n              </div>\n\n              {/* Experience Details */}\n              <div className=\"flex flex-1 flex-col p-6\">\n                <h3 className=\"mb-1 text-xl font-bold\">{experience.role}</h3>\n                <p className=\"text-muted-foreground text-sm\">\n                  {experience.company}\n                </p>\n                <p className=\"text-muted-foreground mb-4 text-sm\">\n                  {experience.duration}\n                </p>\n\n                <p className=\"text-muted-foreground mb-4 flex-1 text-sm\">\n                  {experience.description}\n                </p>\n\n                <div className=\"mt-auto flex flex-wrap gap-2\">\n                  {experience.skills.map((skill, skillIndex) => (\n                    <Badge key={skillIndex} variant=\"secondary\">\n                      {skill}\n                    </Badge>\n                  ))}\n                </div>\n              </div>\n            </a>\n          ))}\n        </div>\n      </div>\n    </section>\n  );\n}\n","type":"registry:component","target":"components/blocks/portfolio/portfolio-work-experience-cards/logo-first-card-layout.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"}],"description":"A card that leads with the company logo beside your title and dates. Use it when recognizable employers carry weight and you want brands seen first.","dependencies":["class-variance-authority","radix-ui"]}