18 lines
537 B
Markdown
18 lines
537 B
Markdown
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> |