Eidetic

Visual Feature Cards

Marketing
Cards

Extended illustrated feature cards with rich visuals and contextual mini-UIs. Each illustration tells the story of the feature with layered depth.

Preview

Feature cards with custom illustrations

app.tsx
01constapp=()
02return<Button
03variant="primary"
04/>
05
TypeScript

Developer Experience

Beautifully crafted APIs with TypeScript-first design and intuitive patterns.

React
TypeScript
Tailwind

Enterprise Security

Multi-layer protection with encryption at rest, SSO, and SOC2 compliance.

SOC2
SSO
Encrypted

132+ Components

Production-ready primitives built for AI governance and accessibility.

WCAG 2.2
Dark mode
CVA

Infrastructure & Scale

Cards for technical services and platform features

Unified API Layer

Connect services through a single gateway with built-in monitoring and rate limiting.

REST
GraphQL
gRPC
$48.2k+12%
Revenue
Users
Growth
↗ 24.5%

Real-time Analytics

Monitor key metrics with beautiful charts and live-updating dashboards.

Metrics
Insights
Live
99.9% uptime

Cloud Infrastructure

Globally distributed deployment with automatic failover and 99.9% uptime SLA.

Multi-region
CDN
SLA

Props

ExtendedFeatureCard component API reference

PropTypeDefaultDescription
illustration*ReactNodeCustom illustration component
title*stringCard title
description*stringCard description text
tagsstring[][]Array of tag labels

Usage

Import and implementation examples

import { ExtendedFeatureCard } from '@/components/feature-cards'
import { CodeEditorIllustration } from '@/components/illustrations'
// Basic usage
<ExtendedFeatureCard
illustration={<CodeEditorIllustration />}
title="Developer Experience"
description="Beautifully crafted APIs with TypeScript-first design."
tags={['React', 'TypeScript']}
/>
// Create custom illustrations with depth
function CustomIllustration() {
return (
<div className="relative w-full h-48 flex items-center justify-center overflow-hidden">
<div className="absolute inset-0 bg-gradient-to-br from-indigo-50 via-white to-teal-50/60" />
{/* Your layered visual elements */}
</div>
)
}

Features

Built-in functionality

  • 6 illustration patterns: Code editor, security shield, UI preview, network graph, analytics, cloud infrastructure
  • Layered depth: Gradients, shadows, and overlapping elements give each card dimensionality
  • Grid backgrounds: Subtle masked grid adds technical polish without distraction
  • Semantic color tokens: Uses primary/secondary/success semantic tokens, not raw palette
  • Mini-UI previews: Illustrations include realistic UI fragments: code, charts, cards
  • Hover lift: Subtle -translate-y on hover gives tactile response
  • Dark mode: Full dark mode support with adjusted gradients and opacities

Accessibility

Accessibility considerations

ARIA Attributes

Illustrations marked aria-hidden="true" (purely decorative)SVG elements marked aria-hiddenTags use proper Badge semanticsFocus ring visible on interactive cards

Keyboard Navigation

KeyAction
TabNavigate between cards when links/buttons present

Notes

  • Illustrations are decorative; all meaning conveyed via title/description
  • Text maintains WCAG 2.2 AA contrast in both light and dark mode
  • Hover states have focus-visible equivalents
  • Animated elements respect prefers-reduced-motion (consider adding)