├── .github └── workflows │ └── deploy.yaml ├── .gitignore ├── .nvmrc ├── .zcloudignore ├── Dockerfile ├── README.md ├── eslint.config.js ├── index.html ├── package.json ├── public ├── logo-with-shadow.png └── vite.svg ├── src ├── App.jsx ├── assets │ └── react.svg ├── components │ ├── ErrorFallback.jsx │ └── Loading.jsx ├── general │ ├── Layout.jsx │ ├── NotFound.jsx │ ├── RoutePaths.jsx │ └── Router.jsx ├── home │ └── Home.jsx ├── index.css └── main.jsx └── vite.config.js /.github/workflows/deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quavedev/react-vite-tailwindcss-template/HEAD/.github/workflows/deploy.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quavedev/react-vite-tailwindcss-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v22.20.0 2 | -------------------------------------------------------------------------------- /.zcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quavedev/react-vite-tailwindcss-template/HEAD/.zcloudignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quavedev/react-vite-tailwindcss-template/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quavedev/react-vite-tailwindcss-template/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quavedev/react-vite-tailwindcss-template/HEAD/eslint.config.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quavedev/react-vite-tailwindcss-template/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quavedev/react-vite-tailwindcss-template/HEAD/package.json -------------------------------------------------------------------------------- /public/logo-with-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quavedev/react-vite-tailwindcss-template/HEAD/public/logo-with-shadow.png -------------------------------------------------------------------------------- /public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quavedev/react-vite-tailwindcss-template/HEAD/public/vite.svg -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quavedev/react-vite-tailwindcss-template/HEAD/src/App.jsx -------------------------------------------------------------------------------- /src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quavedev/react-vite-tailwindcss-template/HEAD/src/assets/react.svg -------------------------------------------------------------------------------- /src/components/ErrorFallback.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quavedev/react-vite-tailwindcss-template/HEAD/src/components/ErrorFallback.jsx -------------------------------------------------------------------------------- /src/components/Loading.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quavedev/react-vite-tailwindcss-template/HEAD/src/components/Loading.jsx -------------------------------------------------------------------------------- /src/general/Layout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quavedev/react-vite-tailwindcss-template/HEAD/src/general/Layout.jsx -------------------------------------------------------------------------------- /src/general/NotFound.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quavedev/react-vite-tailwindcss-template/HEAD/src/general/NotFound.jsx -------------------------------------------------------------------------------- /src/general/RoutePaths.jsx: -------------------------------------------------------------------------------- 1 | export const RoutePaths = { 2 | HOME: '/', 3 | }; 4 | -------------------------------------------------------------------------------- /src/general/Router.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quavedev/react-vite-tailwindcss-template/HEAD/src/general/Router.jsx -------------------------------------------------------------------------------- /src/home/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quavedev/react-vite-tailwindcss-template/HEAD/src/home/Home.jsx -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- 1 | @import 'tailwindcss'; 2 | -------------------------------------------------------------------------------- /src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quavedev/react-vite-tailwindcss-template/HEAD/src/main.jsx -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quavedev/react-vite-tailwindcss-template/HEAD/vite.config.js --------------------------------------------------------------------------------