├── .eslintrc ├── .github └── workflows │ └── deploy.yml ├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json ├── robots.txt └── university │ └── UFPE │ └── engenhariaDaComputacao.json ├── src ├── App.tsx ├── assets │ └── img │ │ └── peacock-logo.png ├── components │ ├── DisciplineBox │ │ ├── index.css │ │ └── index.tsx │ ├── Footer │ │ └── index.tsx │ ├── Header │ │ └── index.tsx │ ├── Navigator │ │ └── index.tsx │ ├── NextSteps │ │ └── index.tsx │ ├── StatsContainer │ │ └── index.tsx │ └── StatsHours │ │ └── index.tsx ├── index.tsx ├── models │ └── Curriculum.ts ├── react-app-env.d.ts ├── reportWebVitals.ts └── setupTests.ts ├── tsconfig.json └── yarn.lock /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThiagoAugustoSM/visual-curriculum/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThiagoAugustoSM/visual-curriculum/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThiagoAugustoSM/visual-curriculum/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThiagoAugustoSM/visual-curriculum/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThiagoAugustoSM/visual-curriculum/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThiagoAugustoSM/visual-curriculum/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThiagoAugustoSM/visual-curriculum/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThiagoAugustoSM/visual-curriculum/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThiagoAugustoSM/visual-curriculum/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThiagoAugustoSM/visual-curriculum/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThiagoAugustoSM/visual-curriculum/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThiagoAugustoSM/visual-curriculum/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThiagoAugustoSM/visual-curriculum/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/university/UFPE/engenhariaDaComputacao.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThiagoAugustoSM/visual-curriculum/HEAD/public/university/UFPE/engenhariaDaComputacao.json -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThiagoAugustoSM/visual-curriculum/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/assets/img/peacock-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThiagoAugustoSM/visual-curriculum/HEAD/src/assets/img/peacock-logo.png -------------------------------------------------------------------------------- /src/components/DisciplineBox/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThiagoAugustoSM/visual-curriculum/HEAD/src/components/DisciplineBox/index.css -------------------------------------------------------------------------------- /src/components/DisciplineBox/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThiagoAugustoSM/visual-curriculum/HEAD/src/components/DisciplineBox/index.tsx -------------------------------------------------------------------------------- /src/components/Footer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThiagoAugustoSM/visual-curriculum/HEAD/src/components/Footer/index.tsx -------------------------------------------------------------------------------- /src/components/Header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThiagoAugustoSM/visual-curriculum/HEAD/src/components/Header/index.tsx -------------------------------------------------------------------------------- /src/components/Navigator/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThiagoAugustoSM/visual-curriculum/HEAD/src/components/Navigator/index.tsx -------------------------------------------------------------------------------- /src/components/NextSteps/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThiagoAugustoSM/visual-curriculum/HEAD/src/components/NextSteps/index.tsx -------------------------------------------------------------------------------- /src/components/StatsContainer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThiagoAugustoSM/visual-curriculum/HEAD/src/components/StatsContainer/index.tsx -------------------------------------------------------------------------------- /src/components/StatsHours/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThiagoAugustoSM/visual-curriculum/HEAD/src/components/StatsHours/index.tsx -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThiagoAugustoSM/visual-curriculum/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/models/Curriculum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThiagoAugustoSM/visual-curriculum/HEAD/src/models/Curriculum.ts -------------------------------------------------------------------------------- /src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/reportWebVitals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThiagoAugustoSM/visual-curriculum/HEAD/src/reportWebVitals.ts -------------------------------------------------------------------------------- /src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThiagoAugustoSM/visual-curriculum/HEAD/src/setupTests.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThiagoAugustoSM/visual-curriculum/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThiagoAugustoSM/visual-curriculum/HEAD/yarn.lock --------------------------------------------------------------------------------