import { Button } from "@/components/ui/button"; import { Badge } from "@/components/ui/badge"; import { Card } from "@/components/ui/card"; import { CheckCircle } from "lucide-react"; export default function LandingPage() { const features = [ { title: "Auto Dependencies", description: "Automatically detects and installs required dependencies for your component", }, { title: "Tool Detection", description: "Seamlessly integrates with Tailwind CSS, shadcn/ui, and other popular tools", }, { title: "Zero Config", description: "No setup required. Start developing instantly with hot reload enabled", }, ]; return (
{/* Hero Section */}
New in Bun 1.2.3

From Component to App in Seconds

Start a complete dev server from a single React component. No config needed.

{/* Code Preview */}
              
                $ bun create ./MyComponent.tsx
                
📦 Installing dependencies...
🔍 Detected Tailwind CSS
🎨 Detected shadcn/ui
✨ Dev server running at http://localhost:3000
{/* Features Grid */}
{features.map((feature, index) => (

{feature.title}

{feature.description}

))}
{/* CTA Section */}

Ready to streamline your React development?

Get started with Bun's powerful component development workflow today.

); }