"use client" import { BarChart3, Zap, Users, ArrowRight, Database, Package, Crown, Layout, Palette } from 'lucide-react' import { Button } from '@/components/ui/button' import { Badge } from '@/components/ui/badge' import { Image3D } from '@/components/image-3d' const mainFeatures = [ { icon: Package, title: 'Curated Component Library', description: 'Hand-picked blocks and templates for quality and reliability.' }, { icon: Crown, title: 'Free & Premium Options', description: 'Start free, upgrade to premium collections when you need more.' }, { icon: Layout, title: 'Ready-to-Use Templates', description: 'Copy-paste components that just work out of the box.' }, { icon: Zap, title: 'Regular Updates', description: 'New blocks and templates added weekly to keep you current.' } ] const secondaryFeatures = [ { icon: BarChart3, title: 'Multiple Frameworks', description: 'React, Next.js, and Vite compatibility for flexible development.' }, { icon: Palette, title: 'Modern Tech Stack', description: 'Built with shadcn/ui, Tailwind CSS, and TypeScript.' }, { icon: Users, title: 'Responsive Design', description: 'Mobile-first components for all screen sizes and devices.' }, { icon: Database, title: 'Developer-Friendly', description: 'Clean code, well-documented, easy integration and customization.' } ] export function FeaturesSection() { return (
{/* Section Header */}
Marketplace Features

Everything you need to build amazing web applications

Our marketplace provides curated blocks, templates, landing pages, and admin dashboards to help you build professional applications faster than ever.

{/* First Feature Section */}
{/* Left Image */} {/* Right Content */}

Components that accelerate development

Our curated marketplace offers premium blocks and templates designed to save time and ensure consistency across your admin projects.

    {mainFeatures.map((feature, index) => (
  • {feature.title}

    {feature.description}

  • ))}
{/* Second Feature Section - Flipped Layout */}
{/* Left Content */}

Built for modern development workflows

Every component follows best practices with TypeScript, responsive design, and clean code architecture that integrates seamlessly into your projects.

    {secondaryFeatures.map((feature, index) => (
  • {feature.title}

    {feature.description}

  • ))}
{/* Right Image */}
) }