Files

21 lines
570 B
TypeScript
Raw Normal View History

2023-10-30 17:29:35 +08:00
import Image from "next/image";
2023-11-01 17:27:06 +08:00
import ArticleHeading from "@/app/components/ArticleHeading";
2023-10-30 17:29:35 +08:00
2023-10-29 22:25:16 +08:00
const Page = () => {
2023-10-30 17:29:35 +08:00
return (
<>
2023-11-01 17:27:06 +08:00
<ArticleHeading text={"两院院士"} />
2023-11-03 17:25:10 +08:00
<p className={"text-center text-base"}></p>
<p className={"mt-2 flex justify-center"}>
2023-10-30 17:29:35 +08:00
<img
2023-11-01 17:27:06 +08:00
src={`${process.env.NEXT_PUBLIC_ADMIN_BASE_URL}/uploads/image/20231030/8d05e613-e2c6-47d1-81a9-08bd70b8ba73.jpeg`}
2023-10-30 17:29:35 +08:00
alt={"张景中"}
/>
</p>
<p className={"text-center"}></p>
</>
);
2023-10-29 22:25:16 +08:00
};
export default Page;