Components
Live previews of every component in the design system. Click "Copy HTML" to grab the snippet.
Cover Page
layoutFull-page branded cover with gradient background, logo, title, and metadata
Title Accent
Subtitle text
<div class="page cover">
<div class="cover-header">
<img class="cover-logo" src="logo-white.svg" alt="VisionVolve">
</div>
<div class="cover-main">
<h1 class="cover-title">Title <span>Accent</span></h1>
<p class="cover-subtitle">Subtitle text</p>
</div>
<div class="cover-footer">
<span class="cover-tagline">Tagline</span>
<span class="cover-date">Date</span>
</div>
</div>
Usage: First page of PDF documents — sets the visual tone
Page Header
layoutFull-width gradient header bar with uppercase page title
Section Title
<div class="page-header">
<h1>Section Title</h1>
</div>
Usage: Top of every content page — provides section context
Info Card
cardCard container with title and profile rows — used for data display
<div class="info-card">
<div class="card-title">Card Title</div>
<div class="profile-row">
<span class="label">Label</span>
<span class="value">Value</span>
</div>
</div>
Usage: Company profiles, metric summaries, key information display
Value Box
cardProminent value display with primary (gradient) and secondary (light) variants
<div class="value-box primary">
<div class="label">Total Value</div>
<div class="amount">$1.2M</div>
<div class="per-year">per year</div>
</div>
Usage: Hero metrics, total values, key financial figures
Data Table
dataStyled table with dark header, alternating rows, highlighted rows, and category dots
| Name | Value |
|---|---|
| Row 1 | Value |
| Row 2 | Value |
<table class="nice-table">
<thead>
<tr><th>Name</th><th>Value</th></tr>
</thead>
<tbody>
<tr><td>Row 1</td><td>Value</td></tr>
<tr class="highlighted"><td>Row 2</td><td>Value</td></tr>
</tbody>
</table>
Usage: Use case tables, portfolio views, comparison data
Opportunity Bar
dataHorizontal bar chart with category colors showing opportunity values
<div class="opp-bars">
<div class="opp-item">
<div class="opp-header">
<span class="opp-category">Category</span>
<span class="opp-value ap">$500K</span>
</div>
<div class="opp-bar-track">
<div class="opp-bar-fill ap" style="width: 75%"></div>
</div>
</div>
</div>
Usage: Category breakdowns, opportunity sizing
Waterfall Chart
dataCSS-only waterfall visualization with category-colored bars
<div class="waterfall-container">
<div class="waterfall">
<div class="waterfall-bar">
<div class="waterfall-fill ap" style="height: 60%"></div>
<div class="waterfall-meta">
<div class="waterfall-label">Label</div>
<div class="waterfall-value">$100K</div>
</div>
</div>
</div>
</div>
Usage: Portfolio waterfall views, value breakdowns
Personal Note
cardPurple gradient callout for personalized messaging with cyan highlights
Note text with highlighted emphasis.
<div class="personal-note">
<p>Note text with <span class="highlight">highlighted</span> emphasis.</p>
</div>
Usage: Personalized introductions, tailored messages
Confidence Indicator
indicatorColor-coded text for high/medium/low confidence levels
<span class="conf-high">High</span>
<span class="conf-med">Medium</span>
<span class="conf-low">Low</span>
Usage: Data confidence levels in tables and metrics
Category Badge
indicatorColored pill badge for use case categories
<span class="uc-category-badge ap">Accounts Payable</span>
Usage: Category labels on use case pages
AITransformers Components
Live previews of every AITransformers component. Click "Copy HTML" to grab the snippet.
Hero Section
layoutFull-width hero with gradient background, headline, subtitle, and CTA buttons
Headline Text
Subtitle description text
<section class="hero">
<div class="hero-content">
<h1 class="hero-title"><span class="gradient-text">Headline Text</span></h1>
<p>Subtitle description text</p>
<div>
<button class="btn-primary">Primary CTA</button>
<button class="btn-secondary">Secondary CTA</button>
</div>
</div>
</section>
Usage: Landing page hero — sets visual tone with dark gradient and cyan accents
Navigation Bar
layoutSticky top navigation with logo, links, and search
<nav class="nav">
<div class="nav-inner">
<a class="nav-brand">
<img src="logo.svg" alt="AITransformers">
<span>AI<span style="color:#00BDD6">Transformers</span></span>
</a>
<div class="nav-links">
<a class="nav-link active">Home</a>
<a class="nav-link">Use Cases</a>
</div>
</div>
</nav>
Usage: Top of every page — brand navigation with dark surface
Use Case Card
cardCard for displaying a GenAI use case with title, description, priority badge, and category
Use Case Name
Low PriorityDescription of the GenAI use case and its business impact.
<div class="card">
<div class="card-header">
<h3 class="card-title">Use Case Name</h3>
<span class="badge badge-low">Low Priority</span>
</div>
<p>Description of the GenAI use case and its business impact.</p>
<div class="card-footer">
<span class="badge-proven">Proven</span>
</div>
</div>
Usage: Use case catalog listings, search results
Stats Card
cardMetric display card with large number, label, and optional trend indicator
<div class="stats-card">
<div class="stat-value">142</div>
<div class="stat-label">Use Cases</div>
<div class="stat-trend positive">+12%</div>
</div>
Usage: Dashboard metrics, catalog statistics
Search & Filters
layoutSearch input with filter pills for categories and priority levels
<div class="toolbar">
<input class="search-input" placeholder="Search use cases...">
<div class="filter-pills">
<button class="pill active">All</button>
<button class="pill">Proven</button>
<button class="pill">Emerging</button>
</div>
</div>
Usage: Top of catalog pages for filtering content
Priority Badge
indicatorColor-coded badge for use case priority levels
<span class="badge badge-low">Low</span>
<span class="badge badge-medium">Medium</span>
<span class="badge badge-high">High</span>
Usage: Priority indicators on use case cards and tables
Detail Section
layoutContent section with heading, description, and optional sidebar
Section Title
Detailed description of this section.
<section class="section">
<h2 class="section-heading">Section Title</h2>
<p class="section-subheading">Detailed description of this section.</p>
<div class="section-content">
Content goes here
</div>
</section>
Usage: Use case detail pages, category overviews
Data Table
dataStyled table with dark header, hover rows, and status indicators
| Use Case | Priority | Status |
|---|---|---|
| Invoice Processing | High | Proven |
| Report Generation | Medium | Emerging |
<table class="data-table">
<thead>
<tr><th>Use Case</th><th>Priority</th><th>Status</th></tr>
</thead>
<tbody>
<tr><td>Invoice Processing</td><td><span class="badge badge-high">High</span></td><td>Proven</td></tr>
<tr><td>Report Generation</td><td><span class="badge badge-medium">Medium</span></td><td>Emerging</td></tr>
</tbody>
</table>
Usage: Use case comparison tables, catalog views
Impact Chart
dataHorizontal bar chart showing business impact by category
<div class="impact-chart">
<div class="impact-row">
<span class="impact-label">Cost Savings</span>
<div class="impact-bar-track">
<div class="impact-bar" style="width: 85%"></div>
</div>
<span class="impact-value">85%</span>
</div>
</div>
Usage: Business impact visualization, ROI summaries
CTA Banner
cardCall-to-action banner with gradient border and primary button
<div class="cta-banner">
<h3>Ready to transform your business?</h3>
<p>Explore our catalog of proven GenAI use cases.</p>
<button class="btn-primary">Get Started</button>
</div>
Usage: Section footers, promotional blocks
Category Pill
indicatorRounded pill for categorizing use cases by domain or maturity
<span class="category-pill pill-proven">Proven</span>
<span class="category-pill pill-emerging">Emerging</span>
<span class="category-pill pill-industry">Industry</span>
Usage: Category labels on use case cards and filters