import { Box, Container, Flex, Heading, useColorMode } from "@chakra-ui/react";
import { t, Trans } from "@lingui/macro";
import MyHead from "components/common/MyHead";
import MyLink from "components/common/MyLink";
import { useMyTheme } from "lib/useMyTheme";
import Image from "next/image";
import Link from "next/link";
const Home = () => {
const { gray } = useMyTheme();
const { colorMode } = useColorMode();
return (
<>
Sendou.ink
Competitive Splatoon Hub
Conveniently browse Top 500 results. There are also tier lists to
see which weapons are reigning in each mode.
View builds by some of the best players in the world and submit your
own.
What exactly is the effect of your builds? Guess no more.
You can make your own page. Use this tool to find other users'
pages.
All the events happening in the community in one place.Find your next teammates.Make your battle plans by drawing on over 100 maps.
Data on tournaments spanning over years gathered by ganbawoomy.
Information related to +1 and +2. Voting results, suggested players
and FAQ.
There are a lot of useful Splatoon resouces. This page collects them
together.
All art by{" "}
borzoic
>
);
function PageInfoSection({
location,
title,
children,
}: {
location: string;
title: string;
children: React.ReactNode;
}) {
return (
{title}
{children}
);
}
};
export default Home;