import { Box, Flex, Heading, useColorMode } from "@chakra-ui/react";
import { t, Trans } from "@lingui/macro";
import MyLink from "components/common/MyLink";
import { useMyTheme } from "hooks/common";
import Image from "next/image";
import Link from "next/link";
import { useState } from "react";
const Home = () => {
const { gray } = useMyTheme();
const { colorMode } = useColorMode();
const [rgb, setRgb] = useState(false);
return (
<>
{/* */}
setRgb(true)}
/>
Sendou.inkCompetitive Splatoon Hub
<>
Conveniently browse Top 500 results. There are also tier lists to
see which weapons are reigning in each mode.
Get into Overfishing and climb up the leaderboards. Guides included
to get you started.
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.
Find your next teammates.Make a page for your team.Make your battle plans by drawing on over 100 maps.
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;