import Image from "next/image"; import clanLight from "../../public/clan-dark.png"; import clanDark from "../../public/clan-dark.png"; import { useAppState } from "./hooks/useAppContext"; export default function Background() { const { data, isLoading } = useAppState(); return (
{(isLoading || !data.isJoined) && ( <> clan clan )}
); } // position: fixed; // height: 100vh; // width: 100vw; // overflow: hidden; // z-index: -1;