Files
libnovel/ui/src/routes/disclaimer/+page.svelte
Admin 09981a5f4d
Some checks failed
Deploy / Deploy Production (push) Has been skipped
Deploy / Cleanup Preview (push) Has been skipped
Deploy / Deploy Preview (push) Failing after 1s
CI / Scraper / Lint (pull_request) Successful in 12s
CI / Scraper / Test (pull_request) Successful in 16s
CI / UI / Build (pull_request) Successful in 20s
CI / Scraper / Build (pull_request) Successful in 17s
Add Disclaimer, Privacy, and DMCA pages; update footer with legal links and copyright
2026-03-06 20:15:26 +05:00

35 lines
1.4 KiB
Svelte

<svelte:head>
<title>Disclaimer — libnovel</title>
</svelte:head>
<div class="max-w-2xl mx-auto py-10 px-4">
<h1 class="text-2xl font-bold text-zinc-100 mb-6">Disclaimer</h1>
<div class="space-y-5 text-sm text-zinc-400 leading-relaxed">
<p>
libnovel is a personal reading tool that indexes and caches publicly accessible novel content
from third-party sources, primarily <a href="https://novelfire.net" target="_blank" rel="noopener noreferrer" class="text-amber-400 hover:text-amber-300 transition-colors">novelfire.net</a>.
It is not affiliated with, endorsed by, or in any way officially connected to those sources.
</p>
<p>
All novel titles, cover images, chapter text, and related materials are the property of their
respective authors and publishers. libnovel does not claim ownership of any of this content.
The content is reproduced solely for personal, non-commercial reading convenience.
</p>
<p>
If you are a rights holder and believe your work is being used without authorisation, please
refer to our <a href="/dmca" class="text-amber-400 hover:text-amber-300 transition-colors">DMCA policy</a>
for instructions on how to request removal.
</p>
<p>
libnovel makes no warranties regarding the accuracy, completeness, or timeliness of any
content displayed. Use of this site is at your own risk.
</p>
<p class="text-zinc-600 text-xs mt-8">Last updated: {new Date().getFullYear()}</p>
</div>
</div>