mirror of
https://github.com/velocitatem/PHANTOM.git
synced 2026-07-16 01:53:37 +00:00
* fix: fixes of backwords * fixing hotel information with image placeholders * chore: clean up product display in hotel and cleaner interfacing * adding loader with historical data loading * feature: cleaning up pipeline * chore: simple surge pricer * created new pricing pipeline * adding a checkout page to both sites * fix: fixing stale pacakge * test: we wont be using elasticity anymore so its okay * chore: cleaning elasticity references * chore: store sting * feature: e2e intro pipline surge pricing * fix: CVE vulnerability patching
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>
|
|
);
|
|
}
|