mirror of
https://github.com/xHyroM/roles-bot.git
synced 2024-11-12 20:18:06 +01:00
28 lines
No EOL
608 B
TypeScript
28 lines
No EOL
608 B
TypeScript
import Head from 'next/head';
|
|
|
|
export default function Home() {
|
|
return (
|
|
<div>
|
|
<Head>
|
|
<title>Roles Bot</title>
|
|
<link rel="icon" href="logo.ico" />
|
|
</Head>
|
|
|
|
<section>
|
|
<h1>Roles Bot Privacy Policy</h1>
|
|
<h3>Last updated: April 10, 2022</h3>
|
|
<hr />
|
|
|
|
Roles Bot does not collect any informations.
|
|
</section>
|
|
<br/>
|
|
<section>
|
|
<h1>Roles Bot Terms Of Services</h1>
|
|
<h3>Last updated: April 10, 2022</h3>
|
|
<hr />
|
|
|
|
Don't use the bot for bad intentions
|
|
</section>
|
|
</div>
|
|
);
|
|
} |