-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrender.js
68 lines (56 loc) · 1.68 KB
/
render.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
import { render } from '@maizzle/framework'
import tailwindcssPresetEmail from 'tailwindcss-preset-email'
let input = `---
preheader: "Using Maizzle on the server"
---
<x-layout>
<a href="https://maizzle.com">
<img src="logo.png" src-production="images/logo.png" width="70" alt="Maizzle">
</a>
<x-spacer height="24px" />
<h1 class="m-0 mb-6 text-2xl/8 text-slate-900 font-semibold">
Hello there!
</h1>
<p class="m-0 mb-6 text-base/6 text-slate-600">
We're happy to have you on board! Please verify your email address in order to activate your account:
</p>
<x-button
href="https://maizzle.com"
class="bg-slate-950 hover:bg-slate-800"
>
Verify email
</x-button>
<x-spacer height="24px" />
<p class="m-0 text-base/6 text-slate-600">
Thanks,
<br>
<span class="font-semibold">Maizzle</span>
</p>
<x-divider />
<p class="m-0 text-xs/5 text-slate-600 mso-break-all">
If you're having trouble clicking the "Verify email" button, copy and paste the following URL into your web browser:
<a href="https://maizzle.com/?token=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0" class="text-slate-800 underline">https://maizzle.com/?token=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0</a>
</p>
</x-layout>`
/** @type {import('@maizzle/framework').Config} */
const { html } = await render(input,
{
css: {
inline: true,
purge: true,
shorthand: true,
tailwind: {
presets: [tailwindcssPresetEmail],
content: [
'./components/**/*.html',
{
raw: input,
extension: 'html'
},
]
}
},
prettify: true,
}
)
console.log(html)