├── .gitignore ├── LICENSE ├── README.md ├── debug.log ├── package.json ├── public ├── assets │ ├── img │ │ ├── ad.jpg │ │ ├── favicon.jpg │ │ ├── fist.jpg │ │ ├── groupphoto.jpg │ │ └── rinuu.jpg │ └── svg │ │ ├── flag.svg │ │ ├── quill.svg │ │ └── twitter.svg ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── src ├── App.css ├── App.js ├── App.test.js ├── assets │ └── 1.jpg ├── components │ ├── header │ │ ├── Header.jsx │ │ └── Header.module.css │ ├── hero │ │ ├── Hero.jsx │ │ └── Hero.module.css │ ├── politician │ │ ├── Politician.jsx │ │ └── Politician.module.css │ ├── popup │ │ ├── Popup.jsx │ │ └── Popup.module.css │ └── typewriter │ │ └── index.js ├── index.js ├── logo.svg ├── mockData.js ├── pages │ ├── complaint │ │ ├── Complaint.jsx │ │ ├── Complaint.module.css │ │ └── messages.js │ ├── home │ │ ├── Handles.js │ │ ├── Home.jsx │ │ ├── Home.module.css │ │ ├── TweetTemplates.js │ │ ├── broadcast.js │ │ ├── flutterwave.js │ │ └── greetings.js │ └── politicians │ │ ├── Politicians.jsx │ │ ├── Politicians.module.css │ │ └── Senators.js ├── serviceWorker.js ├── setupTests.js └── shared │ └── gtag │ └── index.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadetXx/endsars/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadetXx/endsars/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadetXx/endsars/HEAD/README.md -------------------------------------------------------------------------------- /debug.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadetXx/endsars/HEAD/debug.log -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadetXx/endsars/HEAD/package.json -------------------------------------------------------------------------------- /public/assets/img/ad.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadetXx/endsars/HEAD/public/assets/img/ad.jpg -------------------------------------------------------------------------------- /public/assets/img/favicon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadetXx/endsars/HEAD/public/assets/img/favicon.jpg -------------------------------------------------------------------------------- /public/assets/img/fist.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadetXx/endsars/HEAD/public/assets/img/fist.jpg -------------------------------------------------------------------------------- /public/assets/img/groupphoto.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadetXx/endsars/HEAD/public/assets/img/groupphoto.jpg -------------------------------------------------------------------------------- /public/assets/img/rinuu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadetXx/endsars/HEAD/public/assets/img/rinuu.jpg -------------------------------------------------------------------------------- /public/assets/svg/flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadetXx/endsars/HEAD/public/assets/svg/flag.svg -------------------------------------------------------------------------------- /public/assets/svg/quill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadetXx/endsars/HEAD/public/assets/svg/quill.svg -------------------------------------------------------------------------------- /public/assets/svg/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadetXx/endsars/HEAD/public/assets/svg/twitter.svg -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadetXx/endsars/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadetXx/endsars/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadetXx/endsars/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadetXx/endsars/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadetXx/endsars/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadetXx/endsars/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadetXx/endsars/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadetXx/endsars/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadetXx/endsars/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/assets/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadetXx/endsars/HEAD/src/assets/1.jpg -------------------------------------------------------------------------------- /src/components/header/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadetXx/endsars/HEAD/src/components/header/Header.jsx -------------------------------------------------------------------------------- /src/components/header/Header.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadetXx/endsars/HEAD/src/components/header/Header.module.css -------------------------------------------------------------------------------- /src/components/hero/Hero.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadetXx/endsars/HEAD/src/components/hero/Hero.jsx -------------------------------------------------------------------------------- /src/components/hero/Hero.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadetXx/endsars/HEAD/src/components/hero/Hero.module.css -------------------------------------------------------------------------------- /src/components/politician/Politician.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadetXx/endsars/HEAD/src/components/politician/Politician.jsx -------------------------------------------------------------------------------- /src/components/politician/Politician.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadetXx/endsars/HEAD/src/components/politician/Politician.module.css -------------------------------------------------------------------------------- /src/components/popup/Popup.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadetXx/endsars/HEAD/src/components/popup/Popup.jsx -------------------------------------------------------------------------------- /src/components/popup/Popup.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadetXx/endsars/HEAD/src/components/popup/Popup.module.css -------------------------------------------------------------------------------- /src/components/typewriter/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadetXx/endsars/HEAD/src/components/typewriter/index.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadetXx/endsars/HEAD/src/index.js -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadetXx/endsars/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/mockData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadetXx/endsars/HEAD/src/mockData.js -------------------------------------------------------------------------------- /src/pages/complaint/Complaint.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadetXx/endsars/HEAD/src/pages/complaint/Complaint.jsx -------------------------------------------------------------------------------- /src/pages/complaint/Complaint.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadetXx/endsars/HEAD/src/pages/complaint/Complaint.module.css -------------------------------------------------------------------------------- /src/pages/complaint/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadetXx/endsars/HEAD/src/pages/complaint/messages.js -------------------------------------------------------------------------------- /src/pages/home/Handles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadetXx/endsars/HEAD/src/pages/home/Handles.js -------------------------------------------------------------------------------- /src/pages/home/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadetXx/endsars/HEAD/src/pages/home/Home.jsx -------------------------------------------------------------------------------- /src/pages/home/Home.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadetXx/endsars/HEAD/src/pages/home/Home.module.css -------------------------------------------------------------------------------- /src/pages/home/TweetTemplates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadetXx/endsars/HEAD/src/pages/home/TweetTemplates.js -------------------------------------------------------------------------------- /src/pages/home/broadcast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadetXx/endsars/HEAD/src/pages/home/broadcast.js -------------------------------------------------------------------------------- /src/pages/home/flutterwave.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadetXx/endsars/HEAD/src/pages/home/flutterwave.js -------------------------------------------------------------------------------- /src/pages/home/greetings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadetXx/endsars/HEAD/src/pages/home/greetings.js -------------------------------------------------------------------------------- /src/pages/politicians/Politicians.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadetXx/endsars/HEAD/src/pages/politicians/Politicians.jsx -------------------------------------------------------------------------------- /src/pages/politicians/Politicians.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadetXx/endsars/HEAD/src/pages/politicians/Politicians.module.css -------------------------------------------------------------------------------- /src/pages/politicians/Senators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadetXx/endsars/HEAD/src/pages/politicians/Senators.js -------------------------------------------------------------------------------- /src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadetXx/endsars/HEAD/src/serviceWorker.js -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadetXx/endsars/HEAD/src/setupTests.js -------------------------------------------------------------------------------- /src/shared/gtag/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadetXx/endsars/HEAD/src/shared/gtag/index.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadetXx/endsars/HEAD/yarn.lock --------------------------------------------------------------------------------