update
This commit is contained in:
@ -9,9 +9,9 @@ const breadcrumb = [
|
||||
|
||||
const Layout = ({ children }: { children: ReactNode }) => {
|
||||
return (
|
||||
<div className={"flex flex-col h-full"}>
|
||||
<div className={"flex h-full flex-col"}>
|
||||
<Breadcrumb navigations={breadcrumb} />
|
||||
<div className={"bg-white px-5 py-4 flex-1 mt-2"}>{children}</div>
|
||||
<div className={"mt-2 flex-1 bg-white px-5 py-4"}>{children}</div>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
@ -5,8 +5,8 @@ const Page = () => {
|
||||
return (
|
||||
<>
|
||||
<ArticleHeading text={"两院院士"} />
|
||||
<p className={"text-base text-center"}>中科院院士</p>
|
||||
<p className={"flex justify-center mt-2"}>
|
||||
<p className={"text-center text-base"}>中科院院士</p>
|
||||
<p className={"mt-2 flex justify-center"}>
|
||||
<img
|
||||
src={`${process.env.NEXT_PUBLIC_ADMIN_BASE_URL}/uploads/image/20231030/8d05e613-e2c6-47d1-81a9-08bd70b8ba73.jpeg`}
|
||||
alt={"张景中"}
|
||||
|
@ -9,9 +9,9 @@ const breadcrumb = [
|
||||
|
||||
const Layout = ({ children }: { children: ReactNode }) => {
|
||||
return (
|
||||
<div className={"flex flex-col h-full"}>
|
||||
<div className={"flex h-full flex-col"}>
|
||||
<Breadcrumb navigations={breadcrumb} />
|
||||
<div className={"bg-white px-5 py-4 flex-1 mt-2"}>{children}</div>
|
||||
<div className={"mt-2 flex-1 bg-white px-5 py-4"}>{children}</div>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
@ -5,7 +5,7 @@ const Page = () => {
|
||||
<>
|
||||
<ArticleHeading text={"人才概况"} />
|
||||
|
||||
<p className={"text-base indent-8 my-1"}>
|
||||
<p className={"my-1 indent-8 text-base"}>
|
||||
截止2017年10月底,重庆研究院全院共有员工333人,包括正高级40人,副高级61人,中级136人,初级21人。具有环境科学与工程、光学工程两个一级学科博士学位培养点,截止2017年10月底,共有博士生导师25人,硕士生导师38人,在读研究生117,其中博士39人,硕士73
|
||||
人,留学生5人。
|
||||
</p>
|
||||
|
@ -9,9 +9,9 @@ const breadcrumb = [
|
||||
|
||||
const Layout = ({ children }: { children: ReactNode }) => {
|
||||
return (
|
||||
<div className={"flex flex-col h-full"}>
|
||||
<div className={"flex h-full flex-col"}>
|
||||
<Breadcrumb navigations={breadcrumb} />
|
||||
<div className={"bg-white px-5 py-4 flex-1 mt-2"}>{children}</div>
|
||||
<div className={"mt-2 flex-1 bg-white px-5 py-4"}>{children}</div>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
@ -55,7 +55,7 @@ const Page = () => {
|
||||
{academicians.map((academician) => (
|
||||
<div
|
||||
key={academician.name}
|
||||
className={`${styles.academician} flex flex-col items-center w-1/5 mb-4`}
|
||||
className={`${styles.academician} mb-4 flex w-1/5 flex-col items-center`}
|
||||
>
|
||||
<img
|
||||
className={"h-[138px]"}
|
||||
|
@ -9,9 +9,9 @@ const breadcrumb = [
|
||||
|
||||
const Layout = ({ children }: { children: ReactNode }) => {
|
||||
return (
|
||||
<div className={"flex flex-col h-full"}>
|
||||
<div className={"flex h-full flex-col"}>
|
||||
<Breadcrumb navigations={breadcrumb} />
|
||||
<div className={"bg-white px-5 py-4 flex-1 mt-2"}>{children}</div>
|
||||
<div className={"mt-2 flex-1 bg-white px-5 py-4"}>{children}</div>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
@ -24,7 +24,7 @@ const Page = () => {
|
||||
{academicians.map((academician) => (
|
||||
<div
|
||||
key={academician.name}
|
||||
className={`flex flex-col items-center w-1/5`}
|
||||
className={`flex w-1/5 flex-col items-center`}
|
||||
>
|
||||
<img
|
||||
className={"h-[138px]"}
|
||||
|
Reference in New Issue
Block a user