added a success page

This commit is contained in:
Jun-te Kim 2026-01-18 14:47:31 +00:00
parent 4f741841ab
commit 42833cd2eb

View file

@ -0,0 +1,23 @@
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>
);
}