mirror of
https://github.com/velocitatem/PHANTOM.git
synced 2026-05-31 08:33:36 +00:00
12 lines
354 B
TypeScript
12 lines
354 B
TypeScript
export default function HotelCheckout() {
|
|
return (
|
|
<div className="min-h-screen flex items-center justify-center bg-gradient-to-br from-blue-50 to-indigo-50">
|
|
<div className="text-center p-8">
|
|
<h1 className="text-4xl font-light text-gray-800 mb-4">
|
|
Thank you for staying with us
|
|
</h1>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|