├── .github └── FUNDING.yml ├── .gitignore ├── README.md ├── index.html ├── package.json ├── postcss.config.cjs ├── public ├── comida.png ├── dish.png └── vite.svg ├── src ├── App.jsx ├── assets │ └── react.svg ├── components │ └── shared │ │ ├── Car.jsx │ │ ├── Card.jsx │ │ ├── Header.jsx │ │ └── Sidebar.jsx ├── index.css └── main.jsx ├── tailwind.config.cjs ├── vite.config.js └── yarn.lock /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [jotredev] 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotredev/dashboard-store-v1/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotredev/dashboard-store-v1/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotredev/dashboard-store-v1/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotredev/dashboard-store-v1/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotredev/dashboard-store-v1/HEAD/postcss.config.cjs -------------------------------------------------------------------------------- /public/comida.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotredev/dashboard-store-v1/HEAD/public/comida.png -------------------------------------------------------------------------------- /public/dish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotredev/dashboard-store-v1/HEAD/public/dish.png -------------------------------------------------------------------------------- /public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotredev/dashboard-store-v1/HEAD/public/vite.svg -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotredev/dashboard-store-v1/HEAD/src/App.jsx -------------------------------------------------------------------------------- /src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotredev/dashboard-store-v1/HEAD/src/assets/react.svg -------------------------------------------------------------------------------- /src/components/shared/Car.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotredev/dashboard-store-v1/HEAD/src/components/shared/Car.jsx -------------------------------------------------------------------------------- /src/components/shared/Card.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotredev/dashboard-store-v1/HEAD/src/components/shared/Card.jsx -------------------------------------------------------------------------------- /src/components/shared/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotredev/dashboard-store-v1/HEAD/src/components/shared/Header.jsx -------------------------------------------------------------------------------- /src/components/shared/Sidebar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotredev/dashboard-store-v1/HEAD/src/components/shared/Sidebar.jsx -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotredev/dashboard-store-v1/HEAD/src/index.css -------------------------------------------------------------------------------- /src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotredev/dashboard-store-v1/HEAD/src/main.jsx -------------------------------------------------------------------------------- /tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotredev/dashboard-store-v1/HEAD/tailwind.config.cjs -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotredev/dashboard-store-v1/HEAD/vite.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotredev/dashboard-store-v1/HEAD/yarn.lock --------------------------------------------------------------------------------