eexiv/src/app/page.tsx

66 lines
2.4 KiB
TypeScript
Raw Normal View History

import Link from 'next/link'
import { documents, authors, affiliations } from './db/data'
2024-02-11 14:45:42 -08:00
import News from './components/News'
import RandomDocs from './components/RandomDocs'
import RecentDocuments from './components/RecentDocuments'
2024-02-09 19:00:26 -08:00
export default function Home() {
const AuthorDisplay = () => {
return Object.entries(authors).map(([author, data], index) => {
let affiliationSlug = data.affiliation[0].split('@')[1]
let affiliation = affiliations[affiliationSlug]
return (
<div key={author}>
<Link href={`/author/${author}`}>
{data.name.first}
{data.name.nickname ? ` "${data.name.nickname}" ` : ' '}
{data.name.last}
</Link>{' '}
of{' '}
<Link href={`/affiliation/${affiliationSlug}`}>
{affiliation.short}
</Link>
</div>
)
})
}
2024-02-09 19:00:26 -08:00
return (
2024-02-11 15:10:26 -08:00
<div className='text-slate-800 flex flex-wrap md:flex-row justify-center'>
<p className='font-serif text-lg basis-full md:basis-1/2 grow mr-1 text-balance'>
2024-02-11 23:12:19 -08:00
eeXiv, like arXiv, is a free distribution service and an open-access
2024-02-14 11:27:24 -08:00
archive for over {Object.keys(documents).length} scholarly articles in
2024-02-11 23:12:19 -08:00
the fields of physics, mathematics, computer science, quantitative
biology, quantitative finance, statistics, electrical engineering and
systems science, and economics, but mainly related to the{' '}
2024-02-11 02:06:29 -08:00
<Link
href='https://en.wikipedia.org/wiki/FIRST_Robotics_Competition'
target='_blank'
>
FIRST Robotics Competition (FRC)
</Link>
. Materials on this site may be published independently through other
channels. Read more about us <Link href='/about'>here</Link>.
2024-02-09 20:39:57 -08:00
</p>
2024-02-11 14:45:42 -08:00
<News />
2024-02-11 15:10:26 -08:00
<div className='grid grid-cols-1 space-y-2 mt-4 basis-full'>
2024-02-14 11:27:24 -08:00
<br />
<div className='font-serif text-xl my-2'>Recently released documents</div>
<RecentDocuments />
<hr className='mx-auto w-full h-1 border-0 bg-slate-200 my-2 rounded-md' />
2024-02-14 11:27:24 -08:00
<br />
<div className='font-serif text-xl my-2'>
Selected documents in various disciplines
2024-02-14 11:27:24 -08:00
</div>
<RandomDocs />
<hr className='mx-auto w-full h-1 border-0 bg-slate-200 my-2 rounded-md' />
2024-02-14 11:27:24 -08:00
<br />
<div className='font-serif text-xl'>
Our esteemed faculty and alumni
2024-02-14 11:27:24 -08:00
</div>
<AuthorDisplay />
</div>
2024-02-09 20:39:57 -08:00
</div>
2024-02-09 22:59:43 -08:00
)
2024-02-09 19:00:26 -08:00
}