Files
quantulr cecc64f366 update
2023-11-08 15:42:55 +08:00

31 lines
943 B
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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