"use client"; import { useInView } from "@/hooks/use-in-view"; import { Button } from "@/components/ui/button"; import { Card, CardHeader, CardTitle, CardDescription, CardContent, CardFooter } from "@/components/ui/card"; import { Check, Star } from "lucide-react"; const packages = [ { name: "The Outhouse", subtitle: "For intimate gatherings", price: "From $5K", capacity: "Up to 1,000 attendees", featured: false, features: [ "10-20 premium porta potties", "Basic bioreactor unit", "Up to 50 kWh generation", "Standard maintenance", "Setup & teardown included", "Basic power distribution", ], }, { name: "The Throne Room", subtitle: "Most popular for mid-size festivals", price: "From $25K", capacity: "Up to 10,000 attendees", featured: true, features: [ "50-100 premium porta potties", "Multi-reactor array", "Up to 500 kWh generation", "24/7 dedicated maintenance", "Full power infrastructure", "Real-time monitoring dashboard", "VIP luxury units available", "Carbon offset certificate", ], }, { name: "The Royal Flush", subtitle: "For major festivals & events", price: "Custom", capacity: "10,000+ attendees", featured: false, features: [ "100+ premium porta potties", "Industrial bioreactor farm", "Megawatt-scale generation", "Dedicated on-site team", "Full grid integration", "Real-time public dashboard", "VIP & ADA luxury suites", "PR & sustainability report", ], }, ]; export function PackagesSection() { const { ref, isInView } = useInView(0.1); return (

Pick Your Package

From cozy campouts to massive music festivals, we've got you covered

{packages.map((pkg, index) => ( {pkg.featured && (
Most Popular
)} {pkg.name} {pkg.subtitle}
{pkg.price}

{pkg.capacity}

    {pkg.features.map((feature) => (
  • {feature}
  • ))}
))}
); }