UIPackage
Menu

Framework

Change language

Boilerplate repo

Feature Interactive Tabs

blockmarketing

Master-detail architectural feature workbench with interactive source snippets, copy action, telemetry stats, and verified technical checks.

Also available for Vue ->

Installation

$npx shadcn@latest add https://uipkge.dev/r/react/feature-interactive-tabs.json
Named registry:npx shadcn@latest add @uipkge-react/feature-interactive-tabsInstalls to:components/blocks/

Variants

Loading interactive previews…

Props

NameType / ValuesDefaultRequired
classNamestringoptional

Schema

Type aliases exported from this item's source. Use these to shape the data you pass in.

FeatureTab
interface FeatureTab {
  id: string
  title: string
  subtitle: string
  icon: any
  tag: string
  headline: string
  description: string
  codeSnippet: string
  stats: { label: string; value: string }[]
  checks: string[]
}

npm dependencies

Includes

Files installed (1)

  • components/blocks/FeatureInteractiveTabs.tsx11.9 kB
    'use client'
    
    import * as React from 'react'
    import { Activity, Check, CheckCircle2, Code2, Copy, LayoutGrid, Terminal, Zap } from 'lucide-react'
    import { Badge } from '@/components/ui/badge'
    import { Card } from '@/components/ui/card'
    import { cn } from '@/lib/utils'
    
    interface FeatureTab {
      id: string
      title: string
      subtitle: string
      icon: any
      tag: string
      headline: string
      description: string
      codeSnippet: string
      stats: { label: string; value: string }[]
      checks: string[]
    }
    
    const tabs: FeatureTab[] = [
      {
        id: 'unbundled',
        title: 'Zero-Package Registry',
        subtitle: 'Direct AST source ownership',
        icon: Code2,
        tag: 'No Node Modules Bloat',
        headline: 'You own 100% of the source code. No semver breaking changes.',
        description:
          'Unlike monolithic component packages that lock you into inflexible dependency trees, UIPKGE copies pristine, tree-shakeable source files directly into your project repository.',
        codeSnippet: `// Terminal command:\nnpx shadcn@latest add https://uipkge.dev/r/react/hero-developer-terminal.json\n\n// Output in your repo:\n// \u2714 Placed components/blocks/HeroDeveloperTerminal.tsx\n// \u2714 Installed zero runtime wrapper overhead`,
        stats: [
          { label: 'Bundle Size Overhead', value: '0.0 kB' },
          { label: 'Semver Breakage Risk', value: '0%' },
          { label: 'Customization Freedom', value: '100%' },
        ],
        checks: [
          'Raw SFC/TSX files living right in your /components directory',
          'Edit Tailwind tokens, props, or behavior anytime without forking',
          'Never wait on upstream maintainers for critical hotfixes or styling tweaks',
        ],
      },
      {
        id: 'parity',
        title: 'Dual-Framework Parity',
        subtitle: 'Synchronized Vue 3.5 & React 19',
        icon: LayoutGrid,
        tag: '1:1 AST Parity',
        headline: 'One design system, identical aesthetics across Vue and React.',
        description:
          'Whether your engineering organization uses Nuxt 3, Vite, Next.js, or Astro, every primitive and block shares identical OKLCH color spaces, CVA variant tokens, and spring transition curves.',
        codeSnippet: `// Vue 3.5 SFC:\n<Button variant="default" size="sm">Deploy</Button>\n\n// React 19 JSX:\n<Button variant="default" size="sm">Deploy</Button>\n\n// Both generate identical DOM attributes & micro-interactions`,
        stats: [
          { label: 'Token Parity', value: '100.0%' },
          { label: 'Supported Frameworks', value: 'Vue 3.5 + React 19' },
          { label: 'Shared CVA Tokens', value: '31 Primitives' },
        ],
        checks: [
          'Reka UI (Vue) and Radix UI (React) accessible headless engines',
          'Automated CI check verifying cross-framework class string equality',
          'Identical behavior in Vue and React microfrontends',
        ],
      },
      {
        id: 'telemetry',
        title: 'Interactive Workbenches',
        subtitle: 'Beyond static cards & fluff',
        icon: Activity,
        tag: 'Dense & Functional',
        headline: 'Real-time controls, telemetry, and live interactive state.',
        description:
          'Every UIPKGE marketing block functions as a live interactive workbench with stateful sliders, timeframe toggles, and reactive calculation engines.',
        codeSnippet: `// Composing live reactive telemetry in your blocks:\nconst [activeCohort, setActiveCohort] = React.useState<'enterprise' | 'growth'>('enterprise')\nconst liveThroughput = activeCohort === 'enterprise' ? '1.2M QPS' : '45k QPS'`,
        stats: [
          { label: 'Interactive Demos', value: '450+ Blocks' },
          { label: 'Keyboard Ergonomics', value: 'WCAG AA' },
          { label: 'Telemetry Visualizers', value: 'Real SVG Sparklines' },
        ],
        checks: [
          'Functional master-detail views and comparative toggles',
          'Integrated mock API testers, terminal sandboxes, and pricing calculators',
          'Zero placeholder text or dummy lorum ipsum shapes',
        ],
      },
      {
        id: 'performance',
        title: 'Sub-Millisecond Speed',
        subtitle: 'OKLCH Tailwind v4 Engine',
        icon: Zap,
        tag: 'Lighthouse 100',
        headline: 'Engineered for zero-latency interactions and pristine Lighthouse scores.',
        description:
          'Built on modern CSS custom properties and lightweight headless primitives, our blocks avoid hefty client-side runtime libraries, keeping your First Contentful Paint blazing fast.',
        codeSnippet: `@theme inline {\n  --color-primary: oklch(0.205 0 0);\n  --color-primary-foreground: oklch(0.985 0 0);\n  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);\n}`,
        stats: [
          { label: 'Interaction to Next Paint (INP)', value: '< 16ms' },
          { label: 'Lighthouse Score', value: '100 / 100' },
          { label: 'CSS Engine', value: 'Tailwind CSS v4' },
        ],
        checks: [
          'OKLCH native color spaces with automatic light/dark mode adaptation',
          'Hardware-accelerated transforms and calibrated spring physics',
          'Zero runtime JavaScript CSS parsing or CSS-in-JS style injection',
        ],
      },
    ]
    
    export interface FeatureInteractiveTabsProps {
      className?: string
    }
    
    export function FeatureInteractiveTabs({ className }: FeatureInteractiveTabsProps) {
      const [activeTabId, setActiveTabId] = React.useState<string>('unbundled')
      const [copiedCode, setCopiedCode] = React.useState(false)
    
      const currentTab = tabs.find((t) => t.id === activeTabId)!
    
      const copySnippet = () => {
        navigator.clipboard.writeText(currentTab.codeSnippet)
        setCopiedCode(true)
        setTimeout(() => setCopiedCode(false), 2000)
      }
    
      return (
        <section
          data-slot="feature-interactive-tabs"
          className={cn('bg-background relative overflow-hidden px-4 py-16 sm:px-6 sm:py-24 lg:px-8', className)}
        >
          {/* Subtle Radial Glow */}
          <div className="bg-primary/5 pointer-events-none absolute top-1/2 left-1/2 -z-10 h-80 w-full max-w-5xl -translate-x-1/2 -translate-y-1/2 rounded-full blur-xl" />
    
          <div className="mx-auto max-w-7xl space-y-12">
            {/* Section Header */}
            <div className="mx-auto max-w-3xl space-y-4 text-center">
              <Badge variant="secondary" className="gap-1.5 px-3 py-1 font-mono text-xs shadow-xs">
                <LayoutGrid className="text-primary size-3.5" />
                Architecture Differentiation
              </Badge>
              <h2 className="text-foreground text-3xl font-bold tracking-tight sm:text-4xl">
                Why engineering teams choose UIPKGE.
              </h2>
              <p className="text-muted-foreground text-base">
                Explore the architectural pillars behind our unbundled component registry.
              </p>
            </div>
    
            {/* Feature Interactive Tabs Workbench */}
            <div className="grid grid-cols-1 items-start gap-6 lg:grid-cols-12">
              {/* Left Column: Master Feature Navigation Rail (4 Cols) */}
              <div className="flex flex-col gap-2.5 lg:col-span-4">
                {tabs.map((tab) => {
                  const Icon = tab.icon
                  const isActive = activeTabId === tab.id
                  return (
                    <button
                      key={tab.id}
                      type="button"
                      className={cn(
                        'group relative overflow-hidden rounded-2xl border p-4 text-left transition-[colors,box-shadow,transform] duration-150 active:scale-[0.98]',
                        isActive
                          ? 'border-primary/80 bg-card ring-primary/20 shadow-sm ring-1'
                          : 'border-border bg-card/60 hover:border-border hover:bg-card',
                      )}
                      onClick={() => setActiveTabId(tab.id)}
                    >
                      <div className="flex items-start gap-3.5">
                        <div
                          className={cn(
                            'flex size-9 shrink-0 items-center justify-center rounded-lg font-mono transition-colors',
                            isActive
                              ? 'bg-primary text-primary-foreground font-bold shadow-xs'
                              : 'bg-muted text-muted-foreground group-hover:text-foreground',
                          )}
                        >
                          <Icon className="size-4" />
                        </div>
    
                        <div className="min-w-0 space-y-0.5">
                          <div className="flex items-center justify-between gap-2">
                            <h3 className="text-foreground truncate font-mono text-xs font-bold">{tab.title}</h3>
                            <span
                              className={cn(
                                'size-1.5 shrink-0 rounded-full',
                                isActive ? 'bg-primary animate-pulse' : 'bg-transparent',
                              )}
                            />
                          </div>
                          <p className="text-muted-foreground truncate text-xs">{tab.subtitle}</p>
                        </div>
                      </div>
                    </button>
                  )
                })}
              </div>
    
              {/* Right Column: Interactive Detail Sandbox Panel (8 Cols) */}
              <Card className="border-border bg-card/95 space-y-6 rounded-2xl p-6 text-left shadow-sm sm:p-8 lg:col-span-8">
                {/* Detail Header */}
                <div className="border-border/80 space-y-3 border-b pb-6">
                  <div className="flex flex-wrap items-center justify-between gap-2">
                    <Badge variant="outline" className="text-primary bg-primary/5 border-primary/20 font-mono text-xs">
                      {currentTab.tag}
                    </Badge>
                    <span className="text-muted-foreground font-mono text-xs">Architectural Specification</span>
                  </div>
                  <h3 className="text-foreground text-xl font-bold tracking-tight sm:text-2xl">{currentTab.headline}</h3>
                  <p className="text-muted-foreground text-xs leading-relaxed sm:text-sm">{currentTab.description}</p>
                </div>
    
                {/* Code Snippet Sandbox Preview */}
                <div className="space-y-2">
                  <div className="text-muted-foreground flex items-center justify-between font-mono text-xs">
                    <span className="flex items-center gap-1.5">
                      <Terminal className="text-primary size-3.5" /> Source Implementation
                    </span>
                    <button
                      type="button"
                      className="text-primary flex items-center gap-1 hover:underline"
                      onClick={copySnippet}
                    >
                      {copiedCode ? <Check className="text-success size-3" /> : <Copy className="size-3" />}
                      <span>{copiedCode ? 'Copied' : 'Copy Snippet'}</span>
                    </button>
                  </div>
                  <pre className="border-border bg-muted/40 text-foreground overflow-x-auto rounded-xl border p-4 font-mono text-xs leading-relaxed">
                    <code>{currentTab.codeSnippet}</code>
                  </pre>
                </div>
    
                {/* 3-Pillar Telemetry Metrics Bar */}
                <div className="grid grid-cols-1 gap-3 pt-2 sm:grid-cols-3">
                  {currentTab.stats.map((st, idx) => (
                    <div key={idx} className="border-border bg-background/50 space-y-0.5 rounded-xl border p-3.5">
                      <p className="text-muted-foreground font-mono text-xs tracking-wider uppercase">{st.label}</p>
                      <p className="text-foreground font-mono text-base font-bold">{st.value}</p>
                    </div>
                  ))}
                </div>
    
                {/* Technical Checkmarks List */}
                <div className="border-border/60 space-y-2 border-t pt-2">
                  <p className="text-muted-foreground font-mono text-xs tracking-wider uppercase">Verified Enforcements</p>
                  <ul className="space-y-2">
                    {currentTab.checks.map((chk, idx) => (
                      <li key={idx} className="text-foreground/90 flex items-start gap-2 text-xs">
                        <CheckCircle2 className="text-success mt-0.5 size-4 shrink-0" />
                        <span>{chk}</span>
                      </li>
                    ))}
                  </ul>
                </div>
              </Card>
            </div>
          </div>
        </section>
      )
    }
    export default FeatureInteractiveTabs
    

Raw manifest:https://uipkge.dev/r/react/feature-interactive-tabs.json