import React from 'react'; import { Compass } from 'lucide-react'; interface EmptyStateProps { title?: string; description?: string; } export const EmptyState: React.FC = ({ title = 'No journeys found', description = 'Try adjusting your filters to discover more expeditions.', }) => { return (

{title}

{description}

); };