monorepo/apps/web2/mdx/page.mdx

18 lines
537 B
Plaintext
Raw Normal View History

2024-09-28 14:58:45 +08:00
import { Tools } from '@/app/_components/home/tools';
import $styles from '../post/[item]/page.module.css';
import Content from './content.mdx';
import { MdxTitle } from './title.tsx'
<div className="tw-page-container">
<Tools back />
<div className={$styles.item}>
<div className={$styles.content}>
<header className={$styles.title}>
<MdxTitle />
</header>
<div className={$styles.body}>
<Content />
</div>
</div>
</div>
</div>