20 lines
534 B
TypeScript
20 lines
534 B
TypeScript
import StaticLogoHeader from "../../components/StaticLogoHeader";
|
|
import Footer from "../../components/Footer";
|
|
|
|
export default function SuccessPage() {
|
|
return (
|
|
<main>
|
|
<StaticLogoHeader />
|
|
<section className="section">
|
|
<div className="container info-page">
|
|
<div className="info-page__card">
|
|
<h2>Payment Successful</h2>
|
|
<p>Thanks for your purchase. A confirmation email is on the way.</p>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
<Footer />
|
|
</main>
|
|
);
|
|
}
|