├── .eslintrc.json ├── .gitignore ├── README.md ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages ├── _app.tsx ├── api │ └── hello.ts ├── index.tsx └── login │ └── index.tsx ├── public ├── favicon.ico └── vercel.svg ├── server ├── .eslintrc.js ├── .gitignore ├── .prettierrc ├── README.md ├── nest-cli.json ├── package-lock.json ├── package.json ├── src │ ├── app.controller.spec.ts │ ├── app.controller.ts │ ├── app.module.ts │ ├── app.service.ts │ └── main.ts ├── test │ ├── app.e2e-spec.ts │ └── jest-e2e.json ├── tsconfig.build.json └── tsconfig.json ├── styles └── globals.css ├── tsconfig.json └── ui ├── footer └── index.tsx ├── header └── index.tsx └── hero ├── components ├── hero-banner.tsx ├── hero-enjoy.tsx ├── hero-faq.tsx ├── hero-kids.tsx ├── hero-offline.tsx └── hero-watch.tsx └── index.tsx /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncfinkd/netflix/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncfinkd/netflix/HEAD/README.md -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncfinkd/netflix/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncfinkd/netflix/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncfinkd/netflix/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncfinkd/netflix/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/api/hello.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncfinkd/netflix/HEAD/pages/api/hello.ts -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncfinkd/netflix/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /pages/login/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncfinkd/netflix/HEAD/pages/login/index.tsx -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncfinkd/netflix/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncfinkd/netflix/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /server/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncfinkd/netflix/HEAD/server/.eslintrc.js -------------------------------------------------------------------------------- /server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncfinkd/netflix/HEAD/server/.gitignore -------------------------------------------------------------------------------- /server/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncfinkd/netflix/HEAD/server/.prettierrc -------------------------------------------------------------------------------- /server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncfinkd/netflix/HEAD/server/README.md -------------------------------------------------------------------------------- /server/nest-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncfinkd/netflix/HEAD/server/nest-cli.json -------------------------------------------------------------------------------- /server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncfinkd/netflix/HEAD/server/package-lock.json -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncfinkd/netflix/HEAD/server/package.json -------------------------------------------------------------------------------- /server/src/app.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncfinkd/netflix/HEAD/server/src/app.controller.spec.ts -------------------------------------------------------------------------------- /server/src/app.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncfinkd/netflix/HEAD/server/src/app.controller.ts -------------------------------------------------------------------------------- /server/src/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncfinkd/netflix/HEAD/server/src/app.module.ts -------------------------------------------------------------------------------- /server/src/app.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncfinkd/netflix/HEAD/server/src/app.service.ts -------------------------------------------------------------------------------- /server/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncfinkd/netflix/HEAD/server/src/main.ts -------------------------------------------------------------------------------- /server/test/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncfinkd/netflix/HEAD/server/test/app.e2e-spec.ts -------------------------------------------------------------------------------- /server/test/jest-e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncfinkd/netflix/HEAD/server/test/jest-e2e.json -------------------------------------------------------------------------------- /server/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncfinkd/netflix/HEAD/server/tsconfig.build.json -------------------------------------------------------------------------------- /server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncfinkd/netflix/HEAD/server/tsconfig.json -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncfinkd/netflix/HEAD/styles/globals.css -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncfinkd/netflix/HEAD/tsconfig.json -------------------------------------------------------------------------------- /ui/footer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncfinkd/netflix/HEAD/ui/footer/index.tsx -------------------------------------------------------------------------------- /ui/header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncfinkd/netflix/HEAD/ui/header/index.tsx -------------------------------------------------------------------------------- /ui/hero/components/hero-banner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncfinkd/netflix/HEAD/ui/hero/components/hero-banner.tsx -------------------------------------------------------------------------------- /ui/hero/components/hero-enjoy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncfinkd/netflix/HEAD/ui/hero/components/hero-enjoy.tsx -------------------------------------------------------------------------------- /ui/hero/components/hero-faq.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncfinkd/netflix/HEAD/ui/hero/components/hero-faq.tsx -------------------------------------------------------------------------------- /ui/hero/components/hero-kids.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncfinkd/netflix/HEAD/ui/hero/components/hero-kids.tsx -------------------------------------------------------------------------------- /ui/hero/components/hero-offline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncfinkd/netflix/HEAD/ui/hero/components/hero-offline.tsx -------------------------------------------------------------------------------- /ui/hero/components/hero-watch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncfinkd/netflix/HEAD/ui/hero/components/hero-watch.tsx -------------------------------------------------------------------------------- /ui/hero/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncfinkd/netflix/HEAD/ui/hero/index.tsx --------------------------------------------------------------------------------