├── .gitignore ├── README.md ├── config ├── env.js ├── jest │ ├── cssTransform.js │ └── fileTransform.js ├── paths.js ├── polyfills.js ├── webpack.config.dev.js ├── webpack.config.prod.js └── webpackDevServer.config.js ├── package.json ├── public ├── favicon.ico ├── index.html └── manifest.json ├── src ├── components │ ├── Features │ │ ├── Cancel │ │ │ ├── Cancel.jsx │ │ │ ├── cancel.png │ │ │ └── styles.module.scss │ │ ├── Features.jsx │ │ ├── Price │ │ │ └── Price.jsx │ │ ├── Watch │ │ │ ├── Watch.jsx │ │ │ └── img │ │ │ │ ├── asset_TV_UI.png │ │ │ │ ├── asset_mobile_tablet_UI_2.png │ │ │ │ └── asset_website_UI.png │ │ ├── icons │ │ │ ├── cancel.svg │ │ │ ├── price.svg │ │ │ └── watch.svg │ │ └── styles.module.scss │ ├── Footer │ │ └── Footer.jsx │ ├── Header │ │ ├── Header.jsx │ │ ├── img │ │ │ └── bg.jpg │ │ └── styles.module.scss │ ├── Nav │ │ ├── Nav.jsx │ │ ├── img │ │ │ └── logo.svg │ │ └── styles.module.scss │ └── Section │ │ └── Pitch │ │ ├── Pitch.jsx │ │ └── styles.module.scss ├── containers │ ├── App.js │ ├── App.scss │ └── App.test.js ├── index.js ├── index.scss ├── logo.svg ├── registerServiceWorker.js └── scss │ ├── buttons.scss │ ├── flex.scss │ ├── global.scss │ └── variables.scss └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Christianq010/netflix_landing-page/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Christianq010/netflix_landing-page/HEAD/README.md -------------------------------------------------------------------------------- /config/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Christianq010/netflix_landing-page/HEAD/config/env.js -------------------------------------------------------------------------------- /config/jest/cssTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Christianq010/netflix_landing-page/HEAD/config/jest/cssTransform.js -------------------------------------------------------------------------------- /config/jest/fileTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Christianq010/netflix_landing-page/HEAD/config/jest/fileTransform.js -------------------------------------------------------------------------------- /config/paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Christianq010/netflix_landing-page/HEAD/config/paths.js -------------------------------------------------------------------------------- /config/polyfills.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Christianq010/netflix_landing-page/HEAD/config/polyfills.js -------------------------------------------------------------------------------- /config/webpack.config.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Christianq010/netflix_landing-page/HEAD/config/webpack.config.dev.js -------------------------------------------------------------------------------- /config/webpack.config.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Christianq010/netflix_landing-page/HEAD/config/webpack.config.prod.js -------------------------------------------------------------------------------- /config/webpackDevServer.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Christianq010/netflix_landing-page/HEAD/config/webpackDevServer.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Christianq010/netflix_landing-page/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Christianq010/netflix_landing-page/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Christianq010/netflix_landing-page/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Christianq010/netflix_landing-page/HEAD/public/manifest.json -------------------------------------------------------------------------------- /src/components/Features/Cancel/Cancel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Christianq010/netflix_landing-page/HEAD/src/components/Features/Cancel/Cancel.jsx -------------------------------------------------------------------------------- /src/components/Features/Cancel/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Christianq010/netflix_landing-page/HEAD/src/components/Features/Cancel/cancel.png -------------------------------------------------------------------------------- /src/components/Features/Cancel/styles.module.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/Features/Features.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Christianq010/netflix_landing-page/HEAD/src/components/Features/Features.jsx -------------------------------------------------------------------------------- /src/components/Features/Price/Price.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Christianq010/netflix_landing-page/HEAD/src/components/Features/Price/Price.jsx -------------------------------------------------------------------------------- /src/components/Features/Watch/Watch.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Christianq010/netflix_landing-page/HEAD/src/components/Features/Watch/Watch.jsx -------------------------------------------------------------------------------- /src/components/Features/Watch/img/asset_TV_UI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Christianq010/netflix_landing-page/HEAD/src/components/Features/Watch/img/asset_TV_UI.png -------------------------------------------------------------------------------- /src/components/Features/Watch/img/asset_mobile_tablet_UI_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Christianq010/netflix_landing-page/HEAD/src/components/Features/Watch/img/asset_mobile_tablet_UI_2.png -------------------------------------------------------------------------------- /src/components/Features/Watch/img/asset_website_UI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Christianq010/netflix_landing-page/HEAD/src/components/Features/Watch/img/asset_website_UI.png -------------------------------------------------------------------------------- /src/components/Features/icons/cancel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Christianq010/netflix_landing-page/HEAD/src/components/Features/icons/cancel.svg -------------------------------------------------------------------------------- /src/components/Features/icons/price.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Christianq010/netflix_landing-page/HEAD/src/components/Features/icons/price.svg -------------------------------------------------------------------------------- /src/components/Features/icons/watch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Christianq010/netflix_landing-page/HEAD/src/components/Features/icons/watch.svg -------------------------------------------------------------------------------- /src/components/Features/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Christianq010/netflix_landing-page/HEAD/src/components/Features/styles.module.scss -------------------------------------------------------------------------------- /src/components/Footer/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Christianq010/netflix_landing-page/HEAD/src/components/Footer/Footer.jsx -------------------------------------------------------------------------------- /src/components/Header/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Christianq010/netflix_landing-page/HEAD/src/components/Header/Header.jsx -------------------------------------------------------------------------------- /src/components/Header/img/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Christianq010/netflix_landing-page/HEAD/src/components/Header/img/bg.jpg -------------------------------------------------------------------------------- /src/components/Header/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Christianq010/netflix_landing-page/HEAD/src/components/Header/styles.module.scss -------------------------------------------------------------------------------- /src/components/Nav/Nav.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Christianq010/netflix_landing-page/HEAD/src/components/Nav/Nav.jsx -------------------------------------------------------------------------------- /src/components/Nav/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Christianq010/netflix_landing-page/HEAD/src/components/Nav/img/logo.svg -------------------------------------------------------------------------------- /src/components/Nav/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Christianq010/netflix_landing-page/HEAD/src/components/Nav/styles.module.scss -------------------------------------------------------------------------------- /src/components/Section/Pitch/Pitch.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Christianq010/netflix_landing-page/HEAD/src/components/Section/Pitch/Pitch.jsx -------------------------------------------------------------------------------- /src/components/Section/Pitch/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Christianq010/netflix_landing-page/HEAD/src/components/Section/Pitch/styles.module.scss -------------------------------------------------------------------------------- /src/containers/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Christianq010/netflix_landing-page/HEAD/src/containers/App.js -------------------------------------------------------------------------------- /src/containers/App.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Christianq010/netflix_landing-page/HEAD/src/containers/App.scss -------------------------------------------------------------------------------- /src/containers/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Christianq010/netflix_landing-page/HEAD/src/containers/App.test.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Christianq010/netflix_landing-page/HEAD/src/index.js -------------------------------------------------------------------------------- /src/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Christianq010/netflix_landing-page/HEAD/src/index.scss -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Christianq010/netflix_landing-page/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/registerServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Christianq010/netflix_landing-page/HEAD/src/registerServiceWorker.js -------------------------------------------------------------------------------- /src/scss/buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Christianq010/netflix_landing-page/HEAD/src/scss/buttons.scss -------------------------------------------------------------------------------- /src/scss/flex.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Christianq010/netflix_landing-page/HEAD/src/scss/flex.scss -------------------------------------------------------------------------------- /src/scss/global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Christianq010/netflix_landing-page/HEAD/src/scss/global.scss -------------------------------------------------------------------------------- /src/scss/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Christianq010/netflix_landing-page/HEAD/src/scss/variables.scss -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Christianq010/netflix_landing-page/HEAD/yarn.lock --------------------------------------------------------------------------------