eexiv/src/app/page.tsx

82 lines
2.5 KiB
TypeScript
Raw Normal View History

2024-02-09 19:40:32 -08:00
import styles from "./page.module.css";
2024-02-09 19:00:26 -08:00
export default function Home() {
return (
2024-02-09 19:40:32 -08:00
<>
<div className={styles.header}>
<img
className={styles.wordmark}
src="https://raw.githubusercontent.com/Team-1280/identity/main/assets/img/eecs/eecs-wordmark.png"
/>
<p className={styles.contributions}>
We gratefully acknowledge support from our volunteer peer reviewers,
member institutions, and all{" "}
<a href="https://github.com/Team-1280/eeXiv/graphs/contributors">
open-source contributors
2024-02-09 19:00:26 -08:00
</a>
2024-02-09 19:40:32 -08:00
.
</p>
2024-02-09 19:00:26 -08:00
</div>
2024-02-09 19:40:32 -08:00
<div className={styles.banner}>
<h1 className={styles.title}>
eeXiv<sup>2</sup>
</h1>
<div className={styles.search}>
<input
type="text"
className={styles.searchBox}
name="q"
placeholder="Search..."
/>
<button type="submit" className={styles.searchButton}>
Search
</button>
</div>
2024-02-09 19:00:26 -08:00
</div>
2024-02-09 19:40:32 -08:00
<div className={styles.content}>
<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>
2024-02-09 19:00:26 -08:00
</div>
2024-02-09 19:40:32 -08:00
<footer>
<div className={styles.footerContent}>
<ul>
<li>
<a href="/about">About</a>
</li>
<li>
<a href="/help">Help</a>
</li>
<li>
<a href="/contact">Contact</a>
</li>
<li>
<a href="/subscribe">Subscribe</a>
</li>
<li>
<a href="/legal/copyright">Copyright</a>
</li>
<li>
<a href="/legal/privacy">Privacy Policy</a>
</li>
<li>
<a href="/help/accessibility">Accessibility</a>
</li>
<li>
<a href="/status">eeXiv status</a>
</li>
<li>
<a href="/status/notifications">Get status notifications</a>
</li>
</ul>
</div>
</footer>
</>
2024-02-09 19:00:26 -08:00
);
}