fix success topup

This commit is contained in:
songtianlun 2025-08-27 23:16:09 +08:00
parent 4c953dbe5f
commit a73a101d9e

View File

@ -83,16 +83,18 @@ export default function CreditTopupSuccess() {
{amount && `$${amount} has been added to your account`} {amount && `$${amount} has been added to your account`}
</CardDescription> </CardDescription>
</CardHeader> </CardHeader>
<CardContent className="space-y-4"> <CardContent className="space-y-6">
<p className="text-center text-muted-foreground"> <p className="text-center text-muted-foreground">
Your credit top-up has been processed successfully. The credits have been added to your account. Your credit top-up has been processed successfully. The credits have been added to your account.
</p> </p>
<Link href="/credits" className="w-full"> <div className="flex flex-col gap-3">
<Button className="w-full">View Credits</Button> <Link href="/credits" className="block">
</Link> <Button className="w-full">View Credits</Button>
<Link href="/prompts" className="w-full"> </Link>
<Button variant="outline" className="w-full">Continue to Prompts</Button> <Link href="/studio" className="block">
</Link> <Button variant="outline" className="w-full">Continue to Studio</Button>
</Link>
</div>
</CardContent> </CardContent>
</Card> </Card>
</div> </div>