20 lines
530 B
TypeScript
20 lines
530 B
TypeScript
import StaticLogoHeader from "../../components/StaticLogoHeader";
|
|
import Footer from "../../components/Footer";
|
|
|
|
export default function CancelPage() {
|
|
return (
|
|
<main>
|
|
<StaticLogoHeader />
|
|
<section className="section">
|
|
<div className="container info-page">
|
|
<div className="info-page__card">
|
|
<h2>Checkout Canceled</h2>
|
|
<p>Your payment was not completed. You can try again any time.</p>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
<Footer />
|
|
</main>
|
|
);
|
|
}
|