This commit is contained in:
quantulr
2023-11-01 17:27:06 +08:00
parent 7e465da9d2
commit 1a22404f19
87 changed files with 1604 additions and 196 deletions

View File

@ -0,0 +1,19 @@
import ArticleHeading from "@/app/components/ArticleHeading";
const Page = () => {
return (
<>
<ArticleHeading text={"产业对接"} />
<ol className={"list-decimal list-inside indent-8"}>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ol>
</>
);
};
export default Page;