style(template): add logo to signature
This commit is contained in:
parent
188ca13c2c
commit
615fd8c97f
|
@ -1,4 +1,12 @@
|
||||||
import { Column, Container, Row, Text } from 'jsx-email'
|
import { Column, Container, Img, Row, Text } from 'jsx-email'
|
||||||
|
import type { JSX } from 'preact/jsx-runtime'
|
||||||
|
|
||||||
|
const imgCss: JSX.CSSProperties = {
|
||||||
|
display: 'inline',
|
||||||
|
padding: '1rem',
|
||||||
|
paddingBottom: 0,
|
||||||
|
height: '3rem',
|
||||||
|
}
|
||||||
|
|
||||||
export function Signature() {
|
export function Signature() {
|
||||||
return (
|
return (
|
||||||
|
@ -14,6 +22,13 @@ export function Signature() {
|
||||||
<a href='mailto:fablab@iut.u-bordeaux.fr'>Nous contacter →</a>
|
<a href='mailto:fablab@iut.u-bordeaux.fr'>Nous contacter →</a>
|
||||||
</Column>
|
</Column>
|
||||||
</Row>
|
</Row>
|
||||||
|
<Row>
|
||||||
|
<Img
|
||||||
|
src='https://cohabit.fr/images/logo.svg'
|
||||||
|
alt='FabLab Cohabit'
|
||||||
|
style={imgCss}
|
||||||
|
/>
|
||||||
|
</Row>
|
||||||
<Text style={{ fontSize: '12px' }}>
|
<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>
|
||||||
|
|
Loading…
Reference in a new issue