├── .gitignore ├── LICENSE.md ├── README.md ├── eslint.config.js ├── index.html ├── lib └── process.ts ├── package.json ├── postcss.config.js ├── public ├── banner.png ├── favicon-512.png ├── favicon.ico ├── favicon.png ├── hero.jpg ├── hero.png └── meta.jpg ├── src ├── App.tsx ├── components │ ├── EditModal.tsx │ └── Images.tsx ├── index.css └── main.jsx ├── tailwind.config.js └── vite.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/bg-remove/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/bg-remove/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/bg-remove/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/bg-remove/HEAD/eslint.config.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/bg-remove/HEAD/index.html -------------------------------------------------------------------------------- /lib/process.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/bg-remove/HEAD/lib/process.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/bg-remove/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/bg-remove/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/bg-remove/HEAD/public/banner.png -------------------------------------------------------------------------------- /public/favicon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/bg-remove/HEAD/public/favicon-512.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/bg-remove/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/bg-remove/HEAD/public/favicon.png -------------------------------------------------------------------------------- /public/hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/bg-remove/HEAD/public/hero.jpg -------------------------------------------------------------------------------- /public/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/bg-remove/HEAD/public/hero.png -------------------------------------------------------------------------------- /public/meta.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/bg-remove/HEAD/public/meta.jpg -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/bg-remove/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/components/EditModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/bg-remove/HEAD/src/components/EditModal.tsx -------------------------------------------------------------------------------- /src/components/Images.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/bg-remove/HEAD/src/components/Images.tsx -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/bg-remove/HEAD/src/index.css -------------------------------------------------------------------------------- /src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/bg-remove/HEAD/src/main.jsx -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/bg-remove/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addyosmani/bg-remove/HEAD/vite.config.js --------------------------------------------------------------------------------