16 lines
440 B
JavaScript
16 lines
440 B
JavaScript
import Image from "next/image";
|
|
import CodeSample from "@/public/assets/images/default-qr-code.png";
|
|
|
|
function QrCode() {
|
|
return (
|
|
<div className="flex items-center flex-col justify-center mt-[100%]">
|
|
<Image className="mt-[100%]" src={CodeSample} width={167} height={167} />
|
|
<p className="text-[#3987D4] font-semibold text-[16px] mt-[32px]">
|
|
nobat724/ahwaz.com
|
|
</p>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default QrCode;
|