├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── public ├── _redirects ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── src ├── App.js ├── App.module.css ├── Components │ ├── Anime.md │ ├── Cards │ │ ├── Cards.js │ │ └── Cards.module.css │ ├── CommonComponents │ │ ├── AnimeInfo │ │ │ ├── AnimeInfo.js │ │ │ └── AnimeInfo.module.css │ │ ├── DisplayCommonCard │ │ │ ├── DisplayCommonCard.js │ │ │ └── DisplayCommonCard.module.css │ │ └── MainCommonCard │ │ │ ├── CommonCard.js │ │ │ └── CommonCard.module.css │ ├── Footer │ │ ├── Footer.js │ │ └── Footer.module.css │ ├── Genre │ │ ├── Genre.js │ │ └── Genre.module.css │ ├── GenreCard │ │ ├── GenreCard.js │ │ └── GenreCard.module.css │ ├── Main │ │ ├── Main.js │ │ └── Main.module.css │ ├── Menu │ │ ├── Menu.js │ │ └── Menu.module.css │ ├── SearchBar │ │ ├── SearchBar.js │ │ └── SearchBar.module.css │ ├── SeasonCards │ │ ├── SeasonCards.js │ │ └── SeasonCards.module.css │ ├── SeasonMenu │ │ ├── SeasonMenu.js │ │ └── SeasonMenu.module.css │ ├── TopAnime │ │ ├── TopAnime.js │ │ └── TopAnime.module.css │ ├── UpcomingAnime │ │ ├── UpcomingAnime.js │ │ └── UpcomingAnime.module.css │ ├── anime1.PNG │ ├── anime2.PNG │ ├── anime3.png │ ├── anime4.png │ ├── anime5.png │ └── anime6.png ├── api.js ├── index.js └── tempCodeRunnerFile.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullah-ch/Anime-Tracker-Web-App/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullah-ch/Anime-Tracker-Web-App/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullah-ch/Anime-Tracker-Web-App/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullah-ch/Anime-Tracker-Web-App/HEAD/package.json -------------------------------------------------------------------------------- /public/_redirects: -------------------------------------------------------------------------------- 1 | /* /index.html 200 2 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullah-ch/Anime-Tracker-Web-App/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullah-ch/Anime-Tracker-Web-App/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullah-ch/Anime-Tracker-Web-App/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullah-ch/Anime-Tracker-Web-App/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullah-ch/Anime-Tracker-Web-App/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullah-ch/Anime-Tracker-Web-App/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullah-ch/Anime-Tracker-Web-App/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullah-ch/Anime-Tracker-Web-App/HEAD/src/App.module.css -------------------------------------------------------------------------------- /src/Components/Anime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullah-ch/Anime-Tracker-Web-App/HEAD/src/Components/Anime.md -------------------------------------------------------------------------------- /src/Components/Cards/Cards.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullah-ch/Anime-Tracker-Web-App/HEAD/src/Components/Cards/Cards.js -------------------------------------------------------------------------------- /src/Components/Cards/Cards.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullah-ch/Anime-Tracker-Web-App/HEAD/src/Components/Cards/Cards.module.css -------------------------------------------------------------------------------- /src/Components/CommonComponents/AnimeInfo/AnimeInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullah-ch/Anime-Tracker-Web-App/HEAD/src/Components/CommonComponents/AnimeInfo/AnimeInfo.js -------------------------------------------------------------------------------- /src/Components/CommonComponents/AnimeInfo/AnimeInfo.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullah-ch/Anime-Tracker-Web-App/HEAD/src/Components/CommonComponents/AnimeInfo/AnimeInfo.module.css -------------------------------------------------------------------------------- /src/Components/CommonComponents/DisplayCommonCard/DisplayCommonCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullah-ch/Anime-Tracker-Web-App/HEAD/src/Components/CommonComponents/DisplayCommonCard/DisplayCommonCard.js -------------------------------------------------------------------------------- /src/Components/CommonComponents/DisplayCommonCard/DisplayCommonCard.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullah-ch/Anime-Tracker-Web-App/HEAD/src/Components/CommonComponents/DisplayCommonCard/DisplayCommonCard.module.css -------------------------------------------------------------------------------- /src/Components/CommonComponents/MainCommonCard/CommonCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullah-ch/Anime-Tracker-Web-App/HEAD/src/Components/CommonComponents/MainCommonCard/CommonCard.js -------------------------------------------------------------------------------- /src/Components/CommonComponents/MainCommonCard/CommonCard.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullah-ch/Anime-Tracker-Web-App/HEAD/src/Components/CommonComponents/MainCommonCard/CommonCard.module.css -------------------------------------------------------------------------------- /src/Components/Footer/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullah-ch/Anime-Tracker-Web-App/HEAD/src/Components/Footer/Footer.js -------------------------------------------------------------------------------- /src/Components/Footer/Footer.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullah-ch/Anime-Tracker-Web-App/HEAD/src/Components/Footer/Footer.module.css -------------------------------------------------------------------------------- /src/Components/Genre/Genre.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullah-ch/Anime-Tracker-Web-App/HEAD/src/Components/Genre/Genre.js -------------------------------------------------------------------------------- /src/Components/Genre/Genre.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullah-ch/Anime-Tracker-Web-App/HEAD/src/Components/Genre/Genre.module.css -------------------------------------------------------------------------------- /src/Components/GenreCard/GenreCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullah-ch/Anime-Tracker-Web-App/HEAD/src/Components/GenreCard/GenreCard.js -------------------------------------------------------------------------------- /src/Components/GenreCard/GenreCard.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullah-ch/Anime-Tracker-Web-App/HEAD/src/Components/GenreCard/GenreCard.module.css -------------------------------------------------------------------------------- /src/Components/Main/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullah-ch/Anime-Tracker-Web-App/HEAD/src/Components/Main/Main.js -------------------------------------------------------------------------------- /src/Components/Main/Main.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullah-ch/Anime-Tracker-Web-App/HEAD/src/Components/Main/Main.module.css -------------------------------------------------------------------------------- /src/Components/Menu/Menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullah-ch/Anime-Tracker-Web-App/HEAD/src/Components/Menu/Menu.js -------------------------------------------------------------------------------- /src/Components/Menu/Menu.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullah-ch/Anime-Tracker-Web-App/HEAD/src/Components/Menu/Menu.module.css -------------------------------------------------------------------------------- /src/Components/SearchBar/SearchBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullah-ch/Anime-Tracker-Web-App/HEAD/src/Components/SearchBar/SearchBar.js -------------------------------------------------------------------------------- /src/Components/SearchBar/SearchBar.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullah-ch/Anime-Tracker-Web-App/HEAD/src/Components/SearchBar/SearchBar.module.css -------------------------------------------------------------------------------- /src/Components/SeasonCards/SeasonCards.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullah-ch/Anime-Tracker-Web-App/HEAD/src/Components/SeasonCards/SeasonCards.js -------------------------------------------------------------------------------- /src/Components/SeasonCards/SeasonCards.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullah-ch/Anime-Tracker-Web-App/HEAD/src/Components/SeasonCards/SeasonCards.module.css -------------------------------------------------------------------------------- /src/Components/SeasonMenu/SeasonMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullah-ch/Anime-Tracker-Web-App/HEAD/src/Components/SeasonMenu/SeasonMenu.js -------------------------------------------------------------------------------- /src/Components/SeasonMenu/SeasonMenu.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullah-ch/Anime-Tracker-Web-App/HEAD/src/Components/SeasonMenu/SeasonMenu.module.css -------------------------------------------------------------------------------- /src/Components/TopAnime/TopAnime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullah-ch/Anime-Tracker-Web-App/HEAD/src/Components/TopAnime/TopAnime.js -------------------------------------------------------------------------------- /src/Components/TopAnime/TopAnime.module.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Components/UpcomingAnime/UpcomingAnime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullah-ch/Anime-Tracker-Web-App/HEAD/src/Components/UpcomingAnime/UpcomingAnime.js -------------------------------------------------------------------------------- /src/Components/UpcomingAnime/UpcomingAnime.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullah-ch/Anime-Tracker-Web-App/HEAD/src/Components/UpcomingAnime/UpcomingAnime.module.css -------------------------------------------------------------------------------- /src/Components/anime1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullah-ch/Anime-Tracker-Web-App/HEAD/src/Components/anime1.PNG -------------------------------------------------------------------------------- /src/Components/anime2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullah-ch/Anime-Tracker-Web-App/HEAD/src/Components/anime2.PNG -------------------------------------------------------------------------------- /src/Components/anime3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullah-ch/Anime-Tracker-Web-App/HEAD/src/Components/anime3.png -------------------------------------------------------------------------------- /src/Components/anime4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullah-ch/Anime-Tracker-Web-App/HEAD/src/Components/anime4.png -------------------------------------------------------------------------------- /src/Components/anime5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullah-ch/Anime-Tracker-Web-App/HEAD/src/Components/anime5.png -------------------------------------------------------------------------------- /src/Components/anime6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullah-ch/Anime-Tracker-Web-App/HEAD/src/Components/anime6.png -------------------------------------------------------------------------------- /src/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullah-ch/Anime-Tracker-Web-App/HEAD/src/api.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullah-ch/Anime-Tracker-Web-App/HEAD/src/index.js -------------------------------------------------------------------------------- /src/tempCodeRunnerFile.js: -------------------------------------------------------------------------------- 1 | GenreCard -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullah-ch/Anime-Tracker-Web-App/HEAD/yarn.lock --------------------------------------------------------------------------------