import { Routes, Route, BrowserRouter } from 'react-router-dom'; import Home from './Home'; import SimpleHome from './SimpleHome'; import About from './About'; import ApiDocs from './ApiDocs'; import Registration from './Registration'; import Dashboard from './Dashboard'; import Login from './Login'; import Withdrawal from './Withdrawal'; import Settings from './Settings'; import ForgotPassword from './ForgotPassword'; function App() { return ( } /> } /> } /> } /> } /> } /> } /> } /> } /> {/* Add more routes as needed */} ); } export default App;