refactor(templates): move signature to own file
This commit is contained in:
parent
3072d3af20
commit
0c6da9d10a
|
@ -1,20 +1,20 @@
|
||||||
import { Container, Section, Text } from 'jsx-email'
|
import { Column, Container, Row, Text } from 'jsx-email'
|
||||||
|
|
||||||
export function Signature() {
|
export function Signature() {
|
||||||
return (
|
return (
|
||||||
<Container>
|
<Container style={{ textAlign: 'center', fontSize: '12px' }}>
|
||||||
<Section>
|
<Row>
|
||||||
<Text>
|
<Column>
|
||||||
<a href='https://cohabit.fr'>Accéder au site →</a>
|
<a href='https://cohabit.fr'>Accéder au site →</a>
|
||||||
</Text>
|
</Column>
|
||||||
<Text>
|
<Column>
|
||||||
<a href='tel:0556847961'>Nous téléphoner →</a>
|
<a href='tel:0556847961'>Nous téléphoner →</a>
|
||||||
</Text>
|
</Column>
|
||||||
<Text>
|
<Column>
|
||||||
<a href='mailto:fablab@iut.u-bordeaux.fr'>Nous contacter →</a>
|
<a href='mailto:fablab@iut.u-bordeaux.fr'>Nous contacter →</a>
|
||||||
</Text>
|
</Column>
|
||||||
</Section>
|
</Row>
|
||||||
<Text>
|
<Text style={{ fontSize: '12px' }}>
|
||||||
Coh@bit, IUT de Bordeaux, Bâtiment 10A, 15 rue Naudet, 33170 GRADIGNAN
|
Coh@bit, IUT de Bordeaux, Bâtiment 10A, 15 rue Naudet, 33170 GRADIGNAN
|
||||||
</Text>
|
</Text>
|
||||||
</Container>
|
</Container>
|
||||||
|
|
Loading…
Reference in a new issue