import { getTos } from '@/services/common/common'; import { Markdown } from '@workspace/ui/custom-components/markdown'; export default async function Page() { const { data } = await getTos(); return (
{data.data?.tos_content || ''}
); }