├── .gitignore ├── App.js ├── README.md ├── bundle.js ├── components ├── Cube.js ├── Hero.js └── Perspective.js ├── index.html ├── landscape.jpg ├── package.json └── style.css /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugooliveirad/cubactive/HEAD/App.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugooliveirad/cubactive/HEAD/README.md -------------------------------------------------------------------------------- /bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugooliveirad/cubactive/HEAD/bundle.js -------------------------------------------------------------------------------- /components/Cube.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugooliveirad/cubactive/HEAD/components/Cube.js -------------------------------------------------------------------------------- /components/Hero.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugooliveirad/cubactive/HEAD/components/Hero.js -------------------------------------------------------------------------------- /components/Perspective.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugooliveirad/cubactive/HEAD/components/Perspective.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugooliveirad/cubactive/HEAD/index.html -------------------------------------------------------------------------------- /landscape.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugooliveirad/cubactive/HEAD/landscape.jpg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugooliveirad/cubactive/HEAD/package.json -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugooliveirad/cubactive/HEAD/style.css --------------------------------------------------------------------------------