Files

25 lines
2.3 KiB
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={"院长致辞"} />
<p className={"text-base indent-8 my-1"}>
2023-10-30 17:29:35 +08:00
</p>
2023-11-01 17:27:06 +08:00
<p className={"text-base indent-8 my-1"}>
2023-10-30 17:29:35 +08:00
绿绿
</p>
2023-11-01 17:27:06 +08:00
<p className={"text-base indent-8 my-1"}>
2023-10-30 17:29:35 +08:00
5G物联网等领域进行科技布局绿沿
</p>
2023-11-01 17:27:06 +08:00
<p className={"text-base indent-8 my-1"}>
2023-10-30 17:29:35 +08:00
</p>
</>
);
};
export default Page;