import { useAuth } from '../contexts/AuthContext'; const Dashboard = () => { const { user, logout } = useAuth(); const handleLogout = async () => { await logout(); }; return (

Trip Planner Dashboard

Welcome, {user?.name}!

Welcome to Your Trip Planner

Start planning your next adventure!

Plan Trips

Create and organize your travel itineraries

Save Destinations

Keep track of places you want to visit

Share Plans

Collaborate with friends and family

); }; export default Dashboard;