Skip to content

Commit 782719a

Browse files
committed
Add ToS
1 parent 48c9fb7 commit 782719a

File tree

2 files changed

+50
-0
lines changed

2 files changed

+50
-0
lines changed

components/Footer.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ export default function Footer({ location, marginBottom }: { location: string, m
77
</div>
88
<div className="flex items-center justify-center gap-4">
99
<FormattedLink href="/privacy-policy" location={location}>Privacy Policy</FormattedLink>
10+
<FormattedLink href="/tos" location={location}>Terms of Service</FormattedLink>
1011
<FormattedLink href="/changelog" location={location}>Changelog</FormattedLink>
1112
<FormattedLink href="https://discord.gg/BM3Srp8j8G" location={location} target="discord-invite"> Discord Support Server</FormattedLink>
1213
</div>

pages/tos.tsx

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
import Head from "next/head"
2+
import Main from "../components/Main"
3+
import FormattedLink from "../components/FormattedLink"
4+
5+
export default function ToS({ location }: { location: string }) {
6+
const desc = "Hu Tao's Terms of Service."
7+
8+
return (
9+
<Main>
10+
<Head>
11+
<title>Terms of Service | Hu Tao</title>
12+
<meta name="twitter:card" content="summary" />
13+
<meta property="og:title" content="Terms of Service | Hu Tao" />
14+
<meta property="og:description" content={desc} />
15+
<meta name="description" content={desc} />
16+
</Head>
17+
18+
<h1 className="text-5xl font-bold pb-2">
19+
Terms of Service
20+
</h1>
21+
22+
<p>
23+
Last Updated: May 26th, 2022
24+
</p>
25+
26+
<h2 className="text-3xl font-bold pb-2">
27+
What you can expect from us
28+
</h2>
29+
30+
<p>
31+
We provide a Website (such as <FormattedLink href="/" location={location}>this</FormattedLink> one) and a Discord bot (linked to on <FormattedLink href="/" location={location}>hutaobot.moe</FormattedLink>). These services work together, linking to each other for ease of use and better experience.
32+
</p>
33+
34+
<p>
35+
We reserve the right to block, remove, and/or permanently delete your content, Discord user or server for any reason, including breach of these terms, or any applicable law or regulation.
36+
</p>
37+
38+
<h2 className="text-3xl font-bold pb-2">
39+
What we expect from you
40+
</h2>
41+
42+
<p>
43+
Don&apos;t abuse, harm, interfere with, or otherwise disrupt the services provided by us. This includes, but is not limited to, exploiting any vulnerabilities and/or bugs, spamming the Website or the Discord bot.
44+
</p>
45+
46+
47+
</Main>
48+
)
49+
}

0 commit comments

Comments
 (0)