├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── Untitled design (1).png ├── companies ├── a.md ├── b.md ├── c.md ├── d.md ├── e.md ├── f.md ├── g.md ├── h.md ├── i.md ├── j.md ├── k.md ├── l.md ├── m.md ├── n.md ├── o.md ├── others.md ├── p.md ├── q.md ├── r.md ├── s.md ├── t.md ├── u.md ├── v.md ├── w.md ├── x.md ├── y.md └── z.md └── src ├── assets ├── arrow-up.png ├── copyright.png ├── external-link.png ├── favicon.png ├── github.png └── landing.png ├── company.png ├── index.html ├── script.js ├── style.css └── techCompanies ├── index.js └── orderByAlphabeth ├── a.js ├── b.js ├── c.js ├── d.js ├── e.js ├── f.js ├── g.js ├── h.js ├── i.js ├── j.js ├── k.js ├── l.js ├── m.js ├── n.js ├── o.js ├── others.js ├── p.js ├── q.js ├── r.js ├── s.js ├── t.js ├── u.js ├── v.js ├── w.js ├── x.js ├── y.js └── z.js /.gitignore: -------------------------------------------------------------------------------- 1 | *.py 2 | *.ipynb 3 | .vscode 4 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCA-Ado-Ekiti/tech-companies-in-africa/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCA-Ado-Ekiti/tech-companies-in-africa/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCA-Ado-Ekiti/tech-companies-in-africa/HEAD/README.md -------------------------------------------------------------------------------- /Untitled design (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCA-Ado-Ekiti/tech-companies-in-africa/HEAD/Untitled design (1).png -------------------------------------------------------------------------------- /companies/a.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCA-Ado-Ekiti/tech-companies-in-africa/HEAD/companies/a.md -------------------------------------------------------------------------------- /companies/b.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCA-Ado-Ekiti/tech-companies-in-africa/HEAD/companies/b.md -------------------------------------------------------------------------------- /companies/c.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCA-Ado-Ekiti/tech-companies-in-africa/HEAD/companies/c.md -------------------------------------------------------------------------------- /companies/d.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCA-Ado-Ekiti/tech-companies-in-africa/HEAD/companies/d.md -------------------------------------------------------------------------------- /companies/e.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCA-Ado-Ekiti/tech-companies-in-africa/HEAD/companies/e.md -------------------------------------------------------------------------------- /companies/f.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCA-Ado-Ekiti/tech-companies-in-africa/HEAD/companies/f.md -------------------------------------------------------------------------------- /companies/g.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCA-Ado-Ekiti/tech-companies-in-africa/HEAD/companies/g.md -------------------------------------------------------------------------------- /companies/h.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCA-Ado-Ekiti/tech-companies-in-africa/HEAD/companies/h.md -------------------------------------------------------------------------------- /companies/i.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCA-Ado-Ekiti/tech-companies-in-africa/HEAD/companies/i.md -------------------------------------------------------------------------------- /companies/j.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCA-Ado-Ekiti/tech-companies-in-africa/HEAD/companies/j.md -------------------------------------------------------------------------------- /companies/k.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCA-Ado-Ekiti/tech-companies-in-africa/HEAD/companies/k.md -------------------------------------------------------------------------------- /companies/l.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCA-Ado-Ekiti/tech-companies-in-africa/HEAD/companies/l.md -------------------------------------------------------------------------------- /companies/m.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCA-Ado-Ekiti/tech-companies-in-africa/HEAD/companies/m.md -------------------------------------------------------------------------------- /companies/n.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCA-Ado-Ekiti/tech-companies-in-africa/HEAD/companies/n.md -------------------------------------------------------------------------------- /companies/o.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCA-Ado-Ekiti/tech-companies-in-africa/HEAD/companies/o.md -------------------------------------------------------------------------------- /companies/others.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCA-Ado-Ekiti/tech-companies-in-africa/HEAD/companies/others.md -------------------------------------------------------------------------------- /companies/p.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCA-Ado-Ekiti/tech-companies-in-africa/HEAD/companies/p.md -------------------------------------------------------------------------------- /companies/q.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCA-Ado-Ekiti/tech-companies-in-africa/HEAD/companies/q.md -------------------------------------------------------------------------------- /companies/r.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCA-Ado-Ekiti/tech-companies-in-africa/HEAD/companies/r.md -------------------------------------------------------------------------------- /companies/s.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCA-Ado-Ekiti/tech-companies-in-africa/HEAD/companies/s.md -------------------------------------------------------------------------------- /companies/t.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCA-Ado-Ekiti/tech-companies-in-africa/HEAD/companies/t.md -------------------------------------------------------------------------------- /companies/u.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCA-Ado-Ekiti/tech-companies-in-africa/HEAD/companies/u.md -------------------------------------------------------------------------------- /companies/v.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCA-Ado-Ekiti/tech-companies-in-africa/HEAD/companies/v.md -------------------------------------------------------------------------------- /companies/w.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCA-Ado-Ekiti/tech-companies-in-africa/HEAD/companies/w.md -------------------------------------------------------------------------------- /companies/x.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCA-Ado-Ekiti/tech-companies-in-africa/HEAD/companies/x.md -------------------------------------------------------------------------------- /companies/y.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCA-Ado-Ekiti/tech-companies-in-africa/HEAD/companies/y.md -------------------------------------------------------------------------------- /companies/z.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCA-Ado-Ekiti/tech-companies-in-africa/HEAD/companies/z.md -------------------------------------------------------------------------------- /src/assets/arrow-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCA-Ado-Ekiti/tech-companies-in-africa/HEAD/src/assets/arrow-up.png -------------------------------------------------------------------------------- /src/assets/copyright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCA-Ado-Ekiti/tech-companies-in-africa/HEAD/src/assets/copyright.png -------------------------------------------------------------------------------- /src/assets/external-link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCA-Ado-Ekiti/tech-companies-in-africa/HEAD/src/assets/external-link.png -------------------------------------------------------------------------------- /src/assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCA-Ado-Ekiti/tech-companies-in-africa/HEAD/src/assets/favicon.png -------------------------------------------------------------------------------- /src/assets/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCA-Ado-Ekiti/tech-companies-in-africa/HEAD/src/assets/github.png -------------------------------------------------------------------------------- /src/assets/landing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCA-Ado-Ekiti/tech-companies-in-africa/HEAD/src/assets/landing.png -------------------------------------------------------------------------------- /src/company.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCA-Ado-Ekiti/tech-companies-in-africa/HEAD/src/company.png -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCA-Ado-Ekiti/tech-companies-in-africa/HEAD/src/index.html -------------------------------------------------------------------------------- /src/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCA-Ado-Ekiti/tech-companies-in-africa/HEAD/src/script.js -------------------------------------------------------------------------------- /src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCA-Ado-Ekiti/tech-companies-in-africa/HEAD/src/style.css -------------------------------------------------------------------------------- /src/techCompanies/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCA-Ado-Ekiti/tech-companies-in-africa/HEAD/src/techCompanies/index.js -------------------------------------------------------------------------------- /src/techCompanies/orderByAlphabeth/a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCA-Ado-Ekiti/tech-companies-in-africa/HEAD/src/techCompanies/orderByAlphabeth/a.js -------------------------------------------------------------------------------- /src/techCompanies/orderByAlphabeth/b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCA-Ado-Ekiti/tech-companies-in-africa/HEAD/src/techCompanies/orderByAlphabeth/b.js -------------------------------------------------------------------------------- /src/techCompanies/orderByAlphabeth/c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCA-Ado-Ekiti/tech-companies-in-africa/HEAD/src/techCompanies/orderByAlphabeth/c.js -------------------------------------------------------------------------------- /src/techCompanies/orderByAlphabeth/d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCA-Ado-Ekiti/tech-companies-in-africa/HEAD/src/techCompanies/orderByAlphabeth/d.js -------------------------------------------------------------------------------- /src/techCompanies/orderByAlphabeth/e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCA-Ado-Ekiti/tech-companies-in-africa/HEAD/src/techCompanies/orderByAlphabeth/e.js -------------------------------------------------------------------------------- /src/techCompanies/orderByAlphabeth/f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCA-Ado-Ekiti/tech-companies-in-africa/HEAD/src/techCompanies/orderByAlphabeth/f.js -------------------------------------------------------------------------------- /src/techCompanies/orderByAlphabeth/g.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCA-Ado-Ekiti/tech-companies-in-africa/HEAD/src/techCompanies/orderByAlphabeth/g.js -------------------------------------------------------------------------------- /src/techCompanies/orderByAlphabeth/h.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCA-Ado-Ekiti/tech-companies-in-africa/HEAD/src/techCompanies/orderByAlphabeth/h.js -------------------------------------------------------------------------------- /src/techCompanies/orderByAlphabeth/i.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCA-Ado-Ekiti/tech-companies-in-africa/HEAD/src/techCompanies/orderByAlphabeth/i.js -------------------------------------------------------------------------------- /src/techCompanies/orderByAlphabeth/j.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCA-Ado-Ekiti/tech-companies-in-africa/HEAD/src/techCompanies/orderByAlphabeth/j.js -------------------------------------------------------------------------------- /src/techCompanies/orderByAlphabeth/k.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCA-Ado-Ekiti/tech-companies-in-africa/HEAD/src/techCompanies/orderByAlphabeth/k.js -------------------------------------------------------------------------------- /src/techCompanies/orderByAlphabeth/l.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCA-Ado-Ekiti/tech-companies-in-africa/HEAD/src/techCompanies/orderByAlphabeth/l.js -------------------------------------------------------------------------------- /src/techCompanies/orderByAlphabeth/m.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCA-Ado-Ekiti/tech-companies-in-africa/HEAD/src/techCompanies/orderByAlphabeth/m.js -------------------------------------------------------------------------------- /src/techCompanies/orderByAlphabeth/n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCA-Ado-Ekiti/tech-companies-in-africa/HEAD/src/techCompanies/orderByAlphabeth/n.js -------------------------------------------------------------------------------- /src/techCompanies/orderByAlphabeth/o.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCA-Ado-Ekiti/tech-companies-in-africa/HEAD/src/techCompanies/orderByAlphabeth/o.js -------------------------------------------------------------------------------- /src/techCompanies/orderByAlphabeth/others.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCA-Ado-Ekiti/tech-companies-in-africa/HEAD/src/techCompanies/orderByAlphabeth/others.js -------------------------------------------------------------------------------- /src/techCompanies/orderByAlphabeth/p.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCA-Ado-Ekiti/tech-companies-in-africa/HEAD/src/techCompanies/orderByAlphabeth/p.js -------------------------------------------------------------------------------- /src/techCompanies/orderByAlphabeth/q.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCA-Ado-Ekiti/tech-companies-in-africa/HEAD/src/techCompanies/orderByAlphabeth/q.js -------------------------------------------------------------------------------- /src/techCompanies/orderByAlphabeth/r.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCA-Ado-Ekiti/tech-companies-in-africa/HEAD/src/techCompanies/orderByAlphabeth/r.js -------------------------------------------------------------------------------- /src/techCompanies/orderByAlphabeth/s.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCA-Ado-Ekiti/tech-companies-in-africa/HEAD/src/techCompanies/orderByAlphabeth/s.js -------------------------------------------------------------------------------- /src/techCompanies/orderByAlphabeth/t.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCA-Ado-Ekiti/tech-companies-in-africa/HEAD/src/techCompanies/orderByAlphabeth/t.js -------------------------------------------------------------------------------- /src/techCompanies/orderByAlphabeth/u.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCA-Ado-Ekiti/tech-companies-in-africa/HEAD/src/techCompanies/orderByAlphabeth/u.js -------------------------------------------------------------------------------- /src/techCompanies/orderByAlphabeth/v.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCA-Ado-Ekiti/tech-companies-in-africa/HEAD/src/techCompanies/orderByAlphabeth/v.js -------------------------------------------------------------------------------- /src/techCompanies/orderByAlphabeth/w.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCA-Ado-Ekiti/tech-companies-in-africa/HEAD/src/techCompanies/orderByAlphabeth/w.js -------------------------------------------------------------------------------- /src/techCompanies/orderByAlphabeth/x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCA-Ado-Ekiti/tech-companies-in-africa/HEAD/src/techCompanies/orderByAlphabeth/x.js -------------------------------------------------------------------------------- /src/techCompanies/orderByAlphabeth/y.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCA-Ado-Ekiti/tech-companies-in-africa/HEAD/src/techCompanies/orderByAlphabeth/y.js -------------------------------------------------------------------------------- /src/techCompanies/orderByAlphabeth/z.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCA-Ado-Ekiti/tech-companies-in-africa/HEAD/src/techCompanies/orderByAlphabeth/z.js --------------------------------------------------------------------------------