Files
Shifted/app/success/page.tsx
2026-02-10 01:14:19 +00:00

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>
);
}