├── .gitignore ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── src ├── App.js ├── App.scss ├── App.test.js ├── images │ ├── arrow-right.svg │ ├── boy.webp │ └── girl.webp ├── index.js └── serviceWorker.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrongakram/GSAP-Hero-Animation/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrongakram/GSAP-Hero-Animation/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrongakram/GSAP-Hero-Animation/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrongakram/GSAP-Hero-Animation/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrongakram/GSAP-Hero-Animation/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrongakram/GSAP-Hero-Animation/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrongakram/GSAP-Hero-Animation/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrongakram/GSAP-Hero-Animation/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrongakram/GSAP-Hero-Animation/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrongakram/GSAP-Hero-Animation/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrongakram/GSAP-Hero-Animation/HEAD/src/App.scss -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrongakram/GSAP-Hero-Animation/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/images/arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrongakram/GSAP-Hero-Animation/HEAD/src/images/arrow-right.svg -------------------------------------------------------------------------------- /src/images/boy.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrongakram/GSAP-Hero-Animation/HEAD/src/images/boy.webp -------------------------------------------------------------------------------- /src/images/girl.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrongakram/GSAP-Hero-Animation/HEAD/src/images/girl.webp -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrongakram/GSAP-Hero-Animation/HEAD/src/index.js -------------------------------------------------------------------------------- /src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrongakram/GSAP-Hero-Animation/HEAD/src/serviceWorker.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrongakram/GSAP-Hero-Animation/HEAD/yarn.lock --------------------------------------------------------------------------------