-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwelcome.mjml
183 lines (153 loc) · 5.15 KB
/
welcome.mjml
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
<mjml>
<mj-head>
< name="Roboto" href="https://fonts.googleapis.com/css?family=Roboto" />
</mj-head>
<mj-body>
<mj-section background-color="#4C1D95" padding-bottom="0">
<mj-column padding-bottom="0" width="100%">
<mj-image
width="100px"
src="https://ik.imagekit.io/zxaewhloxf/Vector.png?updatedAt=1691427017965"
alt="Maybell Logo"
/>
</mj-column>
</mj-section>
<mj-section background-color="#4C1D95">
<mj-column>
<mj-navbar hamburger="hamburger" ico-color="#ffffff">
<mj-navbar-link>
<mj-image src="https://postimg.cc/CRJKXTjL" alt="" />
</mj-navbar-link>
<mj-navbar-link
href="https://tailwind-ecommerce-demo.vercel.app/index.html"
color="#ffffff"
>Home</mj-navbar-link
>
<mj-navbar-link
href="https://tailwind-ecommerce-demo.vercel.app/catalog.html"
color="#ffffff"
>Catalog</mj-navbar-link
>
<mj-navbar-link
href="https://tailwind-ecommerce-demo.vercel.app/cart.html"
color="#ffffff"
>Cart</mj-navbar-link
>
</mj-navbar>
</mj-column>
</mj-section>
<!-- Card -->
<mj-wrapper background-color="#4C1D95" padding="0px 20px">
<mj-section background-color="white" border-radius="10px 10px 0px 0px">
<mj-column>
<mj-text padding="20px" font-size="36px" font-weight="700">
Nice to meet you!
</mj-text>
<mj-image src="https://ik.imagekit.io/zxaewhloxf/15.png?updatedAt=1691584352527" alt="" />
<mj-text font-size="16px" line-height="1.5" padding-bottom="16px"
>Hey, {CUSTOMER_NAME}!</mj-text
>
<mj-text font-size="16px" line-height="1.5" padding-bottom="16px"
>Thank you for believing in our dream! Our mission is to match our customers with the right products. Start exploring with us!
</mj-text>
</mj-column>
</mj-section>
</mj-wrapper>
<mj-wrapper background-color="#f3f3f3" padding="0px 20px 40px">
<mj-section background-color="white" border-radius="0px 0px 10px 10px">
<mj-column>
<mj-button
align="left"
background-color="#ffde34"
color="black"
font-weight="bold"
>
Let's go
</mj-button>
<mj-text color="gray" line-height="1.5" font-size="12px">
If you did not sign up for this account, you can ignore this email and
the account will be deleted automatically after 5 days.
</mj-text>
</mj-column>
</mj-section>
</mj-wrapper>
<!-- /Card -->
<!-- Footer -->
<mj-section padding="20px 50px" background-color="black">
<mj-column width="100%">
<mj-image
width="100px"
padding="0"
align="left"
src="https://ik.imagekit.io/zxaewhloxf/Vector.png?updatedAt=1691427017965"
alt="Maybell Logo"
/>
</mj-column>
</mj-section>
<mj-section background-color="black" padding="0px 0px">
<mj-column>
<mj-social
padding="10px 43px"
font-size="15px"
icon-size="30px"
mode="horizontal"
align="left"
>
<mj-social-element
padding-right="0px"
padding-left="0"
name="facebook"
href="https://mjml.io/"
></mj-social-element>
<mj-social-element
name="google"
href="https://mjml.io/"
></mj-social-element>
<mj-social-element
padding-right="0px"
name="twitter"
href="https://mjml.io/"
></mj-social-element>
</mj-social>
</mj-column>
</mj-section>
<mj-section background-color="black" padding="0px 24px">
<mj-column width="100%">
<mj-text font-size="12px" color="white">
If you have questions or need help, don't hesitate to contact our
support team!
</mj-text>
<mj-text font-size="12px" color="white" line-height="1.5">
MAYBELL USA Inc, 4 World Trade Center, 150 Greenwich Street, 62nd
Floor, New York, NY 10007, USA
</mj-text>
</mj-column>
</mj-section>
<!-- /Footer -->
<!-- Unsubscribe -->
<mj-section background-color="#000000" padding="0px 24px">
<mj-column>
<mj-text
align="center"
font-size="10px"
color="white"
line-height="1.5"
>
This message was sent to [email protected]. If you don't want to receive
these emails from Maybell in the future, you can
<a href="#">edit your profile</a> or
<a href="#">unsubscribe. </a>
</mj-text>
</mj-column>
</mj-section>
<!-- Copyright -->
<mj-section background-color="black" padding="5px">
<mj-column width="100%">
<mj-text color="white" align="center">
© Bogdan Bulakh, 2023
</mj-text>
</mj-column>
</mj-section>
<!-- /Copyright -->
</mj-body>
</mjml>