2026-05-19 21:45:20 -05:00
|
|
|
import './index.css';
|
2026-05-20 03:39:59 -05:00
|
|
|
import { DocLayout as OriginalDocLayout } from '@rspress/core/theme-original';
|
|
|
|
|
import { Tags } from './components/Tags';
|
|
|
|
|
|
|
|
|
|
function DocLayout(props) {
|
|
|
|
|
return (
|
|
|
|
|
<OriginalDocLayout
|
|
|
|
|
{...props}
|
|
|
|
|
beforeDocContent={
|
|
|
|
|
<>
|
|
|
|
|
<Tags />
|
|
|
|
|
{props.beforeDocContent}
|
|
|
|
|
</>
|
|
|
|
|
}
|
|
|
|
|
/>
|
|
|
|
|
);
|
|
|
|
|
}
|
2026-05-19 21:45:20 -05:00
|
|
|
|
|
|
|
|
export * from '@rspress/core/theme-original';
|
2026-05-20 03:39:59 -05:00
|
|
|
export { DocLayout };
|