Files

17 lines
631 B
TypeScript
Raw Normal View History

2023-11-01 17:27:06 +08:00
import ArticleHeading from "@/app/components/ArticleHeading";
2023-10-27 17:29:50 +08:00
const Page = () => {
2023-10-30 17:29:35 +08:00
return (
<>
2023-11-01 17:27:06 +08:00
<ArticleHeading text={"人才概况"} />
2023-11-03 17:25:10 +08:00
<p className={"my-1 indent-8 text-base"}>
2023-10-30 17:29:35 +08:00
20171033340611362120171025381173973
5
</p>
</>
);
2023-10-27 17:29:50 +08:00
};
export default Page;