21 lines
572 B
TypeScript
21 lines
572 B
TypeScript
import Image from "next/image";
|
|
import ArticleHeading from "@/app/_components/ArticleHeading";
|
|
|
|
const Page = () => {
|
|
return (
|
|
<>
|
|
<ArticleHeading text={"两院院士"} />
|
|
<p className={"text-center text-base"}>中科院院士</p>
|
|
<p className={"mt-2 flex justify-center"}>
|
|
<img
|
|
src={`${process.env.NEXT_PUBLIC_CLIENT_BASE_URL}/uploads/image/20231030/8d05e613-e2c6-47d1-81a9-08bd70b8ba73.jpeg`}
|
|
alt={"张景中"}
|
|
/>
|
|
</p>
|
|
<p className={"text-center"}>张景中</p>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default Page;
|