const features = [ { id: "speed", title: "Lightning Fast", description: "Optimized for maximum performance", image: "/speed.jpg", icon: "⚡", }, { id: "reliable", title: "99.9% Uptime", description: "Always available when you need it", image: "/reliable.jpg", icon: "✓", },];
Without Icons
const features = [ { id: "feature1", title: "Feature Name", description: "Feature description", image: "/feature.jpg", // No icon },];
Long Descriptions
description: "Comprehensive analytics dashboard with real-time data visualization, custom reports, and advanced filtering options. Track key metrics, monitor performance, and make data-driven decisions with confidence.";
Styling
Container
Max Width: 1200px
Padding: Responsive padding
Margin: Centered with auto margins
Background: Theme background
Tab List
Layout: Horizontal flex
Spacing: Gap between tabs
Overflow: Scroll on mobile
Border: Bottom border
Content Area
Layout: Grid or flex
Image: Left or top (responsive)
Text: Right or bottom
Padding: Generous spacing
Use Cases
Product Features: Showcase product capabilities
Service Offerings: Display service details
Platform Benefits: Highlight platform advantages
Tool Comparisons: Compare different tools
Process Steps: Show workflow stages
Integration Showcase: Display integrations
Examples
SaaS Product Features
const saasFeatures = [ { id: "dashboard", title: "Intuitive Dashboard", description: "Beautiful, easy-to-use dashboard with customizable widgets and real-time updates.", image: "/dashboard.jpg", icon: "📈", }, { id: "api", title: "Powerful API", description: "RESTful API with comprehensive documentation and SDKs for popular languages.", image: "/api.jpg", icon: "🔌", }, { id: "integrations", title: "Seamless Integrations", description: "Connect with your favorite tools and services with one-click integrations.", image: "/integrations.jpg", icon: "🔗", },];
Platform Benefits
const benefits = [ { id: "scalable", title: "Infinitely Scalable", description: "Grow from startup to enterprise without changing platforms.", image: "/scalable.jpg", icon: "📊", }, { id: "secure", title: "Bank-Level Security", description: "SOC 2 Type II certified with end-to-end encryption.", image: "/secure.jpg", icon: "🔐", },];
Process Steps
const steps = [ { id: "step1", title: "Connect Your Data", description: "Import data from any source with our flexible connectors.", image: "/connect.jpg", icon: "1️⃣", }, { id: "step2", title: "Transform & Analyze", description: "Use powerful tools to clean, transform, and analyze your data.", image: "/transform.jpg", icon: "2️⃣", }, { id: "step3", title: "Share Insights", description: "Create beautiful reports and dashboards to share with your team.", image: "/share.jpg", icon: "3️⃣", },];