eexiv/src/app/about/page.tsx

21 lines
766 B
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-10 00:43:22 -08:00
<div className='content text-slate-800'>
2024-02-09 22:59:43 -08:00
<p>
2024-02-09 20:39:57 -08:00
{`eeXiv 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-09 22:59:43 -08:00
paper repository. eeXiv is{' '}
<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-09 20:39:57 -08:00
under the GNU General Public License.
</p>
</div>
2024-02-09 22:59:43 -08:00
)
2024-02-09 20:39:57 -08:00
}