23 lines
625 B
TypeScript
23 lines
625 B
TypeScript
export default function StripeSuccessPage() {
|
|
return (
|
|
<div className="min-h-screen flex items-center justify-center">
|
|
<div className="max-w-md text-center space-y-4">
|
|
<h1 className="text-2xl font-semibold">
|
|
Stripe Connected 🎉
|
|
</h1>
|
|
|
|
<p className="text-gray-600">
|
|
Your Stripe account has been successfully connected.
|
|
You can now receive payments.
|
|
</p>
|
|
|
|
<a
|
|
href="/dashboard"
|
|
className="inline-block rounded-md bg-black px-4 py-2 text-white"
|
|
>
|
|
Go to dashboard
|
|
</a>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|