├── .env ├── .eslintrc.json ├── .firebaserc ├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── docs └── preview.jpg ├── firebase.json ├── functions ├── .gitignore ├── package-lock.json ├── package.json ├── src │ └── index.ts ├── tsconfig.dev.json └── tsconfig.json ├── package.json ├── postcss.config.js ├── public ├── exemples │ ├── bag.jpeg │ ├── bag.thumb.jpeg │ ├── jacket.jpeg │ ├── jacket.thumb.jpeg │ ├── paris.jpeg │ ├── paris.thumb.jpeg │ ├── shoe.jpeg │ ├── shoe.thumb.jpeg │ ├── table.jpeg │ └── table.thumb.jpeg ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json ├── preview.jpg └── robots.txt ├── src ├── App.tsx ├── Editor.tsx ├── adapters │ ├── firebase.tsx │ └── inpainting.ts ├── components │ ├── Button.tsx │ ├── FileSelect.tsx │ ├── Link.tsx │ ├── Logo.tsx │ ├── MadeWidthBadge.tsx │ ├── Modal.tsx │ └── Slider.tsx ├── index.tsx ├── react-app-env.d.ts ├── setupTests.ts ├── styles │ └── tailwind.css └── utils.ts ├── tailwind.config.js ├── tsconfig.json └── yarn.lock /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loretoparisi/cleanup.pictures/HEAD/.env -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loretoparisi/cleanup.pictures/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loretoparisi/cleanup.pictures/HEAD/.firebaserc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loretoparisi/cleanup.pictures/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loretoparisi/cleanup.pictures/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loretoparisi/cleanup.pictures/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loretoparisi/cleanup.pictures/HEAD/README.md -------------------------------------------------------------------------------- /docs/preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loretoparisi/cleanup.pictures/HEAD/docs/preview.jpg -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loretoparisi/cleanup.pictures/HEAD/firebase.json -------------------------------------------------------------------------------- /functions/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loretoparisi/cleanup.pictures/HEAD/functions/.gitignore -------------------------------------------------------------------------------- /functions/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loretoparisi/cleanup.pictures/HEAD/functions/package-lock.json -------------------------------------------------------------------------------- /functions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loretoparisi/cleanup.pictures/HEAD/functions/package.json -------------------------------------------------------------------------------- /functions/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loretoparisi/cleanup.pictures/HEAD/functions/src/index.ts -------------------------------------------------------------------------------- /functions/tsconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loretoparisi/cleanup.pictures/HEAD/functions/tsconfig.dev.json -------------------------------------------------------------------------------- /functions/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loretoparisi/cleanup.pictures/HEAD/functions/tsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loretoparisi/cleanup.pictures/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loretoparisi/cleanup.pictures/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/exemples/bag.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loretoparisi/cleanup.pictures/HEAD/public/exemples/bag.jpeg -------------------------------------------------------------------------------- /public/exemples/bag.thumb.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loretoparisi/cleanup.pictures/HEAD/public/exemples/bag.thumb.jpeg -------------------------------------------------------------------------------- /public/exemples/jacket.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loretoparisi/cleanup.pictures/HEAD/public/exemples/jacket.jpeg -------------------------------------------------------------------------------- /public/exemples/jacket.thumb.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loretoparisi/cleanup.pictures/HEAD/public/exemples/jacket.thumb.jpeg -------------------------------------------------------------------------------- /public/exemples/paris.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loretoparisi/cleanup.pictures/HEAD/public/exemples/paris.jpeg -------------------------------------------------------------------------------- /public/exemples/paris.thumb.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loretoparisi/cleanup.pictures/HEAD/public/exemples/paris.thumb.jpeg -------------------------------------------------------------------------------- /public/exemples/shoe.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loretoparisi/cleanup.pictures/HEAD/public/exemples/shoe.jpeg -------------------------------------------------------------------------------- /public/exemples/shoe.thumb.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loretoparisi/cleanup.pictures/HEAD/public/exemples/shoe.thumb.jpeg -------------------------------------------------------------------------------- /public/exemples/table.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loretoparisi/cleanup.pictures/HEAD/public/exemples/table.jpeg -------------------------------------------------------------------------------- /public/exemples/table.thumb.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loretoparisi/cleanup.pictures/HEAD/public/exemples/table.thumb.jpeg -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loretoparisi/cleanup.pictures/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loretoparisi/cleanup.pictures/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loretoparisi/cleanup.pictures/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loretoparisi/cleanup.pictures/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loretoparisi/cleanup.pictures/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loretoparisi/cleanup.pictures/HEAD/public/preview.jpg -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loretoparisi/cleanup.pictures/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loretoparisi/cleanup.pictures/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/Editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loretoparisi/cleanup.pictures/HEAD/src/Editor.tsx -------------------------------------------------------------------------------- /src/adapters/firebase.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loretoparisi/cleanup.pictures/HEAD/src/adapters/firebase.tsx -------------------------------------------------------------------------------- /src/adapters/inpainting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loretoparisi/cleanup.pictures/HEAD/src/adapters/inpainting.ts -------------------------------------------------------------------------------- /src/components/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loretoparisi/cleanup.pictures/HEAD/src/components/Button.tsx -------------------------------------------------------------------------------- /src/components/FileSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loretoparisi/cleanup.pictures/HEAD/src/components/FileSelect.tsx -------------------------------------------------------------------------------- /src/components/Link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loretoparisi/cleanup.pictures/HEAD/src/components/Link.tsx -------------------------------------------------------------------------------- /src/components/Logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loretoparisi/cleanup.pictures/HEAD/src/components/Logo.tsx -------------------------------------------------------------------------------- /src/components/MadeWidthBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loretoparisi/cleanup.pictures/HEAD/src/components/MadeWidthBadge.tsx -------------------------------------------------------------------------------- /src/components/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loretoparisi/cleanup.pictures/HEAD/src/components/Modal.tsx -------------------------------------------------------------------------------- /src/components/Slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loretoparisi/cleanup.pictures/HEAD/src/components/Slider.tsx -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loretoparisi/cleanup.pictures/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loretoparisi/cleanup.pictures/HEAD/src/setupTests.ts -------------------------------------------------------------------------------- /src/styles/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loretoparisi/cleanup.pictures/HEAD/src/styles/tailwind.css -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loretoparisi/cleanup.pictures/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loretoparisi/cleanup.pictures/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loretoparisi/cleanup.pictures/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loretoparisi/cleanup.pictures/HEAD/yarn.lock --------------------------------------------------------------------------------