Files

23 lines
574 B
TypeScript
Raw Normal View History

2023-10-30 17:29:35 +08:00
import Image from "next/image";
2023-10-29 22:25:16 +08:00
const Page = () => {
2023-10-30 17:29:35 +08:00
return (
<>
{" "}
<h2 className={"text-center text-lg font-bold text-[#054786]"}>
</h2>
<p className={"text-base mt-8 text-center"}></p>
<p className={"flex justify-center mt-2"}>
<img
src={`${process.env.NEXT_ADMIN_BASE_URL}/uploads/image/20231030/8d05e613-e2c6-47d1-81a9-08bd70b8ba73.jpeg`}
alt={"张景中"}
/>
</p>
<p className={"text-center"}></p>
</>
);
2023-10-29 22:25:16 +08:00
};
export default Page;