23 lines
506 B
TypeScript
23 lines
506 B
TypeScript
import { Container, Section, Text } from 'jsx-email'
|
|
|
|
export function Signature() {
|
|
return (
|
|
<Container>
|
|
<Section>
|
|
<Text>
|
|
<a href='https://cohabit.fr'>Accéder au site →</a>
|
|
</Text>
|
|
<Text>
|
|
<a href='tel:0556847961'>Nous téléphoner →</a>
|
|
</Text>
|
|
<Text>
|
|
<a href='mailto:fablab@iut.u-bordeaux.fr'>Nous contacter →</a>
|
|
</Text>
|
|
</Section>
|
|
<Text>
|
|
Coh@bit, IUT de Bordeaux, Bâtiment 10A, 15 rue Naudet, 33170 GRADIGNAN
|
|
</Text>
|
|
</Container>
|
|
)
|
|
}
|