Files

31 lines
943 B
TypeScript
Raw Permalink Normal View History

2023-11-08 15:42:55 +08:00
import Image from "next/image";
import addressMap from "@/app/_assets/address_map.png";
2023-11-01 17:27:06 +08:00
const Page = () => {
return (
<>
2023-11-03 17:25:10 +08:00
<h2 className={"mb-8 text-center text-lg font-bold text-[#054786]"}>
2023-11-01 17:27:06 +08:00
</h2>
2023-11-03 17:25:10 +08:00
<p className={"my-1 indent-8 text-base"}>
2023-11-01 17:27:06 +08:00
绿
</p>
2023-11-03 17:25:10 +08:00
<p className={"my-1 indent-8 text-base"}>
2023-11-01 17:27:06 +08:00
8:3018:00
</p>
2023-11-03 17:25:10 +08:00
<p className={"my-1 indent-8 text-base"}>
2023-11-01 17:27:06 +08:00
18156053255 18156054143
</p>
2023-11-03 17:25:10 +08:00
<p className={"my-1 indent-8 text-base"}>
2023-11-01 17:27:06 +08:00
D1 7
</p>
2023-11-03 17:25:10 +08:00
<p className={"my-1 indent-8 text-base"}>230022</p>
2023-11-08 15:42:55 +08:00
<p>
<Image className={"mx-auto"} src={addressMap} alt={""} />
</p>
2023-11-01 17:27:06 +08:00
</>
);
};
export default Page;