25 lines
889 B
TypeScript
25 lines
889 B
TypeScript
import Link from "next/link"
|
|
import { Button } from "@/components/ui/button"
|
|
import { Card, CardContent } from "@/components/ui/card"
|
|
import { XCircle } from "lucide-react"
|
|
|
|
export default function CancelPage() {
|
|
return (
|
|
<div className="min-h-screen bg-gray-50 flex items-center justify-center px-4">
|
|
<Card className="max-w-md w-full">
|
|
<CardContent className="p-8 text-center">
|
|
<XCircle className="w-16 h-16 text-gray-400 mx-auto mb-6" />
|
|
<h1 className="text-2xl font-bold text-gray-900 mb-4">Donation Cancelled</h1>
|
|
<p className="text-gray-600 mb-6">
|
|
No worries! You can always come back to support Jerry and the Alert Bay Trumpeter mission later.
|
|
</p>
|
|
|
|
<Link href="/">
|
|
<Button className="w-full">Return to Home</Button>
|
|
</Link>
|
|
</CardContent>
|
|
</Card>
|
|
</div>
|
|
)
|
|
}
|