feat: implemented landing page

This commit is contained in:
2025-06-11 18:30:49 -03:00
parent 45ce3e5086
commit 31050675dd
14 changed files with 10511 additions and 0 deletions

27
web/src/App.tsx Normal file
View File

@@ -0,0 +1,27 @@
import AppRouter from './router';
import { ToastContainer } from 'react-toastify';
import 'react-toastify/dist/ReactToastify.css';
import './styles/global.css';
function App() {
return (
<>
<AppRouter />
<ToastContainer
position="top-right"
autoClose={5000}
hideProgressBar={false}
newestOnTop={false}
closeOnClick
rtl={false}
pauseOnFocusLoss
draggable
pauseOnHover
theme="light"
/>
</>
);
}
export default App;