24 lines
972 B
Vue
24 lines
972 B
Vue
<template>
|
|
<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>
|