Files

73 lines
1.7 KiB
TypeScript
Raw Normal View History

2023-10-30 17:29:35 +08:00
import styles from "./page.module.scss";
import Link from "next/link";
2023-11-06 17:27:50 +08:00
import ArticleHeading from "@/app/_components/ArticleHeading";
2023-10-30 17:29:35 +08:00
const academicians = [
{
picture:
"/uploads/image/20231030/8dbabce9-3454-4dab-b66f-34b30849db90.jpeg",
name: "任以伟",
link: "",
},
{
picture:
"/uploads/image/20231030/5d3c322f-8163-4034-b01e-8897f3ba9a7a.jpeg",
name: "张炜",
link: "",
},
{
picture:
"/uploads/image/20231030/63c2d39e-21c1-466f-b5fd-6f27e4ff1d43.jpeg",
name: "石宇",
link: "",
},
{
picture:
"/uploads/image/20231030/4f0f8923-a72f-4ea7-8333-fc98878a4fb3.jpeg",
name: "裴得胜",
link: "",
},
{
picture:
"/uploads/image/20231030/5e6dd527-5311-4444-b8ad-be597b57a724.jpeg",
name: "宋立岩",
link: "",
},
{
picture:
"/uploads/image/20231030/b3ab92e4-391e-49f3-956e-97bd2f8ebf94.jpeg",
name: "陆文强",
link: "",
},
{
picture:
"/uploads/image/20231030/d55d1de5-6c14-489d-b2ee-d62dd78d3478.jpeg",
name: "王德强",
link: "",
},
];
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={"研究员"} />
<div className={`${styles.academicians} flex flex-wrap`}>
2023-10-30 17:29:35 +08:00
{academicians.map((academician) => (
<div
key={academician.name}
2023-11-03 17:25:10 +08:00
className={`${styles.academician} mb-4 flex w-1/5 flex-col items-center`}
2023-10-30 17:29:35 +08:00
>
<img
className={"h-[138px]"}
2023-11-06 17:27:50 +08:00
src={`${process.env.NEXT_PUBLIC_CLIENT_ADMIN_BASE_URL}${academician.picture}`}
2023-10-30 17:29:35 +08:00
/>
<Link href={academician.link}>{academician.name}</Link>
</div>
))}
</div>
</>
);
2023-10-29 22:25:16 +08:00
};
export default Page;