├── .eslintrc.json ├── .gitignore ├── README.md ├── next.config.js ├── package.json ├── pages ├── _app.tsx ├── api │ └── hello.ts └── index.tsx ├── public ├── favicon.ico ├── imagens │ └── myteacher.png └── vercel.svg ├── src ├── @types │ └── professor.ts ├── components │ ├── Cabecalho │ │ ├── Cabecalho.style.tsx │ │ └── Cabecalho.tsx │ └── Lista │ │ ├── Lista.style.tsx │ │ └── Lista.tsx ├── hooks │ └── pages │ │ └── useIndex.ts ├── services │ ├── ApiService.ts │ └── FormatadorService.ts └── themes │ └── theme.ts ├── styles ├── Home.module.css └── globals.css └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treinaweb/workshop-myteacher-react/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treinaweb/workshop-myteacher-react/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treinaweb/workshop-myteacher-react/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treinaweb/workshop-myteacher-react/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/api/hello.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treinaweb/workshop-myteacher-react/HEAD/pages/api/hello.ts -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treinaweb/workshop-myteacher-react/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treinaweb/workshop-myteacher-react/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/imagens/myteacher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treinaweb/workshop-myteacher-react/HEAD/public/imagens/myteacher.png -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treinaweb/workshop-myteacher-react/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /src/@types/professor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treinaweb/workshop-myteacher-react/HEAD/src/@types/professor.ts -------------------------------------------------------------------------------- /src/components/Cabecalho/Cabecalho.style.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treinaweb/workshop-myteacher-react/HEAD/src/components/Cabecalho/Cabecalho.style.tsx -------------------------------------------------------------------------------- /src/components/Cabecalho/Cabecalho.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treinaweb/workshop-myteacher-react/HEAD/src/components/Cabecalho/Cabecalho.tsx -------------------------------------------------------------------------------- /src/components/Lista/Lista.style.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treinaweb/workshop-myteacher-react/HEAD/src/components/Lista/Lista.style.tsx -------------------------------------------------------------------------------- /src/components/Lista/Lista.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treinaweb/workshop-myteacher-react/HEAD/src/components/Lista/Lista.tsx -------------------------------------------------------------------------------- /src/hooks/pages/useIndex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treinaweb/workshop-myteacher-react/HEAD/src/hooks/pages/useIndex.ts -------------------------------------------------------------------------------- /src/services/ApiService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treinaweb/workshop-myteacher-react/HEAD/src/services/ApiService.ts -------------------------------------------------------------------------------- /src/services/FormatadorService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treinaweb/workshop-myteacher-react/HEAD/src/services/FormatadorService.ts -------------------------------------------------------------------------------- /src/themes/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treinaweb/workshop-myteacher-react/HEAD/src/themes/theme.ts -------------------------------------------------------------------------------- /styles/Home.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treinaweb/workshop-myteacher-react/HEAD/styles/Home.module.css -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treinaweb/workshop-myteacher-react/HEAD/styles/globals.css -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treinaweb/workshop-myteacher-react/HEAD/tsconfig.json --------------------------------------------------------------------------------