This commit is contained in:
quantulr
2023-11-01 17:27:06 +08:00
parent 7e465da9d2
commit 1a22404f19
87 changed files with 1604 additions and 196 deletions

View File

@ -1,4 +1,5 @@
import Link from "next/link";
import ArticleHeading from "@/app/components/ArticleHeading";
const academicians = [
{
@ -18,8 +19,8 @@ const academicians = [
const Page = () => {
return (
<>
<h2 className={"text-center text-lg font-bold text-[#054786]"}></h2>
<div className={`flex mt-8 justify-around`}>
<ArticleHeading text={"副研究员"} />
<div className={`flex justify-around`}>
{academicians.map((academician) => (
<div
key={academician.name}
@ -27,7 +28,7 @@ const Page = () => {
>
<img
className={"h-[138px]"}
src={`${process.env.NEXT_ADMIN_BASE_URL}${academician.picture}`}
src={`${process.env.NEXT_PUBLIC_ADMIN_BASE_URL}${academician.picture}`}
/>
<Link href={academician.link}>{academician.name}</Link>
</div>