├── .gitignore ├── README.md ├── codegen.yml ├── index.html ├── package.json ├── postcss.config.js ├── src ├── App.tsx ├── Router.tsx ├── assets │ ├── blur-background.png │ └── code-mockup.png ├── components │ ├── Header.tsx │ ├── Lesson.tsx │ ├── Logo.tsx │ ├── Sidebar.tsx │ └── Video.tsx ├── graphql │ ├── generated.ts │ ├── mutations │ │ └── create-subscriber-mutation.graphql │ └── queries │ │ ├── get-lessons-by-slug-query.graphql │ │ └── get-lessons-query.graphql ├── lib │ └── apollo.ts ├── main.tsx ├── pages │ ├── Event.tsx │ └── Subscribe.tsx ├── styles │ └── global.css └── vite-env.d.ts ├── tailwind.config.js ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-lab-02/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-lab-02/HEAD/README.md -------------------------------------------------------------------------------- /codegen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-lab-02/HEAD/codegen.yml -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-lab-02/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-lab-02/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-lab-02/HEAD/postcss.config.js -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-lab-02/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/Router.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-lab-02/HEAD/src/Router.tsx -------------------------------------------------------------------------------- /src/assets/blur-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-lab-02/HEAD/src/assets/blur-background.png -------------------------------------------------------------------------------- /src/assets/code-mockup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-lab-02/HEAD/src/assets/code-mockup.png -------------------------------------------------------------------------------- /src/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-lab-02/HEAD/src/components/Header.tsx -------------------------------------------------------------------------------- /src/components/Lesson.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-lab-02/HEAD/src/components/Lesson.tsx -------------------------------------------------------------------------------- /src/components/Logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-lab-02/HEAD/src/components/Logo.tsx -------------------------------------------------------------------------------- /src/components/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-lab-02/HEAD/src/components/Sidebar.tsx -------------------------------------------------------------------------------- /src/components/Video.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-lab-02/HEAD/src/components/Video.tsx -------------------------------------------------------------------------------- /src/graphql/generated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-lab-02/HEAD/src/graphql/generated.ts -------------------------------------------------------------------------------- /src/graphql/mutations/create-subscriber-mutation.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-lab-02/HEAD/src/graphql/mutations/create-subscriber-mutation.graphql -------------------------------------------------------------------------------- /src/graphql/queries/get-lessons-by-slug-query.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-lab-02/HEAD/src/graphql/queries/get-lessons-by-slug-query.graphql -------------------------------------------------------------------------------- /src/graphql/queries/get-lessons-query.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-lab-02/HEAD/src/graphql/queries/get-lessons-query.graphql -------------------------------------------------------------------------------- /src/lib/apollo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-lab-02/HEAD/src/lib/apollo.ts -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-lab-02/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/pages/Event.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-lab-02/HEAD/src/pages/Event.tsx -------------------------------------------------------------------------------- /src/pages/Subscribe.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-lab-02/HEAD/src/pages/Subscribe.tsx -------------------------------------------------------------------------------- /src/styles/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-lab-02/HEAD/src/styles/global.css -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-lab-02/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-lab-02/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-lab-02/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-lab-02/HEAD/vite.config.ts --------------------------------------------------------------------------------