import {
HStack,
MetaButton,
MetaHeading,
Stack,
Text,
useToast,
} from '@metafam/ds';
import { ConnectToProgress, MetaGameLogo } from '#components/ConnectToProgress';
import { FlexContainer } from '#components/Container';
import { MetaLink } from '#components/Link';
import { PlayerTile } from '#components/Player/PlayerTile';
import { useUser, useWeb3 } from '#lib/hooks';
export const SetupDone: React.FC = () => {
const { user } = useUser();
const { connected } = useWeb3();
const toast = useToast();
if (!user || !connected) {
return (
);
}
return (
Game On!
Congrats on your MyMeta, you'll love the customization options!
But for now - plug yourself into MetaGame, we look forward to
meeting you! 🤗
{
if (!navigator.clipboard) {
return;
}
navigator.clipboard.writeText(`${window.location.href}`);
toast({
title: 'Copied to clipboard!',
description: 'Share this link with your friends!',
status: 'success',
duration: 4000,
isClosable: true,
});
}}
>
Share
Proceed
);
};