You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
1.9 KiB
JavaScript

import { HtmlHead, PageHead } from '../components/layout';
const Faq = () => {
return (
<div className="container">
<HtmlHead />
<main className="main">
<PageHead />
<h1>TOS</h1>
<p>
This page explains the Terms and Conditions under which the OnLoki service is provided.<br />
I refuse to provide a definition for all the terms or speak lawyerese. If you don't know what a term means, look it up.
</p>
<h2>Conditions to register a subdomain</h2>
<p>
You can only register a subdomain if no other subdomain already registred points to the SNApp's address you provided.<br />
Obviously, you can register a subdomain only if nobody has already registred one with the same name.<br />
Subdomains are served on a first-come-first-serve basis. If a subdomain expires, it can be registred again.
</p>
<h2>Contents limitation</h2>
<p>
Here at OnLoki, we're very serious about not wanting to go to jail.<br />
If your SNApp hosts any kind of content that is illegal under Italian laws, your subdomain will be deleted without warning.<br />
Additionally, you can't have subdomains that point to SNApps that contain: pornography or soft porn, items on sale (both physical and digital), piracy.<br />
If you found a OnLoki subdomain that violates these rules, contact me immediately at <code>massivebox</code> on Session.
</p>
<h2>General rules</h2>
<p>
I can delete any subdomain at any time without any warning if I decide to.<br />
All the information you provide could be held against you in case of an investigation by the authorities.<br />
I might update this page at any point in time without warning, and apply the changes retro-actively.
</p>
</main>
</div>
);
}
export default Faq;