Skip to content

Commit

Permalink
chore: add contact section
Browse files Browse the repository at this point in the history
  • Loading branch information
ivopr committed Feb 6, 2024
1 parent 1c5b7da commit 97b1f27
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions apps/ui/app/[locale]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,17 @@ export default async function Home() {
{
name: "Dr. Fernando B. Zanchi",
photo: fernandoImg,
lattes: "http://lattes.cnpq.br/0564343474986429",
},
{
name: "Railton Marques de Souza Guimarães",
photo: railtonImg,
lattes: "http://lattes.cnpq.br/2959548571209633",
},
{
name: "Ivo Henrique Provensi Vieira",
photo: ivoImg,
lattes: "http://lattes.cnpq.br/5130583751808996",
},
];

Expand Down Expand Up @@ -64,8 +67,10 @@ export default async function Home() {
<Box className={mClasses.container}>
{maintainers.map((maintainer) => (
<Paper
component={Link}
className={mClasses.paperContainer}
key={maintainer.name}
href={maintainer.lattes}
withBorder
>
<Avatar src={maintainer.photo.src} size="lg" />
Expand All @@ -75,6 +80,16 @@ export default async function Home() {
</Paper>
))}
</Box>

<Title mt="mt" order={4}>
Contact
</Title>
<Text>
If needed you can contact{" "}
<Link href="mailto:[email protected]">
[email protected]
</Link>
</Text>
</PageLayout>
);
}

0 comments on commit 97b1f27

Please sign in to comment.