25 lines
683 B
TypeScript
Raw Normal View History

2025-02-22 15:15:04 +07:00
import { Button } from '@headlessui/react'
import { APP } from '~/data/meta'
export default function PopupSuccessPayment() {
return (
2025-02-22 15:15:04 +07:00
<>
<div className="relative flex flex-col items-center justify-center">
<div className="mb-4 p-4 text-center">
2025-02-22 15:15:04 +07:00
<div className="flex justify-center">
<img
src={'/public/images/back-to-home.svg'}
alt={APP.title}
2025-02-22 15:15:04 +07:00
className="h-[300px]"
/>
</div>
2025-02-22 15:15:04 +07:00
<Button className="mt-5 w-full rounded-md bg-[#2E2F7C] py-2 text-white transition hover:bg-blue-800">
Back to Home
2025-02-22 15:15:04 +07:00
</Button>
</div>
</div>
2025-02-22 15:15:04 +07:00
</>
)
}