update pay function

This commit is contained in:
2025-11-22 08:57:37 +08:00
parent 295f179147
commit 43446f8034
210 changed files with 8236 additions and 5345 deletions

View File

@@ -0,0 +1,28 @@
import { useState } from "react";
import Image from "@/components/Image";
import ModalView from "@/components/ModalView";
const SoloImage = ({}) => {
const [open, setOpen] = useState(false);
return (
<>
<div className="cursor-pointer" onClick={() => setOpen(true)}>
<Image
className="w-full rounded-xl"
src="/images/image-1.jpg"
width={731}
height={418}
alt=""
/>
</div>
<ModalView
open={open}
onClose={() => setOpen(false)}
image="/images/image-1.jpg"
/>
</>
);
};
export default SoloImage;