Add same-account detect page for transfers

This commit is contained in:
2026-06-30 21:55:52 -04:00
parent 9178ce19ac
commit 77e1ce2310
@@ -0,0 +1,24 @@
import { Button, Card, Container, Heading, Text, VStack } from "@chakra-ui/react";
export default function () {
return (
<Container pt="16vh">
<Card borderRadius="32px" p="4vh">
<VStack alignContent="center" gap="2vh">
<Heading>Transfer Failed</Heading>
<br />
<Text>You verified with the same account that you submitted this request from. Please try again, and remember to switch accounts.</Text>
<br />
<Button
as="a"
borderRadius="24px"
colorScheme="blue"
href="/api/data-transfers/verify"
>
Try Again
</Button>
</VStack>
</Card>
</Container>
);
}