├── .gitignore
├── README.md
├── debug.log
├── package.json
├── public
├── favicon.ico
├── index.html
├── logo192.png
├── logo512.png
├── manifest.json
└── robots.txt
├── src
├── App.css
├── App.js
├── index.css
└── index.js
└── yarn.lock
/.gitignore:
--------------------------------------------------------------------------------
1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2 |
3 | # dependencies
4 | /node_modules
5 | /.pnp
6 | .pnp.js
7 |
8 | # testing
9 | /coverage
10 |
11 | # production
12 | /build
13 |
14 | # misc
15 | .DS_Store
16 | .env.local
17 | .env.development.local
18 | .env.test.local
19 | .env.production.local
20 |
21 | npm-debug.log*
22 | yarn-debug.log*
23 | yarn-error.log*
24 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Discord Bot Dashboard
5 |
6 | I'm currently making the coolest discord bot dashboard in this entire galaxy watch my youtube videos for updates!
7 |
8 | [Youtube](https://www.youtube.com/channel/UC_M6GWo7ZcmUVzssGi7i5Iw?view_as=subscriber)
9 |
10 | # This Readme will be updated!
--------------------------------------------------------------------------------
/debug.log:
--------------------------------------------------------------------------------
1 | [1117/202115.497:ERROR:directory_reader_win.cc(43)] FindFirstFile: The system cannot find the path specified. (0x3)
2 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "discord-bot-dashboard-tutorial",
3 | "version": "0.1.0",
4 | "private": true,
5 | "dependencies": {
6 | "@testing-library/jest-dom": "^5.11.4",
7 | "@testing-library/react": "^11.1.0",
8 | "@testing-library/user-event": "^12.1.10",
9 | "bootstrap": "^4.6.0",
10 | "react": "^17.0.1",
11 | "react-bootstrap": "^1.5.2",
12 | "react-dom": "^17.0.1",
13 | "react-icons": "^4.2.0",
14 | "react-scripts": "4.0.0",
15 | "semantic-ui-css": "^2.4.1",
16 | "web-vitals": "^0.2.4"
17 | },
18 | "scripts": {
19 | "start": "react-scripts start",
20 | "build": "react-scripts build",
21 | "test": "react-scripts test",
22 | "eject": "react-scripts eject"
23 | },
24 | "eslintConfig": {
25 | "extends": [
26 | "react-app",
27 | "react-app/jest"
28 | ]
29 | },
30 | "browserslist": {
31 | "production": [
32 | ">0.2%",
33 | "not dead",
34 | "not op_mini all"
35 | ],
36 | "development": [
37 | "last 1 chrome version",
38 | "last 1 firefox version",
39 | "last 1 safari version"
40 | ]
41 | }
42 | }
43 |
--------------------------------------------------------------------------------
/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NithishCodez/Discord-Bot-Dashboard-React/e4bef6239fdbf90d2121f5829d952cddbb6bcbb6/public/favicon.ico
--------------------------------------------------------------------------------
/public/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
12 |
13 |
17 |
18 |
27 | React App
28 |
29 |
30 |
31 |
32 |
42 |
43 |
44 |
--------------------------------------------------------------------------------
/public/logo192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NithishCodez/Discord-Bot-Dashboard-React/e4bef6239fdbf90d2121f5829d952cddbb6bcbb6/public/logo192.png
--------------------------------------------------------------------------------
/public/logo512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NithishCodez/Discord-Bot-Dashboard-React/e4bef6239fdbf90d2121f5829d952cddbb6bcbb6/public/logo512.png
--------------------------------------------------------------------------------
/public/manifest.json:
--------------------------------------------------------------------------------
1 | {
2 | "short_name": "React App",
3 | "name": "Create React App Sample",
4 | "icons": [
5 | {
6 | "src": "favicon.ico",
7 | "sizes": "64x64 32x32 24x24 16x16",
8 | "type": "image/x-icon"
9 | },
10 | {
11 | "src": "logo192.png",
12 | "type": "image/png",
13 | "sizes": "192x192"
14 | },
15 | {
16 | "src": "logo512.png",
17 | "type": "image/png",
18 | "sizes": "512x512"
19 | }
20 | ],
21 | "start_url": ".",
22 | "display": "standalone",
23 | "theme_color": "#000000",
24 | "background_color": "#ffffff"
25 | }
26 |
--------------------------------------------------------------------------------
/public/robots.txt:
--------------------------------------------------------------------------------
1 | # https://www.robotstxt.org/robotstxt.html
2 | User-agent: *
3 | Disallow:
4 |
--------------------------------------------------------------------------------
/src/App.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NithishCodez/Discord-Bot-Dashboard-React/e4bef6239fdbf90d2121f5829d952cddbb6bcbb6/src/App.css
--------------------------------------------------------------------------------
/src/App.js:
--------------------------------------------------------------------------------
1 | import { Navbar, Nav, Image, Button } from "react-bootstrap";
2 | import { FaDiscord } from "react-icons/fa";
3 |
4 | function App() {
5 | return (
6 |
7 |
8 |
9 |
10 | Dashboard
11 |
12 |
13 |
14 |
22 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 | Musix v2
38 |
39 |
40 |
45 |
46 |
51 |
52 |
53 |
54 | );
55 | }
56 |
57 | export default App;
58 |
--------------------------------------------------------------------------------
/src/index.css:
--------------------------------------------------------------------------------
1 | @import url('https://fonts.googleapis.com/css2?family=Krona+One&display=swap');
2 | @import url('https://fonts.googleapis.com/css2?family=Balsamiq+Sans&display=swap');
3 |
4 |
5 | .App-Hero{
6 | height: 40vh;
7 | }
8 |
9 | .Hero-Title{
10 | color: white;
11 | font-size: 3vmax;
12 | font-family: Krona One;
13 | }
--------------------------------------------------------------------------------
/src/index.js:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import ReactDOM from 'react-dom';
3 | import App from './App';
4 | import 'bootstrap/dist/css/bootstrap.min.css';
5 | import './index.css';
6 |
7 | ReactDOM.render(
8 | ,
9 | document.getElementById('root')
10 | );
11 |
--------------------------------------------------------------------------------