Files
car-crushers-portal/app/routes/data-request_.verify-dest-account.tsx
T
regalijan b3e5a46a2e
Test, Build, Deploy / Test, Build, and Deploy (push) Successful in 1m15s
Test, Build, Deploy / Create Sentry Release (push) Successful in 7s
*sigh*
2026-06-30 22:03:32 -04:00

35 lines
771 B
TypeScript

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>
);
}