Files
quantulr a8b1ad286d update
2023-11-06 17:27:50 +08:00

23 lines
600 B
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import ArticleHeading from "@/app/_components/ArticleHeading";
const Page = () => {
return (
<>
<ArticleHeading text={"知识产权服务"} />
<p className={"my-1 text-center indent-8 text-base"}>
</p>
<ol className={"list-inside list-decimal text-center indent-8"}>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ol>
</>
);
};
export default Page;