mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-02 19:26:50 -05:00
39 lines
1.3 KiB
TypeScript
39 lines
1.3 KiB
TypeScript
import { Heading } from "@chakra-ui/react";
|
|
import MyLink from "components/common/MyLink";
|
|
import Head from "next/head";
|
|
|
|
const LinkingInfoPage = ({}) => {
|
|
return (
|
|
<>
|
|
<Head>
|
|
<title>How to link placements | sendou.ink</title>
|
|
</Head>
|
|
<>
|
|
<Heading as="h1">How to link</Heading>
|
|
This page explains how you can get your Top 500 and/or League placements
|
|
linked to your sendou.ink user. You need to DM the bot{" "}
|
|
<b>Lanista#5266</b> on{" "}
|
|
<MyLink href="https://discord.gg/sendou" isExternal>
|
|
Discord
|
|
</MyLink>{" "}
|
|
to set it up.
|
|
<br />
|
|
<br />
|
|
Simply DM the bot with <code>!register</code> command and follow
|
|
instructions. If you have problems using Lanista you can DM{" "}
|
|
<b>Lean#3146</b> directly. If you have already used the !register
|
|
command in the past and just need to link now then use the{" "}
|
|
<code>!sendoulink</code> command.
|
|
<br />
|
|
<br />
|
|
Top 500 results update <b>once a month</b> and league results update{" "}
|
|
<b>daily</b>. For Top 500 results you need to finish the month in the
|
|
Top 500 for it to count. League results below league power of 2200 are
|
|
not included.
|
|
</>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default LinkingInfoPage;
|