juntekim.com/stripe_to_invoice/app/connect/stripe/refresh/page.tsx
2026-01-18 15:13:45 +00:00

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