refactor(chore): move templates components to sub dir
This commit is contained in:
parent
2a38c88716
commit
ba33da8d16
|
@ -1,5 +1,5 @@
|
|||
import { Body, Html, Markdown, Preview, Section, Text } from 'jsx-email'
|
||||
import { Signature } from './_Signature.tsx'
|
||||
import { Signature } from './components/Signature.tsx'
|
||||
import type { Template } from '../types.ts'
|
||||
|
||||
function Message(
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
import {
|
||||
Body,
|
||||
Button,
|
||||
Code,
|
||||
Container,
|
||||
Heading,
|
||||
Html,
|
||||
|
@ -8,8 +9,9 @@ import {
|
|||
Section,
|
||||
Text,
|
||||
} from 'jsx-email'
|
||||
import { Signature } from './_Signature.tsx'
|
||||
import { Signature } from './components/Signature.tsx'
|
||||
import type { Template } from '../types.ts'
|
||||
import type { JSX } from 'preact'
|
||||
|
||||
function Welcome(
|
||||
{ firstname, lastname, login }: {
|
||||
|
@ -22,14 +24,15 @@ function Welcome(
|
|||
<Html lang='fr'>
|
||||
<Preview>Bienvenue au FabLab Coh@bit</Preview>
|
||||
<Body>
|
||||
<Container>
|
||||
<Container style={{ border: '1px solid darkgrey' }}>
|
||||
<Section>
|
||||
<Heading as='h1'>Bienvenue à Coh@bit</Heading>
|
||||
<Text>
|
||||
Bravo ! Vous avez rejoint le FabLab Coh@bit en tant que{' '}
|
||||
{firstname} {lastname} (login:{' '}
|
||||
{login}). Laissez parler votre créativité, vous êtes prêt à
|
||||
collaborer avec toute une communauté ouverte et accueillante.
|
||||
Bravo ! Vous avez rejoint le FabLab Coh@bit en tant que
|
||||
{firstname} {lastname} (id :{' '}
|
||||
<Code>{login}</Code>). Laissez parler votre créativité, vous êtes
|
||||
prêt à collaborer avec toute une communauté ouverte et
|
||||
accueillante.
|
||||
</Text>
|
||||
<Text>
|
||||
Comment débuter :
|
||||
|
@ -80,6 +83,15 @@ function Welcome(
|
|||
)
|
||||
}
|
||||
|
||||
const bodyCss: JSX.CSSProperties = {
|
||||
fontSize: 'large',
|
||||
fontFamily: 'sans-serif',
|
||||
}
|
||||
|
||||
const messageCss: JSX.CSSProperties = {
|
||||
padding: '1rem',
|
||||
}
|
||||
|
||||
const template: Template<typeof Welcome, Parameters<typeof Welcome>[0]> = {
|
||||
props: [
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue