├── .eslintrc.cjs ├── .gitignore ├── README.md ├── index.html ├── package.json ├── profile.jpg ├── public └── vite.svg ├── src ├── App.css ├── App.jsx ├── Banner.css ├── Banner.jsx ├── Navbar.css ├── Navbar.jsx ├── Row.css ├── Row.jsx ├── assets │ └── react.svg ├── axios.jsx ├── index.css ├── main.jsx └── requests.jsx └── vite.config.js /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abishek-raghavan/Netflix_Clone/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abishek-raghavan/Netflix_Clone/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abishek-raghavan/Netflix_Clone/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abishek-raghavan/Netflix_Clone/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abishek-raghavan/Netflix_Clone/HEAD/package.json -------------------------------------------------------------------------------- /profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abishek-raghavan/Netflix_Clone/HEAD/profile.jpg -------------------------------------------------------------------------------- /public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abishek-raghavan/Netflix_Clone/HEAD/public/vite.svg -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abishek-raghavan/Netflix_Clone/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abishek-raghavan/Netflix_Clone/HEAD/src/App.jsx -------------------------------------------------------------------------------- /src/Banner.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abishek-raghavan/Netflix_Clone/HEAD/src/Banner.css -------------------------------------------------------------------------------- /src/Banner.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abishek-raghavan/Netflix_Clone/HEAD/src/Banner.jsx -------------------------------------------------------------------------------- /src/Navbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abishek-raghavan/Netflix_Clone/HEAD/src/Navbar.css -------------------------------------------------------------------------------- /src/Navbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abishek-raghavan/Netflix_Clone/HEAD/src/Navbar.jsx -------------------------------------------------------------------------------- /src/Row.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abishek-raghavan/Netflix_Clone/HEAD/src/Row.css -------------------------------------------------------------------------------- /src/Row.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abishek-raghavan/Netflix_Clone/HEAD/src/Row.jsx -------------------------------------------------------------------------------- /src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abishek-raghavan/Netflix_Clone/HEAD/src/assets/react.svg -------------------------------------------------------------------------------- /src/axios.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abishek-raghavan/Netflix_Clone/HEAD/src/axios.jsx -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abishek-raghavan/Netflix_Clone/HEAD/src/main.jsx -------------------------------------------------------------------------------- /src/requests.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abishek-raghavan/Netflix_Clone/HEAD/src/requests.jsx -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abishek-raghavan/Netflix_Clone/HEAD/vite.config.js --------------------------------------------------------------------------------