Files
docs/src/theme/NotFound/Content/index.js
T

17 lines
423 B
JavaScript
Raw Normal View History

2025-04-30 18:40:22 +00:00
import React from 'react';
import Content from '@theme-original/NotFound/Content';
import styles from './styles.module.css';
export default function ContentWrapper(props) {
return (
<>
<Content {...props} />
<div className={styles.links}>
<a href="/">Browse the latest docs</a>
<span className={styles.separator}/>
<a href="/next">Access next docs</a>
</div>
</>
);
}