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,12 +1,12 @@
import ArticleHeading from "@/app/components/ArticleHeading";
const Page = () => {
return (
<>
<h2 className={"text-center text-lg font-bold text-[#054786]"}>
</h2>
<ArticleHeading text={"组织架构"} />
<img
className={"w-full mt-8"}
src={`${process.env.NEXT_ADMIN_BASE_URL}/uploads/image/20231030/5c0b98dc-cf76-49c3-a510-f2f197f7dd09.jpeg`}
className={"w-full"}
src={`${process.env.NEXT_PUBLIC_ADMIN_BASE_URL}/uploads/image/20231030/5c0b98dc-cf76-49c3-a510-f2f197f7dd09.jpeg`}
/>
</>
);

View File

@ -0,0 +1,10 @@
export const navigations = [
{ title: "机构简介", href: "/organization/overview" },
{ title: "院长致辞", href: "/organization/dean-speech" },
{ title: "科技产业发展委员会", href: "/organization/stidc" },
{ title: "组织架构", href: "/organization/architecture" },
{ title: "职能部门", href: "/organization/func-dep/general-office" },
{ title: "研究中心联合实验室", href: "/organization/joint-laboratory" },
{ title: "合作企业", href: "/organization/joint-venture" },
{ title: "科研平台", href: "/organization/research-platform" },
];

View File

@ -1,20 +1,20 @@
import ArticleHeading from "@/app/components/ArticleHeading";
const Page = () => {
return (
<>
<h2 className={"text-center text-lg font-bold text-[#054786]"}>
</h2>
<p className={"text-base indent-8 mt-8"}>
<ArticleHeading text={"院长致辞"} />
<p className={"text-base indent-8 my-1"}>
</p>
<p className={"text-base indent-8 mt-8"}>
<p className={"text-base indent-8 my-1"}>
绿绿
</p>
<p className={"text-base indent-8 mt-8"}>
<p className={"text-base indent-8 my-1"}>
5G物联网等领域进行科技布局绿沿
</p>
<p className={"text-base indent-8 mt-8"}>
<p className={"text-base indent-8 my-1"}>
</p>
</>

View File

@ -1,10 +1,10 @@
import ArticleHeading from "@/app/components/ArticleHeading";
const Page = () => {
return (
<>
<h2 className={"text-center text-lg font-bold text-[#054786]"}>
</h2>
<p className={"text-base indent-8 mt-8"}>...</p>
<ArticleHeading text={"研究中心"} />
<p className={"text-base indent-8 my-1"}>...</p>
</>
);
};

View File

@ -1,10 +1,10 @@
import ArticleHeading from "@/app/components/ArticleHeading";
const Page = () => {
return (
<>
<h2 className={"text-center text-lg font-bold text-[#054786]"}>
</h2>
<p className={"text-base indent-8 mt-8"}>...</p>
<ArticleHeading text={"合作企业"} />
<p className={"text-base indent-8 my-1"}>...</p>
</>
);
};

View File

@ -1,16 +1,6 @@
import ArticleLayout from "@/app/components/ArticleLayout";
import { ReactNode } from "react";
const navigations = [
{ title: "机构简介", href: "/organization/overview" },
{ title: "院长致辞", href: "/organization/dean-speech" },
{ title: "科技产业发展委员会", href: "/organization/stidc" },
{ title: "组织架构", href: "/organization/architecture" },
{ title: "职能部门", href: "/organization/func-dep/general-office" },
{ title: "研究中心联合实验室", href: "/organization/joint-laboratory" },
{ title: "合作企业", href: "/organization/joint-venture" },
{ title: "科研平台", href: "/organization/research-platform" },
];
import { navigations } from "@/app/(introduce)/organization/(generally)/config";
const Layout = ({ children }: { children: ReactNode }) => {
return (

View File

@ -1,16 +1,16 @@
import ArticleHeading from "@/app/components/ArticleHeading";
const Page = () => {
return (
<>
<h2 className={"text-center text-lg font-bold text-[#054786]"}>
绿
</h2>
<p className={"text-base indent-8 mt-8"}>
<ArticleHeading text={"中国科学院重庆绿色智能技术研究院合肥分院"} />
<p className={"text-base indent-8 my-1"}>
绿绿201822020181220
</p>
<p className={"text-base indent-8 mt-8"}>
<p className={"text-base indent-8 my-1"}>
5G物联绿绿
</p>
<p className={"text-base indent-8 mt-8"}>
<p className={"text-base indent-8 my-1"}>
</p>
</>

View File

@ -1,10 +1,10 @@
import ArticleHeading from "@/app/components/ArticleHeading";
const Page = () => {
return (
<>
<h2 className={"text-center text-lg font-bold text-[#054786]"}>
</h2>
<p className={"text-base indent-8 mt-8"}>...</p>
<ArticleHeading text={"科研平台"} />
<p className={"text-base indent-8 my-1"}>...</p>
</>
);
};

View File

@ -1,10 +1,10 @@
import ArticleHeading from "@/app/components/ArticleHeading";
const Page = () => {
return (
<>
<h2 className={"text-center text-lg font-bold text-[#054786]"}>
</h2>
<p className={"text-base indent-8 mt-8"}>...</p>
<ArticleHeading text={"科技产业发展委员会"} />
<p className={"text-base indent-8 my-1"}>...</p>
</>
);
};