23 lines
619 B
TypeScript
23 lines
619 B
TypeScript
export default function StripeRefreshPage() {
|
|
return (
|
|
<div className="min-h-screen flex items-center justify-center">
|
|
<div className="max-w-md text-center space-y-4">
|
|
<h1 className="text-xl font-semibold">
|
|
Stripe connection incomplete
|
|
</h1>
|
|
|
|
<p className="text-gray-600">
|
|
Something interrupted the Stripe onboarding.
|
|
Please try again.
|
|
</p>
|
|
|
|
<a
|
|
href="/connect/stripe"
|
|
className="inline-block rounded-md bg-black px-4 py-2 text-white"
|
|
>
|
|
Retry Stripe setup
|
|
</a>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|