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-11 02:06:29 -08:00
|
|
|
<h1 className='text-3xl text-slate-800 mt-4 mb-1 font-serif'>About Us</h1>
|
2024-02-09 22:59:43 -08:00
|
|
|
<p>
|
2024-02-11 02:06:29 -08:00
|
|
|
eeXiv<sup>2</sup>{' '}
|
|
|
|
{`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 02:06:29 -08:00
|
|
|
paper repository. eeXiv<sup>2</sup> 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-11 14:45:42 -08:00
|
|
|
<h1 className='text-3xl text-slate-800 mt-6 mb-1 font-serif'>
|
2024-02-11 02:06:29 -08:00
|
|
|
Frequently Asked Questions
|
|
|
|
</h1>
|
|
|
|
<ul className='list-disc'>
|
|
|
|
<li key='1'>
|
|
|
|
Why are you called eeXiv<sup>2</sup> with the superscript `{'2'}`?
|
|
|
|
<ul>
|
|
|
|
<li key='1' className='mx-2 my-1 text-slate-500'>
|
|
|
|
The original project called {`"eeXiv"`} was completed within 2
|
|
|
|
days of its conception as a competitor to arXiv focused around
|
|
|
|
FRC, but it quickly accumulated an exponential amount of technical
|
|
|
|
debt due to poor design choices made from day one as well as vast
|
|
|
|
amounts of AI generated code. eeXiv<sup>2</sup> was quickly
|
|
|
|
created within 24 hours of the release of the original eeXiv to
|
|
|
|
reimplement its features and vision under a more maintainable and
|
|
|
|
appropriate design. While eeXiv<sup>2</sup> technically refers
|
|
|
|
specifically to this redesigned version, eeXiv and eeXiv
|
|
|
|
<sup>2</sup> are de facto the same project and may be referred to
|
|
|
|
as either name.
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</li>
|
|
|
|
<li key='2'>
|
|
|
|
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
|
|
|
}
|