import { Routes, Route } from 'react-router-dom' import { useEffect } from 'react' import { useAppStore } from './store/appStore' import Layout from './components/Layout' import Dashboard from './pages/Dashboard' import Plugins from './pages/Plugins' import Settings from './pages/Settings' import Nexus from './pages/Nexus' import Overlay from './pages/Overlay' import './styles/App.css' function App() { const { initialize } = useAppStore() useEffect(() => { initialize() }, []) return ( }> } /> } /> } /> } /> } /> ) } export default App