├── .gitignore ├── README.md ├── package.json ├── public ├── index.html └── robots.txt ├── src ├── App.css ├── App.js ├── imgs │ ├── img1.png │ ├── img2.png │ ├── img3.png │ └── logo.png └── index.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZainRk/Dashboard-starter/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZainRk/Dashboard-starter/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZainRk/Dashboard-starter/HEAD/package.json -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZainRk/Dashboard-starter/HEAD/public/index.html -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZainRk/Dashboard-starter/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZainRk/Dashboard-starter/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZainRk/Dashboard-starter/HEAD/src/App.js -------------------------------------------------------------------------------- /src/imgs/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZainRk/Dashboard-starter/HEAD/src/imgs/img1.png -------------------------------------------------------------------------------- /src/imgs/img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZainRk/Dashboard-starter/HEAD/src/imgs/img2.png -------------------------------------------------------------------------------- /src/imgs/img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZainRk/Dashboard-starter/HEAD/src/imgs/img3.png -------------------------------------------------------------------------------- /src/imgs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZainRk/Dashboard-starter/HEAD/src/imgs/logo.png -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZainRk/Dashboard-starter/HEAD/src/index.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZainRk/Dashboard-starter/HEAD/yarn.lock --------------------------------------------------------------------------------