fix: demo首页

This commit is contained in:
2025-07-25 06:45:54 -07:00
parent 3e18012b1b
commit 84cd214dc5
36 changed files with 234 additions and 13 deletions
@@ -0,0 +1,11 @@
import { getTos } from '@/services/common/common';
import { Markdown } from '@workspace/ui/custom-components/markdown';
export default async function Page() {
const { data } = await getTos();
return (
<div className='container py-8'>
<Markdown>{data.data?.tos_content || ''}</Markdown>
</div>
);
}