Clean up module pages
This commit is contained in:
parent
717b676ab4
commit
0849692a37
14 changed files with 20 additions and 9 deletions
|
@ -3,7 +3,7 @@ import Link from 'next/link'
|
|||
export default function Page() {
|
||||
return (
|
||||
<div className='text-slate-600'>
|
||||
<h1 className='text-3xl text-slate-800 mt-4 mb-1 font-serif'>About Us</h1>
|
||||
<h1 className='text-3xl text-slate-800 mt-4 mb-2 font-serif'>About Us</h1>
|
||||
<p>
|
||||
eeXiv{' '}
|
||||
{`is a project hosted by Team 1280 EECS ("Electrical Engineering and
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
export default function Page() {
|
||||
return (
|
||||
<div className='content text-slate-800'>
|
||||
<h1 className='text-3xl text-slate-800 mt-4 mb-2 font-serif'>Contact</h1>
|
||||
<p>
|
||||
You can contact a team representative directly at{' '}
|
||||
<a href='mailto:sanramonvalleyrobotics@gmail.com'>
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
export default function Page() {
|
||||
return (
|
||||
<div className='content text-slate-800'>
|
||||
<h1 className='text-3xl text-slate-800 mt-4 mb-2 font-serif'>Accessibility</h1>
|
||||
<p>
|
||||
If you encounter any accessibility-related issues related to your use of
|
||||
our site, it is likely because of our jank code architecture.
|
||||
|
@ -11,7 +12,9 @@ export default function Page() {
|
|||
<a href='https://github.com/Team-1280/eeXiv/pull/new'>pull request</a>{' '}
|
||||
on GitHub.
|
||||
</p>
|
||||
<br />
|
||||
<h2 className='text-2xl text-slate-800 mt-6 mb-1 font-serif'>
|
||||
Supported Hardware
|
||||
</h2>
|
||||
<p>
|
||||
It has also come to our attention that we may not be able to support
|
||||
low-spec devices such as old phones, computers, or other devices with
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
export default function Page() {
|
||||
return (
|
||||
<div className='content text-slate-800'>
|
||||
<h1 className='text-3xl text-slate-800 mt-4 mb-2 font-serif'>Help</h1>
|
||||
<p>
|
||||
We are always looking for contributors to help us improve eeXiv. If you
|
||||
are interested in helping, whether as a peer reviewer, external
|
||||
|
|
|
@ -2,6 +2,7 @@ import Link from 'next/link'
|
|||
export default function Page() {
|
||||
return (
|
||||
<div className='content text-slate-800'>
|
||||
<h1 className='text-3xl text-slate-800 mt-4 mb-2 font-serif'>Copyright</h1>
|
||||
<p>
|
||||
All content on this site is licensed under the{' '}
|
||||
<a href='https://creativecommons.org/licenses/by-sa/4.0/'>
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
export default function Page() {
|
||||
return (
|
||||
<div className='content text-slate-800'>
|
||||
<h1 className='text-3xl text-slate-800 mt-4 mb-2 font-serif'>Privacy Policy</h1>
|
||||
<p>
|
||||
{`User privacy is important to us. Just kidding. We don't collect any
|
||||
personal information. We only use it to help us improve eeXiv. Your
|
||||
|
|
|
@ -1,9 +1,12 @@
|
|||
import Link from 'next/link'
|
||||
|
||||
export default function Page() {
|
||||
return (
|
||||
<div className='content text-slate-800'>
|
||||
<h1 className='text-3xl text-slate-800 mt-4 mb-2 font-serif'>Get status notifications</h1>
|
||||
<p>
|
||||
We currently do not have the technical support to implement mailing
|
||||
lists in eeXiv. Check <a href='../'>status</a> frequently for updates.
|
||||
lists in eeXiv. Check <Link href='/status'>status</Link> frequently for updates.
|
||||
The best way to stay connected with the status of the eeXiv project is
|
||||
to watch it on <a href='https://github.com/Team-1280/eeXiv'>GitHub</a>.
|
||||
</p>
|
||||
|
|
|
@ -1,7 +1,12 @@
|
|||
import { Zilla_Slab } from 'next/font/google'
|
||||
|
||||
const zillaSlab = Zilla_Slab({ subsets: ['latin'], weight: ['500', '700'] })
|
||||
|
||||
export default function Page() {
|
||||
return (
|
||||
<div className='content text-slate-800'>
|
||||
<p>
|
||||
<h1 className='text-3xl text-slate-800 mt-4 mb-4 font-serif'>Status</h1>
|
||||
<p className={`${zillaSlab.className} p-6 rounded-lg bg-green-600 text-xl text-white text-center`}>
|
||||
eeXiv is <strong>online</strong>. All systems{' '}
|
||||
<strong>operational</strong>.
|
||||
</p>
|
||||
|
|
|
@ -1,5 +0,0 @@
|
|||
.content {
|
||||
margin-top: 40px;
|
||||
padding: 35px;
|
||||
border-radius: 15px;
|
||||
}
|
|
@ -1,6 +1,7 @@
|
|||
export default function Page() {
|
||||
return (
|
||||
<div className='content text-slate-800'>
|
||||
<h1 className='text-3xl text-slate-800 mt-4 mb-2 font-serif'>Subscribe</h1>
|
||||
<p>
|
||||
We currently do not have the technical support to implement mailing
|
||||
lists in eeXiv. Check back later for updates. The best way to stay
|
||||
|
|
Loading…
Reference in a new issue