eexiv/src/app/about/page.tsx

45 lines
1.6 KiB
TypeScript
Raw Normal View History

2024-02-09 22:59:43 -08:00
import Link from 'next/link'
2024-02-09 20:39:57 -08:00
export default function Page() {
return (
2024-02-11 14:45:42 -08:00
<div className='text-slate-600'>
2024-02-14 14:22:49 -08:00
<h1 className='text-3xl text-slate-800 mt-4 mb-2 font-serif'>About Us</h1>
2024-02-09 22:59:43 -08:00
<p>
2024-02-11 23:12:19 -08:00
eeXiv{' '}
2024-02-11 02:06:29 -08:00
{`is a project hosted by Team 1280 EECS ("Electrical Engineering and
2024-02-09 22:59:43 -08:00
Computer Science"), independent of the department of the same name at`}{' '}
<Link href='https://eecs.berkeley.edu'>UC Berkeley</Link>. We aim to
2024-02-09 20:39:57 -08:00
rival arXiv as the single largest open-source and open-access research
2024-02-11 23:12:19 -08:00
paper repository. eeXiv is{' '}
2024-02-09 22:59:43 -08:00
<Link href='https://github.com/Team-1280/eeXiv'>open-source</Link> and{' '}
<Link href='https://github.com/Team-1280/eeXiv/blob/main/LICENSE'>
2024-02-09 20:39:57 -08:00
licensed
2024-02-09 22:59:43 -08:00
</Link>{' '}
2024-02-11 02:06:29 -08:00
under the GNU General Public License (GPL).
2024-02-09 20:39:57 -08:00
</p>
2024-02-14 14:09:50 -08:00
<h2 className='text-2xl text-slate-800 mt-6 mb-1 font-serif'>
2024-02-11 02:06:29 -08:00
Frequently Asked Questions
2024-02-14 14:09:50 -08:00
</h2>
<ul className='list-disc ml-4 mt-2'>
2024-02-11 02:06:29 -08:00
<li key='1'>
How can I contribute to research or development on eeXiv (or even just
add my profile to the site)?
<ul key='1' className='mx-2 my-1 text-slate-500'>
<li>
You can contribute to our website development or add your
documents and user account to eeXiv on our{' '}
<Link
href='https://github.com/couscousdude/eexiv-2'
target='_blank'
>
GitHub repository
</Link>
.
</li>
</ul>
</li>
</ul>
2024-02-09 20:39:57 -08:00
</div>
2024-02-09 22:59:43 -08:00
)
2024-02-09 20:39:57 -08:00
}