15 lines
443 B
TypeScript
15 lines
443 B
TypeScript
|
import standardStyles from '../styles/standard.module.css'
|
||
|
|
||
|
export default function Page() {
|
||
|
return (
|
||
|
<div className={standardStyles.content}>
|
||
|
<p>
|
||
|
We are always looking for contributors to help us improve eeXiv. If you
|
||
|
are interested in helping, whether as a peer reviewer, external
|
||
|
contributor, or in any other capacity, please{' '}
|
||
|
<a href='../contact'>contact us</a>.
|
||
|
</p>
|
||
|
</div>
|
||
|
)
|
||
|
}
|