Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Factorize more the about page #26

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 13 additions & 8 deletions src/pages/about.mdx
Original file line number Diff line number Diff line change
@@ -1,24 +1,29 @@
import Avatar from '@components/avatar'

function Author({user, children}) {
return <>
<Avatar name={user} /> <a href={`https://github.com/${user}`}>{children}</a>
</>;
}

# About

The **Pineline** and this websites are developed and maintained by
[N3PDF](https://n3pdf.mi.infn.it/).


In particular, the following people are involved in the overall project:

- <Avatar name="andreab1997"/> [Andrea Barontini](https://github.com/andreab1997)
- <Avatar name="AleCandido"/> [Alessandro Candido](https://github.com/AleCandido)
- <Avatar name="scarlehoff"/> [Juan Cruz-Martinez](https://github.com/scarlehoff)
- <Avatar name="felixhekhorn"/> [Felix Hekhorn](https://github.com/felixhekhorn)
- <Avatar name="cschwan"/> [Christopher Schwan](https://github.com/cschwan)
- <Author user="andreab1997">Andrea Barontini</Author>
- <Author user="AleCandido">Alessandro Candido</Author>
- <Author user="scarlehoff">Juan Cruz</Author>
- <Author user="felixhekhorn">Felix Hekhorn</Author>
- <Author user="cschwan">Christopher Schwan</Author>

While people in the following list widely contributed to specific projects
belonging in the Pineline scope:

- <Avatar name="giacomomagni"/> [Giacomo Magni](https://github.com/giacomomagni)
- <Avatar name="niclaurenti"/> [Niccolò Laurenti](https://github.com/niclaurenti)
- <Author name="giacomomagni">Giacomo Magni</Author>
- <Author name="niclaurenti">Niccolò Laurenti</Author>

<style global jsx>{`
li::marker {
Expand Down