This commit is contained in:
quantulr
2023-11-08 15:42:55 +08:00
parent 83e7cd3c4d
commit cecc64f366
7 changed files with 22 additions and 6 deletions

View File

@ -1,3 +1,6 @@
import Image from "next/image";
import addressMap from "@/app/_assets/address_map.png";
const Page = () => {
return (
<>
@ -17,6 +20,9 @@ const Page = () => {
D1 7
</p>
<p className={"my-1 indent-8 text-base"}>230022</p>
<p>
<Image className={"mx-auto"} src={addressMap} alt={""} />
</p>
</>
);
};