Files

16 lines
359 B
TypeScript
Raw Normal View History

2023-11-01 17:27:06 +08:00
import ArticleHeading from "@/app/components/ArticleHeading";
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"}
src={`${process.env.NEXT_PUBLIC_ADMIN_BASE_URL}/uploads/image/20231030/5c0b98dc-cf76-49c3-a510-f2f197f7dd09.jpeg`}
2023-10-30 17:29:35 +08:00
/>
</>
);
};
export default Page;