-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefaultState.ts
More file actions
93 lines (83 loc) · 2.13 KB
/
Copy pathdefaultState.ts
File metadata and controls
93 lines (83 loc) · 2.13 KB
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
const brandNameAutofill = `
<span
data-type="mention"
class="autofill-pill"
data-id="{{workspace.brandName}}"
>
{{workspace.brandName}}
</span>
`
export const defaultState = `
<notification_widget></notification_widget>
<callout>
This page is an example. Edit the content and add a banner image in your
Client Home app to give your clients a personalized experience when they open
up the client portal.
<br /><br />
The action items widget will show client notifications for actions they have
to take (in real-time), if they have any.
</callout>
<h2>
Welcome,
<span
data-type="mention"
class="autofill-pill"
data-id="{{__client__.givenName}}"
>{{__client__.givenName}}
</span>
</h2>
<p></p>
<p>Welcome to your ${brandNameAutofill} client portal.</p>
<p>
This portal is your all-in-one experience while working with ${brandNameAutofill} where you can view and complete important tasks and connect with our team.
</p>
<p></p>
<p>Here are our Working Hours:</p>
<table>
<tbody>
<tr>
<th class="font-bold" colspan="1" rowspan="1">
<p>Days</p>
</th>
<th class="font-bold" colspan="1" rowspan="1">
<p>Hours (EST)</p>
</th>
</tr>
<tr>
<td colspan="1" rowspan="1">
<p>M-F</p>
</td>
<td colspan="1" rowspan="1">
<p>9AM - 6PM</p>
</td>
</tr>
<tr>
<td colspan="1" rowspan="1">
<p>Sat</p>
</td>
<td colspan="1" rowspan="1">
<p>9AM - 6PM</p>
</td>
</tr>
<tr>
<td colspan="1" rowspan="1">
<p>Sun</p>
</td>
<td colspan="1" rowspan="1">
<p>Closed</p>
</td>
</tr>
</tbody>
</table>
<h2>How to use the ${brandNameAutofill} portal</h2>
<p></p>
<p>
Save the link to this portal. If you miss an email notification, you can
always log in and check this portal for reminders on important tasks and
actions required. Explore the options on your left sidebar. We may add more
options tailored to your experience.
</p>
<p></p>
<h3>💬 Messages</h3>
<p>Questions? Chat with the ${brandNameAutofill} team and get answers.</p>
`