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