Files

16 lines
361 B
TypeScript
Raw Normal View History

2023-11-06 17:27:50 +08:00
import ArticleHeading from "@/app/_components/ArticleHeading";
2023-11-01 17:27:06 +08:00
2023-10-30 17:29:35 +08:00
const Page = () => {
return (
<>
2023-11-01 17:27:06 +08:00
<ArticleHeading text={"组织架构"} />
2023-10-30 17:29:35 +08:00
<img
2023-11-01 17:27:06 +08:00
className={"w-full"}
2023-11-08 17:19:55 +08:00
src={`${process.env.NEXT_PUBLIC_CLIENT_BASE_URL}/uploads/image/20231030/5c0b98dc-cf76-49c3-a510-f2f197f7dd09.jpeg`}
2023-10-30 17:29:35 +08:00
/>
</>
);
};
export default Page;