import { MapPin, Search, Star, TrendingUp, Globe, Users } from 'lucide-react'; import { Button } from '@/components/ui/button'; import { Card, CardContent } from '@/components/ui/card'; import { Badge } from '@/components/ui/badge'; export function QuickActions() { const actions = [ { icon: MapPin, title: 'Find Parks Near Me', description: 'Discover theme parks in your area', badge: 'Popular', color: 'from-primary/20 to-primary/10', borderColor: 'border-primary/20' }, { icon: Search, title: 'Advanced Search', description: 'Filter by rides, location, and ratings', badge: 'New', color: 'from-secondary/20 to-secondary/10', borderColor: 'border-secondary/20' }, { icon: Star, title: 'Top Rated Parks', description: 'Browse the highest-rated destinations', badge: 'Trending', color: 'from-accent/20 to-accent/10', borderColor: 'border-accent/20' }, { icon: TrendingUp, title: 'Coaster Rankings', description: 'See the world\'s best roller coasters', badge: 'Hot', color: 'from-primary/20 to-secondary/10', borderColor: 'border-primary/20' }, { icon: Globe, title: 'Browse by Country', description: 'Explore parks around the world', badge: null, color: 'from-secondary/20 to-accent/10', borderColor: 'border-secondary/20' }, { icon: Users, title: 'Join Community', description: 'Connect with fellow enthusiasts', badge: 'Free', color: 'from-accent/20 to-primary/10', borderColor: 'border-accent/20' } ]; return (

Quick Actions

Jump right into exploring with these popular features

{actions.map((action, index) => (
{action.badge && ( {action.badge} )}

{action.title}

{action.description}

))}
); }