aboutsummaryrefslogtreecommitdiff
path: root/src/lib/Settings/Attributions.svelte
blob: 3947316790f7f384e13f31394f0a4b042e05686f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<details open={false}>
	<summary>Attributions</summary>

	<ul>
		<li>
			<a href="https://anilist.co/" target="_blank">AniList</a>: all but chapter, volume, and
			character birthday data
		</li>
		<li><span id="mangadex">MangaDex</span>: <b>only</b> chapter and volume count data</li>
		<!-- <li>
			<a href="https://www.animecharactersdatabase.com/index.php" target="_blank">
				Anime Characters Database
			</a>: primary character birthday data
		</li> -->
		<!-- <li>
			<a href="https://www.anisearch.com/" target="_blank">aniSearch</a>: secondary character
			birthday data
		</li> -->
		<!-- <li>
			<a href="https://www.mangaupdates.com/" target="">Baka-Updates Magna</a>: manga release data
		</li> -->
		<!-- <li>
			<a href="https://www.wlnupdates.com/">WLN Updates</a>: web & light novel release data
		</li> -->
		<!-- <li>
			<a href="https://subsplease.org/">SubsPlease</a>: subtitle release data
		</li> -->
	</ul>

	<p />

	<p>
		<a href="/">due.moe</a>
		does <b>not</b> host or link to any manga or anime material, and is not affiliated with any of the
		above sites and services.
	</p>
</details>

<style>
	#mangadex {
		filter: blur(2.5px);
		transition: filter 0.25s;
	}

	#mangadex:hover {
		filter: none;
	}
</style>