Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16,884 changes: 11,168 additions & 5,716 deletions package-lock.json

Large diffs are not rendered by default.

8 changes: 5 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"@fullcalendar/list": "^5.11.3",
"@fullcalendar/react": "^5.11.2",
"@fullcalendar/timegrid": "^5.11.3",
"@mui/icons-material": "^5.10.3",
"@mui/icons-material": "^5.16.7",
"@mui/material": "^5.10.5",
"@mui/x-data-grid": "^5.17.2",
"@nivo/bar": "^0.80.0",
Expand All @@ -23,20 +23,22 @@
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^13.5.0",
"@types/react-router-dom": "^5.3.3",
"chart.js": "^3.9.1",
"formik": "^2.2.9",
"moment": "^2.30.1",
"react": "^18.2.0",
"react-chartjs-2": "^4.3.1",
"react-dom": "^18.2.0",
"react-pro-sidebar": "^0.7.1",
"react-redux": "^8.0.2",
"react-router-dom": "^6.3.0",
"react-router-dom": "^6.27.0",
"react-scripts": "5.0.1",
"web-vitals": "^2.1.4",
"yup": "^0.32.11"
},
"scripts": {
"start": "PORT=5000 react-scripts start",
"start": "PORT=3000 react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
Expand Down
Binary file added public/assets/admin.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/assets/adminicon.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed public/assets/user.png
Binary file not shown.
32 changes: 22 additions & 10 deletions src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,16 +30,28 @@ function App() {
<Topbar setIsSidebar={setIsSidebar} />
<Routes>
<Route path="/" element={<Dashboard />} />
<Route path="/team" element={<Team />} />
<Route path="/contacts" element={<Contacts />} />
<Route path="/invoices" element={<Invoices />} />
<Route path="/form" element={<Form />} />
<Route path="/bar" element={<Bar />} />
<Route path="/pie" element={<Pie />} />
<Route path="/line" element={<Line />} />
<Route path="/faq" element={<FAQ />} />
<Route path="/calendar" element={<Calendar />} />
<Route path="/geography" element={<Geography />} />
<Route path="/admin" element={<Team />} />
<Route path="/superstockez" element={<Contacts />} />
<Route path="/stockez" element={<Invoices />} />
<Route path="/agents" element={<Form />} />
<Route path="/loginrequest" element={<Bar />} />
<Route path="/pointstransfer" element={<Pie />} />
<Route path="/dashboard" element={<Line />} />
<Route path="/managegames" element={<FAQ />} />
<Route path="/gamesummary" element={<Calendar />} />
<Route path="/playerhistory" element={<Geography />} />
<Route path="/turnoverreports" element={<Geography />} />
<Route path="/transactionreport" element={<Geography />} />
<Route path="/commissionreport" element={<Geography />} />
<Route path="/alltransactionreport" element={<Geography />} />
<Route path="/changetransactionpin" element={<Geography />} />
<Route path="/settings" element={<Geography />} />
<Route path="/rolesassigned" element={<Geography />} />
<Route path="/agentsalereport" element={<Geography />} />
<Route path="/stockezsales" element={<Geography />} />
<Route path="/superstockez" element={<Geography />} />
<Route path="/resulthistory" element={<Geography />} />

</Routes>
</main>
</div>
Expand Down
Loading