added a success page
This commit is contained in:
parent
4f741841ab
commit
42833cd2eb
1 changed files with 23 additions and 0 deletions
23
stripe_to_invoice/app/connect/stripe/success/page.tsx
Normal file
23
stripe_to_invoice/app/connect/stripe/success/page.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue