frontend: added api credits for anilist, mangadex, and mangaupdates

This commit is contained in:
wea_ondara
2023-11-25 18:41:11 +01:00
parent a1b648fc80
commit ab29804572
7 changed files with 90 additions and 13 deletions

View File

@@ -1,15 +1,23 @@
<template>
<div class="about">
<h1>This is an about page</h1>
<div class="p-3 overflow-y-auto">
<div class="mb-3">
<h1>About</h1>
This is small personal project to get an overview what manga have new chapters available and how many.
</div>
<div>
<h2>API credits</h2>
<div>
<img src="https://anilist.co/favicon.ico" alt="AniList logo" height="16" width="16" class="me-1">
<a href="https://anilist.co">AniList</a> (manga images, titles, personal score & progress)
</div>
<div>
<img src="https://mangadex.org/favicon.ico" alt="MangaDex logo" height="16" width="16" class="me-1">
<a href="https://mangadex.org">MangaDex</a> (linking between AniList and MangaUpdates)
</div>
<div>
<img src="https://www.mangaupdates.com/favicon.ico" alt="MangaUpdates logo" height="16" width="16" class="me-1">
<a href="https://www.mangaupdates.com">MangaUpdates</a> (chapter availability)
</div>
</div>
</div>
</template>
<style>
@media (min-width: 1024px) {
.about {
min-height: 100vh;
display: flex;
align-items: center;
}
}
</style>