├── .gitignore ├── LICENSE ├── README.md ├── assets ├── change-outer.gif ├── edit-photo.gif ├── main.png └── no-upload.gif ├── components ├── Author │ ├── Author.tsx │ └── index.tsx ├── Download │ ├── Download.tsx │ └── index.tsx ├── Dropzone │ ├── Dropzone.tsx │ └── index.tsx ├── Editor │ ├── Editor.tsx │ └── index.tsx ├── Head │ ├── Head.tsx │ └── index.tsx ├── Hero │ ├── Hero.tsx │ └── index.tsx ├── Input │ ├── Input.tsx │ └── index.tsx └── Tool │ ├── Tool.tsx │ └── index.tsx ├── data ├── author.ts ├── copy.ts ├── editor.ts ├── outer.ts ├── photo.ts └── product.ts ├── hooks └── useScrollPosition.ts ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages ├── _app.tsx └── index.tsx ├── postcss.config.js ├── public └── img │ ├── author.jpg │ ├── favicon.png │ ├── og.png │ ├── outer │ ├── formal │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ └── 4.png │ └── ugm │ │ ├── 1.png │ │ └── 2.png │ └── sample.jpg ├── styles └── globals.css ├── tailwind.config.js ├── tsconfig.json └── types └── index.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abielzulio/editpasfoto/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abielzulio/editpasfoto/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abielzulio/editpasfoto/HEAD/README.md -------------------------------------------------------------------------------- /assets/change-outer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abielzulio/editpasfoto/HEAD/assets/change-outer.gif -------------------------------------------------------------------------------- /assets/edit-photo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abielzulio/editpasfoto/HEAD/assets/edit-photo.gif -------------------------------------------------------------------------------- /assets/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abielzulio/editpasfoto/HEAD/assets/main.png -------------------------------------------------------------------------------- /assets/no-upload.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abielzulio/editpasfoto/HEAD/assets/no-upload.gif -------------------------------------------------------------------------------- /components/Author/Author.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abielzulio/editpasfoto/HEAD/components/Author/Author.tsx -------------------------------------------------------------------------------- /components/Author/index.tsx: -------------------------------------------------------------------------------- 1 | export { default } from "./Author" 2 | -------------------------------------------------------------------------------- /components/Download/Download.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abielzulio/editpasfoto/HEAD/components/Download/Download.tsx -------------------------------------------------------------------------------- /components/Download/index.tsx: -------------------------------------------------------------------------------- 1 | export { default } from "./Download" 2 | -------------------------------------------------------------------------------- /components/Dropzone/Dropzone.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abielzulio/editpasfoto/HEAD/components/Dropzone/Dropzone.tsx -------------------------------------------------------------------------------- /components/Dropzone/index.tsx: -------------------------------------------------------------------------------- 1 | export { default } from "./Dropzone" 2 | -------------------------------------------------------------------------------- /components/Editor/Editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abielzulio/editpasfoto/HEAD/components/Editor/Editor.tsx -------------------------------------------------------------------------------- /components/Editor/index.tsx: -------------------------------------------------------------------------------- 1 | export { default } from "./Editor" 2 | -------------------------------------------------------------------------------- /components/Head/Head.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abielzulio/editpasfoto/HEAD/components/Head/Head.tsx -------------------------------------------------------------------------------- /components/Head/index.tsx: -------------------------------------------------------------------------------- 1 | export { default } from "./Head" 2 | -------------------------------------------------------------------------------- /components/Hero/Hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abielzulio/editpasfoto/HEAD/components/Hero/Hero.tsx -------------------------------------------------------------------------------- /components/Hero/index.tsx: -------------------------------------------------------------------------------- 1 | export { default } from "./Hero" 2 | -------------------------------------------------------------------------------- /components/Input/Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abielzulio/editpasfoto/HEAD/components/Input/Input.tsx -------------------------------------------------------------------------------- /components/Input/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./Input" 2 | -------------------------------------------------------------------------------- /components/Tool/Tool.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abielzulio/editpasfoto/HEAD/components/Tool/Tool.tsx -------------------------------------------------------------------------------- /components/Tool/index.tsx: -------------------------------------------------------------------------------- 1 | export { default } from "./Tool" 2 | -------------------------------------------------------------------------------- /data/author.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abielzulio/editpasfoto/HEAD/data/author.ts -------------------------------------------------------------------------------- /data/copy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abielzulio/editpasfoto/HEAD/data/copy.ts -------------------------------------------------------------------------------- /data/editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abielzulio/editpasfoto/HEAD/data/editor.ts -------------------------------------------------------------------------------- /data/outer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abielzulio/editpasfoto/HEAD/data/outer.ts -------------------------------------------------------------------------------- /data/photo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abielzulio/editpasfoto/HEAD/data/photo.ts -------------------------------------------------------------------------------- /data/product.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abielzulio/editpasfoto/HEAD/data/product.ts -------------------------------------------------------------------------------- /hooks/useScrollPosition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abielzulio/editpasfoto/HEAD/hooks/useScrollPosition.ts -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abielzulio/editpasfoto/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abielzulio/editpasfoto/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abielzulio/editpasfoto/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abielzulio/editpasfoto/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abielzulio/editpasfoto/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abielzulio/editpasfoto/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/img/author.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abielzulio/editpasfoto/HEAD/public/img/author.jpg -------------------------------------------------------------------------------- /public/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abielzulio/editpasfoto/HEAD/public/img/favicon.png -------------------------------------------------------------------------------- /public/img/og.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abielzulio/editpasfoto/HEAD/public/img/og.png -------------------------------------------------------------------------------- /public/img/outer/formal/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abielzulio/editpasfoto/HEAD/public/img/outer/formal/1.png -------------------------------------------------------------------------------- /public/img/outer/formal/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abielzulio/editpasfoto/HEAD/public/img/outer/formal/2.png -------------------------------------------------------------------------------- /public/img/outer/formal/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abielzulio/editpasfoto/HEAD/public/img/outer/formal/3.png -------------------------------------------------------------------------------- /public/img/outer/formal/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abielzulio/editpasfoto/HEAD/public/img/outer/formal/4.png -------------------------------------------------------------------------------- /public/img/outer/ugm/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abielzulio/editpasfoto/HEAD/public/img/outer/ugm/1.png -------------------------------------------------------------------------------- /public/img/outer/ugm/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abielzulio/editpasfoto/HEAD/public/img/outer/ugm/2.png -------------------------------------------------------------------------------- /public/img/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abielzulio/editpasfoto/HEAD/public/img/sample.jpg -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abielzulio/editpasfoto/HEAD/styles/globals.css -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abielzulio/editpasfoto/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abielzulio/editpasfoto/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abielzulio/editpasfoto/HEAD/types/index.ts --------------------------------------------------------------------------------