import { Navigate, Route, Routes } from "react-router-dom";
import { Toaster } from "sonner";
import { LandingPage } from "./pages/LandingPage";
import { DashboardPage } from "./pages/DashboardPage";
/**
* App shell. Declares the top-level routes and mounts the global
* notification portal (sonner). Router itself lives in `main.jsx` so tests
* can wrap `` with a `MemoryRouter` if needed.
*/
export default function App() {
return (
<>
} />
} />
} />
>
);
}