update
This commit is contained in:
19
app/(introduce)/organization/(generally)/stidc/layout.tsx
Normal file
19
app/(introduce)/organization/(generally)/stidc/layout.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import React, { ReactNode } from "react";
|
||||
import Breadcrumb from "@/app/components/Breadcrumb";
|
||||
|
||||
const breadcrumb = [
|
||||
{ href: "/", title: "首页" },
|
||||
{ href: "/organization/overview", title: "机构设置" },
|
||||
{ href: "/organization/func-dep/stidc", title: "科技产业发展委员会" },
|
||||
];
|
||||
|
||||
const Layout = ({ children }: { children: ReactNode }) => {
|
||||
return (
|
||||
<div className={"flex flex-col h-full"}>
|
||||
<Breadcrumb navigations={breadcrumb} />
|
||||
<div className={"bg-white px-5 py-4 flex-1 mt-2"}>{children}</div>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default Layout;
|
12
app/(introduce)/organization/(generally)/stidc/page.tsx
Normal file
12
app/(introduce)/organization/(generally)/stidc/page.tsx
Normal file
@ -0,0 +1,12 @@
|
||||
const Page = () => {
|
||||
return (
|
||||
<>
|
||||
<h2 className={"text-center text-lg font-bold text-[#054786]"}>
|
||||
科技产业发展委员会
|
||||
</h2>
|
||||
<p className={"text-base indent-8 mt-8"}>筹备中...</p>
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
export default Page;
|
Reference in New Issue
Block a user