eexiv/src/app/page.tsx

18 lines
668 B
TypeScript
Raw Normal View History

2024-02-09 22:59:43 -08:00
import styles from './home.module.css'
import standardStyles from './styles/standard.module.css'
2024-02-09 19:00:26 -08:00
export default function Home() {
return (
2024-02-09 22:59:43 -08:00
<div className={standardStyles.content}>
2024-02-09 20:39:57 -08:00
<p className={styles.message}>
eeXiv<sup>2</sup> is a free distribution service and an open-access
archive for nearly 2.4 million scholarly articles in the fields of
physics, mathematics, computer science, quantitative biology,
quantitative finance, statistics, electrical engineering and systems
science, and economics. Materials on this site may be published
independently through other channels.
</p>
</div>
2024-02-09 22:59:43 -08:00
)
2024-02-09 19:00:26 -08:00
}