import { Button } from "@/components/ui/button" import { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle } from "@/components/ui/card" import { Badge } from "@/components/ui/badge" import { Avatar, AvatarFallback, AvatarImage } from "@/components/ui/avatar" export function MarketingUI() { return (

Marketing Components

Showcase your product with these customized marketing components

{/* Hero Section */}
Hero background

Build beautiful interfaces

Our design system helps you create consistent, beautiful user experiences across all your products.

{/* Feature Cards */}
{[ { title: "Customizable", description: "Tailor the components to match your brand identity with ease.", icon: "✨", }, { title: "Responsive", description: "All components are fully responsive and work on any device.", icon: "📱", }, { title: "Accessible", description: "Built with accessibility in mind to ensure everyone can use your product.", icon: "♿", }, ].map((feature, index) => (
{feature.icon}
{feature.title}

{feature.description}

))}
{/* Testimonials */}

What Our Customers Say

{[ { quote: "This design system has transformed how we build our products. The consistency and quality are outstanding.", author: "Sarah Johnson", role: "Product Manager", avatar: "/woman-portrait.png", }, { quote: "The components are not only beautiful but also incredibly easy to customize. It's saved us countless hours of development time.", author: "Michael Chen", role: "Lead Developer", avatar: "/thoughtful-man-portrait.png", }, ].map((testimonial, index) => (

"{testimonial.quote}"

{testimonial.author .split(" ") .map((n) => n[0]) .join("")}

{testimonial.author}

{testimonial.role}

))}
{/* Pricing Section */}

Simple, Transparent Pricing

Choose the plan that's right for you and start building better products today.

{[ { title: "Starter", price: "$9", description: "Perfect for small projects and individuals", features: ["Up to 5 projects", "Basic components", "Community support"], cta: "Get Started", popular: false, }, { title: "Pro", price: "$29", description: "Ideal for growing teams and businesses", features: ["Unlimited projects", "Advanced components", "Priority support", "Custom theming"], cta: "Get Started", popular: true, }, { title: "Enterprise", price: "Custom", description: "For large organizations with specific needs", features: ["Unlimited everything", "Dedicated support", "Custom development", "SLA guarantees"], cta: "Contact Us", popular: false, }, ].map((plan, index) => ( {plan.popular && (
Popular
)} {plan.title} {plan.description}
{plan.price} {plan.price !== "Custom" && /month}
    {plan.features.map((feature, i) => (
  • {feature}
  • ))}
))}
) }