sendou.ink/pages/about.tsx
2021-01-30 13:04:10 +02:00

220 lines
6.2 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Heading, Link, List, ListItem } from "@chakra-ui/react";
import { t, Trans } from "@lingui/macro";
import Breadcrumbs from "components/common/Breadcrumbs";
import MyHead from "components/common/MyHead";
import { useMyTheme } from "hooks/common";
const About = () => {
const { themeColorShade } = useMyTheme();
return (
<>
<MyHead title={t`About`} />
<Breadcrumbs pages={[{ name: t`About` }]} />
<div style={{ marginTop: "1em" }}>
<Heading size="lg" mb="0.5em" fontFamily="'Rubik', sans-serif">
<Trans>Feedback</Trans>
</Heading>
<Trans>
Noticed a bug? Something could be done better? Thought of a new cool
feature you'd like to see on the site? Need help using the site? You
can either:
</Trans>
<List styleType="decimal" m="1em">
<ListItem>
<Trans>
Create an issue on{" "}
<Link
href="https://github.com/Sendouc/sendou.ink/issues"
isExternal
color={themeColorShade}
>
GitHub
</Link>
</Trans>
</ListItem>
<ListItem>
<Trans>
Post on the #helpdesk or #feedback channel of our{" "}
<Link
href="https://discord.gg/sendou"
isExternal
color={themeColorShade}
>
Discord
</Link>
</Trans>
</ListItem>
<ListItem>
<Trans>
DM me on{" "}
<Link
href="https://twitter.com/sendouc"
isExternal
color={themeColorShade}
>
Twitter
</Link>{" "}
or Discord (Sendou#0043)
</Trans>
</ListItem>
</List>
</div>
<div style={{ marginTop: "1em" }}>
<Heading size="lg" mb="0.5em" fontFamily="'Rubik', sans-serif">
<Trans>Thanks to</Trans>
</Heading>
<ul style={{ marginLeft: "1.2em", marginTop: "0.5em" }}>
<li>
<Link
isExternal
color={themeColorShade}
href="https://twitter.com/LeanYoshi"
>
Lean
</Link>{" "}
- <Trans>provided the data for Top 500 X Rank and League</Trans>
</li>
<li>
<Link
isExternal
color={themeColorShade}
href="https://twitter.com/zorg_z0rg_z0r8"
>
zorg
</Link>{" "}
-{" "}
<Trans>
provided background pictures of 4v4 maps for the map planner
</Trans>
</li>
<li>
<Link
isExternal
color={themeColorShade}
href="https://twitter.com/ganbawoomy"
>
ganbawoomy
</Link>{" "}
- <Trans>provided the data for tournament browser</Trans>
</li>
<li>
<Link
isExternal
color={themeColorShade}
href="https://twitter.com/noaim_brn"
>
NoAimbUrn
</Link>{" "}
- <Trans>gave plenty of useful feedback</Trans>
</li>
<li>
<Link
isExternal
color={themeColorShade}
href="https://twitter.com/borzoic_"
>
borzoic
</Link>{" "}
-{" "}
<Trans>
art for the site - front page inkling, icons and footer drawing
</Trans>
</li>
<li>
<Link
isExternal
color={themeColorShade}
href="https://twitter.com/Yuza_i"
>
yuza
</Link>{" "}
- <Trans>translation</Trans> (Deutsch)
</li>
<li>
<Link
isExternal
color={themeColorShade}
href="https://twitter.com/spookyporo"
>
naga
</Link>{" "}
- <Trans>translation</Trans> (Español (España))
</li>
<li>
<Link
isExternal
color={themeColorShade}
href="https://twitter.com/Grey_spl"
>
Grey
</Link>{" "}
- <Trans>translation</Trans> (Français)
</li>
<li>
<Link
isExternal
color={themeColorShade}
href="https://twitter.com/DatPretto"
>
Pretto
</Link>{" "}
- <Trans>translation</Trans> (Italiano)
</li>
<li>
<Link
isExternal
color={themeColorShade}
href="https://twitter.com/VoltoMatte"
>
Volto
</Link>{" "}
- <Trans>translation</Trans> (Italiano)
</li>
<li>
<Link
isExternal
color={themeColorShade}
href="https://twitter.com/Guigas_Jr"
>
Guigas
</Link>{" "}
- <Trans>translation</Trans> (Português)
</li>
<li>
<Link
isExternal
color={themeColorShade}
href="https://twitter.com/Walavouchey"
>
Walavouchey
</Link>{" "}
- <Trans>translation</Trans> (Svenska)
</li>
<li>
<Link
isExternal
color={themeColorShade}
href="https://twitter.com/sp9rK_spl"
>
sp9rK
</Link>{" "}
- <Trans>translation</Trans> (Ελληνικά)
</li>
<li>
<Link
isExternal
color={themeColorShade}
href="https://twitter.com/V_CH3RRY"
>
Villy /
</Link>{" "}
- <Trans>translation</Trans> ()
</li>
</ul>
</div>
</>
);
};
export default About;