import { NavLink, Route, Routes } from "react-router-dom";
import { LayoutDashboard, FilePlus2, Settings as SettingsIcon, Landmark } from "lucide-react";
import Dashboard from "./pages/Dashboard";
import NewClosing from "./pages/NewClosing";
import Closing from "./pages/Closing";
import Settings from "./pages/Settings";
function SideLink({ to, icon: Icon, children, end }: {
to: string; icon: typeof LayoutDashboard; children: string; end?: boolean;
}) {
return (