import React from 'react'; import { BrowserRouter as Router, Routes, Route, Navigate } from 'react-router-dom'; import { AuthProvider } from './context/AuthContext'; import { ToastProvider } from './components/Toast'; import ProtectedRoute from './components/ProtectedRoute'; import Layout from './components/Layout'; import CookieConsent from './components/CookieConsent'; import Login from './pages/Login'; import Dashboard from './pages/Dashboard'; import Accounts from './pages/Accounts'; import CostCenters from './pages/CostCenters'; import Categories from './pages/Categories'; import LiabilityAccounts from './pages/LiabilityAccounts'; import TransactionsByWeek from './pages/TransactionsByWeek'; import ImportTransactions from './pages/ImportTransactions'; import TransferDetection from './pages/TransferDetection'; import RefundDetection from './pages/RefundDetection'; import RecurringTransactions from './pages/RecurringTransactions'; import Business from './pages/Business'; import FinancialHealth from './pages/FinancialHealth'; import Goals from './pages/Goals'; import Budgets from './pages/Budgets'; import Reports from './pages/Reports'; import Preferences from './pages/Preferences'; import Profile from './pages/Profile'; import Pricing from './pages/Pricing'; import Billing from './pages/Billing'; import Users from './pages/Users'; import SiteSettings from './pages/SiteSettings'; function App() { return ( } /> } /> } /> } /> } /> } /> } /> } /> } /> } /> } /> } /> } /> } /> } /> } /> } /> } /> } /> } /> } /> } /> } /> ); } export default App;