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 MyLink from "components/common/MyLink"; import { useMyTheme } from "hooks/common"; const About = () => { const { themeColorShade } = useMyTheme(); return ( <>
This site was made by{" "} Sendou {" "} with help from the people below. You can check out{" "} Trello {" "} to see what is happening with development. Feedback 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: Create an issue on{" "} GitHub Post on the #helpdesk or #feedback channel of our{" "} Discord DM me on{" "} Twitter {" "} or Discord (Sendou#0043)
Thanks to
  • Lean {" "} - provided the data for Top 500 X Rank and League
  • zorg {" "} -{" "} provided background pictures of 4v4 maps for the map planner
  • ganbawoomy {" "} - provided the data for tournament browser
  • NoAim™bUrn {" "} - gave plenty of useful feedback
  • borzoic {" "} -{" "} art for the site - front page inkling, icons and footer drawing
  • yuza {" "} - translation (Deutsch)
  • naga {" "} - translation (Español (España))
  • Grey {" "} - translation (Français)
  • Pretto {" "} - translation (Italiano)
  • Volto {" "} - translation (Italiano)
  • Guigas {" "} - translation (Português)
  • Walavouchey {" "} - translation (Svenska)
  • sp9rK {" "} - translation (Ελληνικά)
  • Villy / 앤드류 {" "} - translation (한국어)
  • Shahar {" "} - translation (עברית)
); }; export default About;