Card Layouts
Use Case: Showcase of card components and column layouts for content organization.
Key Features: Basic cards, feature cards, pricing cards, profile cards, product cards, card columns
Card Component Showcase
Comprehensive examples of card layouts and patterns.
1. Basic Card
Simple Card
markdown
::: card
### Card Title
This is a basic card with title and content.
[Learn More]
:::Rendered:
Card with Image
markdown
::: card

### Image Card
Cards can include images, text, and buttons for rich content presentation.
[View Details →]
:::Rendered:
2. Feature Cards
Three Column Feature Layout
markdown
::: columns-3 card
::: column :rocket: Fast Performance
Lightning-quick loading times and optimized rendering for the best user experience.
[Learn More →]
:::
::: column :shield: Secure by Default
Enterprise-grade security with encryption, backups, and compliance certifications.
[Learn More →]
:::
::: column :settings: Highly Customizable
Flexible configuration options and extensive API for complete control.
[Learn More →]
:::
:::Rendered:
3. Pricing Cards
Pricing Tiers
markdown
::: columns-3 card
::: column Starter
**$9** /month
Perfect for individuals
- 5 Projects
- 10 GB Storage
- Basic Support
- Email Reports
[Start Free Trial]*
:::
::: column Professional
**$29** /month
*Most Popular*
For growing teams
- Unlimited Projects
- 100 GB Storage
- Priority Support
- Advanced Analytics
- API Access
[Start Free Trial]*
:::
::: column Enterprise
**Custom**
For large organizations
- Everything in Pro
- Unlimited Storage
- Dedicated Support
- Custom Integration
- SLA Guarantee
[Contact Sales]*
:::
:::Rendered:
4. Product Cards
Product Columns
markdown
::: columns-4 card
::: column Wireless Headphones

~~$129.99~~ **$89.99**
:star::star::star::star::star: (127 reviews)
[Add to Cart]*
:::
::: column Smart Watch

**$299.99**
:star::star::star::star: (89 reviews)
[Add to Cart]*
:::
::: column Bluetooth Speaker

~~$79.99~~ **$49.99**
:star::star::star::star::star: (203 reviews)
[Add to Cart]*
:::
::: column Fitness Tracker

**$149.99**
:star::star::star::star: (156 reviews)
[Add to Cart]*
:::
:::Rendered:
5. Profile/Team Cards
Team Member Columns
markdown
::: columns-4 card
::: column Sarah Johnson

**CEO & Founder**
"Passionate about building great products"
[LinkedIn] [Twitter] [[email protected]]
:::
::: column Michael Chen

**CTO**
"Technology enthusiast and problem solver"
[LinkedIn] [GitHub] [[email protected]]
:::
::: column Emma Rodriguez

**Head of Design**
"Creating beautiful user experiences"
[LinkedIn] [Dribbble] [[email protected]]
:::
::: column David Kim

**Lead Developer**
"Building scalable solutions"
[LinkedIn] [GitHub] [[email protected]]
:::
:::Rendered:
6. Blog/Article Cards
Blog Post Columns
markdown
::: columns-3 card
::: column Getting Started with Wireframing

Learn the fundamentals of wireframing and how to create effective designs quickly.
**Design** • 5 min read • Mar 15, 2025
[Read More →]
:::
::: column 10 UI Design Principles

Essential principles every designer should know for creating intuitive interfaces.
**UI/UX** • 8 min read • Mar 12, 2025
[Read More →]
:::
::: column Accessibility Best Practices

Make your designs inclusive and accessible to all users with these proven techniques.
**Accessibility** • 6 min read • Mar 10, 2025
[Read More →]
:::
:::Rendered:
7. Testimonial Cards
Customer Testimonials
markdown
::: columns-3 card
::: column :star::star::star::star::star:
*"This product completely transformed how we work. Best decision we made this year!"*
**Sarah Johnson**
CEO, TechStart Inc.
:::
::: column :star::star::star::star::star:
*"Outstanding support and incredible features. Highly recommended for any team."*
**Michael Chen**
CTO, DataCorp
:::
::: column :star::star::star::star::star:
*"Easy to use, powerful features, and great value. We couldn't be happier."*
**Emily Rodriguez**
Operations Director
:::
:::Rendered:
8. Stats/Metrics Cards
Key Metrics Dashboard
markdown
::: columns-4 card
::: column Total Users
**124,567**
:chart: +12.5% this month
:::
::: column Revenue
**$458,234**
:chart: +18.3% this month
:::
::: column Conversion Rate
**3.2%**
:chart: +0.8% this month
:::
::: column Customer Satisfaction
**4.8** / 5.0
:star::star::star::star::star:
:::
:::Rendered:
9. Interactive Cards with States
Card States
markdown
::: columns-2 card
::: column Normal Card
::: card
Regular card in default state
[Action Button]
:::
:::
::: column Highlighted Card
::: card
**Featured!**
This card has special emphasis
[Primary Action]*
:::
:::
:::Rendered:
10. Complex Content Cards
Rich Content Cards
markdown
::: card
### Project Dashboard Card
**Project:** Mobile App Redesign
**Status:** In Progress
**Due Date:** Mar 25, 2025
---
#### Team Members
- :user: Sarah (Lead Designer)
- :user: Mike (Developer)
- :user: Emma (QA)
#### Progress
[###############___] 75% Complete
---
**Recent Activity:**
- Design mockups approved (2h ago)
- API integration started (5h ago)
- Sprint planning completed (1d ago)
---
[View Project →] [Edit] [Share]
:::Rendered:
11. Horizontal Cards
List-Style Cards
markdown
::: card
**Order #12345** | Status: Shipped | Total: $129.99

- Wireless Headphones (Qty: 1)
- USB-C Cable (Qty: 2)
Expected Delivery: Mar 20, 2025
[Track Order →] [View Invoice]
:::Rendered:
12. Columns Layout vs Card Columns
Pure Layout Columns (no card chrome)
Use ::: columns-N without card when items are form fields, text columns, or anything that should not have card borders/backgrounds.
markdown
::: columns-2
::: column Your Details
Name
[_____________________________]{required}
Email
[_____________________________]{type:email required}
:::
::: column Message
Subject
[_____________________________]{required}
[Send Message]*
:::
:::Rendered:
Card Columns (with card chrome)
Add card to apply card borders and backgrounds to each item.
markdown
::: columns-3 card
::: column :rocket: Fast
Renders in milliseconds.
:::
::: column :shield: Secure
Enterprise-grade by default.
:::
::: column :settings: Flexible
Works with any stack.
:::
:::Rendered:
Column Spanning
Add span-N to a ::: column opener to span multiple columns.
markdown
::: columns-3 card
::: column Starter
$9/month — up to 3 projects.
:::
::: column Pro {span-2}
$29/month — unlimited projects, priority support, spans two columns.
:::
:::Rendered:
Best Practices
Style Variations:
sketch- Hand-drawn card wireframesclean- Modern minimal cardswireframe- Structure-focused cardstailwind- Contemporary card designmaterial- Elevated Google-style cardsbrutal- Bold card layoutsnone- Semantic HTML for custom styling
Generate this example:
bash
wiremd card-layouts.md --style sketch
wiremd card-layouts.md --style clean -o cards-clean.html
wiremd card-layouts.md --style material -o cards-material.html