import React, { useEffect } from 'react'; import { Routes, Route } from 'react-router-dom'; import { BudgetProvider } from './contexts/budget/BudgetContext'; import { AuthProvider } from './contexts/auth/AuthProvider'; import { Toaster } from './components/ui/toaster'; import Index from './pages/Index'; import Login from './pages/Login'; import Register from './pages/Register'; import Settings from './pages/Settings'; import Transactions from './pages/Transactions'; import Analytics from './pages/Analytics'; import ProfileManagement from './pages/ProfileManagement'; import NotFound from './pages/NotFound'; import PaymentMethods from './pages/PaymentMethods'; import HelpSupport from './pages/HelpSupport'; import SecurityPrivacySettings from './pages/SecurityPrivacySettings'; import NotificationSettings from './pages/NotificationSettings'; import ForgotPassword from './pages/ForgotPassword'; function App() { useEffect(() => { document.title = "적자 탈출 가계부"; }, []); return (
} /> } /> } /> } /> } /> } /> } /> } /> } /> } /> } /> } /> } />
); } export default App;