30 lines
839 B
TypeScript
30 lines
839 B
TypeScript
import { Button } from '@headlessui/react'
|
|
|
|
import HeaderModal from '~/components/popup/header-modal'
|
|
import { APP } from '~/data/meta'
|
|
|
|
export default function PopupSuccessPayment() {
|
|
return (
|
|
<>
|
|
<div className="relative flex flex-col items-center justify-center">
|
|
<HeaderModal>
|
|
<p>Selamat! Pembayaran anda berhasil!</p>
|
|
</HeaderModal>
|
|
|
|
<div className="mb-4 p-4 text-center">
|
|
<div className="flex justify-center">
|
|
<img
|
|
src={'/public/images/back-to-home.svg'}
|
|
alt={APP.title}
|
|
className="h-[300px]"
|
|
/>
|
|
</div>
|
|
<Button className="mt-5 w-full rounded-md bg-[#2E2F7C] py-2 text-white transition hover:bg-blue-800">
|
|
Back to Home
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
</>
|
|
)
|
|
}
|