testio-tailwind 3.2.0 → 3.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (49) hide show
  1. package/package.json +1 -1
  2. package/src/_includes/header.njk +2 -2
  3. package/src/assets/images/assets_agenticqa/agenticqa_email_header.png +0 -0
  4. package/src/assets/images/logo_agenticqa/agenticqa_logo_purpleteal_black.png +0 -0
  5. package/src/assets/images/logo_agenticqa/agenticqa_logo_purpleteal_black.svg +32 -0
  6. package/src/assets/images/logo_agenticqa/agenticqa_logo_purpleteal_black_1000px.png +0 -0
  7. package/src/assets/images/logo_agenticqa/agenticqa_logo_purpleteal_black_3000px.png +0 -0
  8. package/src/assets/images/logo_agenticqa/agenticqa_logo_purpleteal_white.png +0 -0
  9. package/src/assets/images/logo_agenticqa/agenticqa_logo_purpleteal_white.svg +33 -0
  10. package/src/assets/images/logo_agenticqa/agenticqa_logo_purpleteal_white_1000px.png +0 -0
  11. package/src/assets/images/logo_agenticqa/agenticqa_logo_purpleteal_white_3000px.png +0 -0
  12. package/src/assets/scripts/app.js +23 -17
  13. package/src/assets/scripts/modules/colors.js +10 -2
  14. package/src/assets/scripts/modules/echarts_area.js +10 -6
  15. package/src/assets/scripts/modules/echarts_donut.js +20 -4
  16. package/src/assets/scripts/modules/echarts_exampledata.js +2 -2
  17. package/src/assets/scripts/modules/echarts_gauge.js +5 -5
  18. package/src/assets/scripts/modules/echarts_horizontal.js +18 -3
  19. package/src/assets/scripts/modules/echarts_line.js +84 -0
  20. package/src/assets/scripts/modules/echarts_vertical.js +5 -3
  21. package/src/assets/stylesheets/components/customer/customer_productcards.css +2 -2
  22. package/src/assets/stylesheets/components/list_item.css +4 -0
  23. package/src/assets/stylesheets/tailwind_config.css +2 -2
  24. package/src/pages/agenticqa/assets.haml +10 -0
  25. package/src/pages/{testinator → agenticqa}/email.njk +3 -3
  26. package/src/pages/agenticqa/index.njk +7 -0
  27. package/src/pages/agenticqa/logo.haml +18 -0
  28. package/src/pages/charts/area.haml +21 -17
  29. package/src/pages/charts/bar_horizontal.haml +369 -220
  30. package/src/pages/charts/bar_vertical.haml +373 -367
  31. package/src/pages/charts/colors.haml +28 -0
  32. package/src/pages/charts/donut.haml +81 -16
  33. package/src/pages/charts/gauge.haml +40 -1
  34. package/src/pages/charts/legend.haml +22 -0
  35. package/src/pages/charts/line.haml +205 -0
  36. package/src/pages/colors.pug +2 -2
  37. package/src/pages/email-templates/{email_testinator.pug → email_agenticqa.pug} +14 -14
  38. package/src/static/app.bundled.js +19 -8
  39. package/index.html +0 -405
  40. package/src/assets/images/assets_testinator/testinator_email_header.png +0 -0
  41. package/src/assets/images/logo_testinator/testinator_logo_purpleteal_black.png +0 -0
  42. package/src/assets/images/logo_testinator/testinator_logo_purpleteal_black.svg +0 -33
  43. package/src/assets/images/logo_testinator/testinator_logo_purpleteal_black_1000px.png +0 -0
  44. package/src/assets/images/logo_testinator/testinator_logo_purpleteal_white.png +0 -0
  45. package/src/assets/images/logo_testinator/testinator_logo_purpleteal_white.svg +0 -33
  46. package/src/assets/images/logo_testinator/testinator_logo_purpleteal_white_1000px.png +0 -0
  47. package/src/pages/testinator/assets.haml +0 -10
  48. package/src/pages/testinator/index.njk +0 -7
  49. package/src/pages/testinator/logo.haml +0 -18
@@ -0,0 +1,28 @@
1
+ ---
2
+ tags: charts
3
+ title: Colors JS
4
+ ---
5
+
6
+ .card
7
+ .card-body
8
+ %pre.code.break-spaces
9
+ :plain
10
+ export const colorCritical = '#FF3131';
11
+ export const colorHigh = '#d8ce0d';
12
+ export const colorLow = '#9fa2a8';
13
+ export const colorVisual = '#f48d21';
14
+ export const colorContent = '#326dd1';
15
+ export const colorUX = '#263340';
16
+ export const colorSuccess = '#8cbd24';
17
+ export const colorDanger = '#FF3131';
18
+ export const colorNeutralBright = '#bfc1c5';
19
+ export const colorNeutralDark = '#343A40';
20
+ export const colorInfo = '#326dd1';
21
+ export const colorBlueLight = '#21bef4';
22
+ export const colorBorderBright = '#e6e6e6';
23
+ export const colorBorderDark = '#262626';
24
+ export const colorLabelBright = '#5f656d';
25
+ export const colorLabelDark = '#bfc1c5';
26
+ export const colorValueBright = '#1d1d1d';
27
+ export const colorValueDark = '#ffffff';
28
+ export const colorTealLight = '#6ddeba';
@@ -21,7 +21,7 @@ title: Donut chart
21
21
  %pre.code.break-spaces
22
22
  :plain
23
23
  import { createChartDonut } from './modules/echarts_donut';
24
- createChartDonut (target, targetData, valueText, labelText, showLegend);
24
+ createChartDonut (target, targetData, valueText, labelText, showLegend, labelColor, valueColor)
25
25
  .listitem-subheadline echarts_donuts.js
26
26
  .listitem-card
27
27
  %pre.code.break-spaces
@@ -29,12 +29,26 @@ title: Donut chart
29
29
  import * as echarts from 'echarts';
30
30
  import { echartsLegend, legendHeight } from './echarts_legend';
31
31
  var legendOptions;
32
- export function createChartDonut (target, targetData, valueText, labelText, showLegend) {
32
+ export function createChartDonut (target, targetData, valueText, labelText, showLegend, labelColor, valueColor) {
33
33
  var chartHeight = 190;
34
34
  var chartPlusLegendHeight;
35
35
  if (showLegend) {
36
36
  chartPlusLegendHeight = chartHeight + legendHeight,
37
- legendOptions = echartsLegend
37
+ legendOptions = {
38
+ type: echartsLegend.type,
39
+ orient: echartsLegend.orient,
40
+ padding: echartsLegend.padding,
41
+ icon: echartsLegend.icon,
42
+ itemGap: echartsLegend.itemGap,
43
+ itemHeight: echartsLegend.itemHeight,
44
+ itemWidth: echartsLegend.itemWidth,
45
+ height: echartsLegend.height,
46
+ left: echartsLegend.left,
47
+ bottom: echartsLegend.bottom,
48
+ textStyle:{
49
+ color:labelColor
50
+ },
51
+ }
38
52
  } else {
39
53
  chartPlusLegendHeight = chartHeight,
40
54
  legendOptions = null
@@ -62,14 +76,16 @@ title: Donut chart
62
76
  textStyle: {
63
77
  fontSize: 60,
64
78
  lineHeight: 60,
65
- fontWeight: "lighter"
79
+ fontWeight: "lighter",
80
+ color: valueColor
66
81
  },
67
82
  subtextStyle: {
68
83
  overflow: "break",
69
84
  width: 100,
70
85
  top: 50,
71
86
  fontSize: 11,
72
- lineHeight: 12
87
+ lineHeight: 12,
88
+ color: labelColor
73
89
  }
74
90
  },
75
91
  tooltips: {
@@ -123,15 +139,15 @@ title: Donut chart
123
139
  left: 'center',
124
140
  bottom: 'bottom'
125
141
  };
126
- .row
127
- .col-lg-6.col-xl-4
142
+ .grid.gap-spacing{class:"lg:grid-cols-2"}
143
+ .col
128
144
  .card.p-md.mb-xs
129
- .echarts-container#echarts-donut-1
145
+ .echarts-container#echarts-donut-2
130
146
  %details.listitem.mb-md
131
147
  %summary.listitem-header
132
148
  .listitem-title
133
149
  %span.icon.icon-format-code.mr-xs
134
- Initialize donut chart without legend
150
+ Initialize donut chart with legend
135
151
  .listitem-metrics
136
152
  .listitem-actions
137
153
  .btn.collapse-btn
@@ -144,7 +160,7 @@ title: Donut chart
144
160
  %pre.code.break-spaces
145
161
  :plain
146
162
  import { createChartDonut } from './modules/echarts_donut';
147
- createChartDonut("echarts-donut-1", dataBugs, "340", "Bugs", false);
163
+ createChartDonut("echarts-donut-2", dataBugs, "9999", "label with a lot of text to show how things break", true, colorLabelBright, colorValueBright);
148
164
  .listitem-subheadline data.js
149
165
  .listitem-card
150
166
  %pre.code.break-spaces
@@ -173,9 +189,9 @@ title: Donut chart
173
189
  export const colorNeutral = '#e6e6e6';
174
190
  export const colorInfo = '#326dd1';
175
191
  export const colorBlueLight = '#21bef4';
176
- .col-lg-6.col-xl-4
177
- .card.p-md.mb-xs
178
- .echarts-container#echarts-donut-2
192
+ .col
193
+ .card.p-md.mb-xs.bg-gray-800
194
+ .echarts-container#echarts-donut-2-dark
179
195
  %details.listitem.mb-md
180
196
  %summary.listitem-header
181
197
  .listitem-title
@@ -193,7 +209,56 @@ title: Donut chart
193
209
  %pre.code.break-spaces
194
210
  :plain
195
211
  import { createChartDonut } from './modules/echarts_donut';
196
- createChartDonut("echarts-donut-2", dataBugs, "9999", "label with a lot of text to show how things break", true);
212
+ createChartDonut("echarts-donut-2-dark", dataBugs, "9999", "label with a lot of text to show how things break", true, colorLabelDark, colorValueDark);
213
+ .listitem-subheadline data.js
214
+ .listitem-card
215
+ %pre.code.break-spaces
216
+ :plain
217
+ import { colorCritical, colorHigh, colorLow, colorContent, colorVisual, colorUX, colorSuccess, colorDanger, colorInfo, colorNeutral } from './colors';
218
+ export let dataBugs = [
219
+ { value: 79, name: 'Critical', itemStyle: {color: colorCritical}},
220
+ { value: 37, name: 'High', itemStyle: {color: colorHigh}},
221
+ { value: 19, name: 'Low', itemStyle: {color: colorLow}},
222
+ { value: 99, name: 'Visual', itemStyle: {color: colorVisual}},
223
+ { value: 53, name: 'Content', itemStyle: {color: colorContent}},
224
+ { value: 53, name: 'UX', itemStyle: {color: colorUX}},
225
+ ];
226
+ .listitem-subheadline colors.js
227
+ .listitem-card
228
+ %pre.code.break-spaces
229
+ :plain
230
+ export const colorCritical = '#FF3131';
231
+ export const colorHigh = '#d8ce0d';
232
+ export const colorLow = '#9fa2a8';
233
+ export const colorVisual = '#f48d21';
234
+ export const colorContent = '#326dd1';
235
+ export const colorUX = '#263340';
236
+ export const colorSuccess = '#8cbd24';
237
+ export const colorDanger = '#FF3131';
238
+ export const colorNeutral = '#e6e6e6';
239
+ export const colorInfo = '#326dd1';
240
+ export const colorBlueLight = '#21bef4';
241
+ .col
242
+ .card.p-md.mb-xs
243
+ .echarts-container#echarts-donut-1
244
+ %details.listitem.mb-md
245
+ %summary.listitem-header
246
+ .listitem-title
247
+ %span.icon.icon-format-code.mr-xs
248
+ Initialize donut chart without legend
249
+ .listitem-metrics
250
+ .listitem-actions
251
+ .btn.collapse-btn
252
+ .listitem-content
253
+ .listitem-subheadline HTML
254
+ .listitem-card
255
+ %code .echarts-container#element-id
256
+ .listitem-subheadline app.js
257
+ .listitem-card
258
+ %pre.code.break-spaces
259
+ :plain
260
+ import { createChartDonut } from './modules/echarts_donut';
261
+ createChartDonut("echarts-donut-1", dataBugs, "340", "Bugs", false, colorLabelBright, colorValueBright);
197
262
  .listitem-subheadline data.js
198
263
  .listitem-card
199
264
  %pre.code.break-spaces
@@ -222,7 +287,7 @@ title: Donut chart
222
287
  export const colorNeutral = '#e6e6e6';
223
288
  export const colorInfo = '#326dd1';
224
289
  export const colorBlueLight = '#21bef4';
225
- .col-lg-6.col-xl-4
290
+ .col
226
291
  .card.p-md.mb-xs
227
292
  .echarts-container#echarts-donut-testcases
228
293
  %details.listitem.mb-md
@@ -242,7 +307,7 @@ title: Donut chart
242
307
  %pre.code.break-spaces
243
308
  :plain
244
309
  import { createChartDonut } from './modules/echarts_donut';
245
- createChartDonut("echarts-donut-testcases", dataTestCases, "100", "Test Cases", false);
310
+ createChartDonut("echarts-donut-testcases", dataTestCases, "100", "Test Cases", false, colorLabelBright, colorValueBright);
246
311
  .listitem-subheadline data.js
247
312
  .listitem-card
248
313
  %pre.code.break-spaces
@@ -95,7 +95,7 @@ title: Gauge
95
95
  }
96
96
  window.addEventListener('resize', myChartGauge.resize);
97
97
  }
98
- .row
98
+ .grid.gap-spacing{class:"lg:grid-cols-3"}
99
99
  .col-lg-6.col-xl-4
100
100
  .card.p-md.mb-xs
101
101
  .echarts-container#echarts-gauge-1
@@ -135,6 +135,45 @@ title: Gauge
135
135
  %pre.code.break-spaces
136
136
  :plain
137
137
  export const colorSuccess = '#8cbd24';
138
+ .col-lg-6.col-xl-4
139
+ .card.p-md.mb-xs.bg-gray-800
140
+ .echarts-container#echarts-gauge-1-dark
141
+ %details.listitem.mb-md
142
+ %summary.listitem-header
143
+ .listitem-title
144
+ %span.icon.icon-format-code.mr-xs
145
+ Initialize success gauge
146
+ .listitem-metrics
147
+ .listitem-actions
148
+ .btn.collapse-btn
149
+ .listitem-content
150
+ .listitem-subheadline HTML
151
+ .listitem-card
152
+ %code .echarts-container#element-id
153
+ .listitem-subheadline app.js
154
+ .listitem-card
155
+ %pre.code.break-spaces
156
+ :plain
157
+ import { createChartGauge } from './modules/echarts_gauge';
158
+ createChartGauge("echarts-gauge-1", dataGaugeSuccess);
159
+ .listitem-subheadline data.js
160
+ .listitem-card
161
+ %pre.code.break-spaces
162
+ :plain
163
+ export let dataGaugeSuccess = [
164
+ {
165
+ value: 89,
166
+ name: 'Success',
167
+ itemStyle: {
168
+ color: colorSuccess
169
+ }
170
+ },
171
+ ];
172
+ .listitem-subheadline colors.js
173
+ .listitem-card
174
+ %pre.code.break-spaces
175
+ :plain
176
+ export const colorSuccess = '#8cbd24';
138
177
  .col-lg-6.col-xl-4
139
178
  .card.p-md.mb-xs
140
179
  .echarts-container#echarts-gauge-2
@@ -0,0 +1,22 @@
1
+ ---
2
+ tags: charts
3
+ title: Legend JS
4
+ ---
5
+
6
+ .card
7
+ .card-body
8
+ %pre.code.break-spaces
9
+ :plain
10
+ export const legendHeight = 30;
11
+ export const echartsLegend = {
12
+ type: 'scroll',
13
+ orient: 'horizontal',
14
+ padding: 0,
15
+ icon: 'circle',
16
+ itemGap: 10,
17
+ itemHeight: 5,
18
+ itemWidth: 5,
19
+ height: '20',
20
+ left: 'center',
21
+ bottom: 'bottom'
22
+ };
@@ -0,0 +1,205 @@
1
+ ---
2
+ tags: charts
3
+ title: Line
4
+ ---
5
+
6
+ %details.listitem.mb-md
7
+ %summary.listitem-header
8
+ .listitem-title
9
+ %span.icon.icon-format-code.mr-xs
10
+ Initialize area chart
11
+ .listitem-metrics
12
+ .listitem-actions
13
+ .btn.collapse-btn
14
+ .listitem-content
15
+ .listitem-subheadline HTML
16
+ .listitem-card
17
+ %code .echarts-container#element-id
18
+ .listitem-subheadline app.js
19
+ .listitem-card
20
+ %pre.code.break-spaces
21
+ :plain
22
+ import { createChartArea } from './modules/echarts_area';
23
+ createChartLine (target, targetDataX, targetDataY, chartColor, labelColor, valueColor, borderColor)
24
+ .listitem-subheadline echarts_area.js
25
+ .listitem-card
26
+ %pre.code.break-spaces
27
+ :plain
28
+ import * as echarts from 'echarts';
29
+ export function createChartLine (target, targetDataX, targetDataY, chartColor, labelColor, valueColor, borderColor) {
30
+ var chartHeight = 190;
31
+ var dom = document.getElementById(target);
32
+ var myChartLine = echarts.init(dom, null, {
33
+ renderer: 'canvas',
34
+ useDirtyRect: false,
35
+ height: chartHeight
36
+ });
37
+ var optionLine;
38
+ var optionLine = {
39
+ grid: {
40
+ show: false,
41
+ zlevel: 0,
42
+ top: 30,
43
+ right: 20,
44
+ left: 20,
45
+ bottom: 30
46
+ },
47
+ xAxis: {
48
+ boundaryGap: false,
49
+ zlevel: 2,
50
+ data: targetDataX,
51
+ axisLine: {
52
+ show: false
53
+ },
54
+ axisLabel: {
55
+ show: true,
56
+ margin: 15,
57
+ color: labelColor,
58
+ },
59
+ axisTick: {
60
+ show: false
61
+ },
62
+ },
63
+ yAxis: {
64
+ show: false,
65
+ min: 0,
66
+ max: targetDataY
67
+ },
68
+ series: [
69
+ {
70
+ data: targetDataY,
71
+ type: 'line',
72
+ lineStyle: {
73
+ width: 1,
74
+ color: chartColor,
75
+ borderColor: borderColor
76
+ },
77
+ zlevel: 1
78
+ },
79
+ {
80
+ data: targetDataY,
81
+ type: 'line',
82
+ lineStyle: {
83
+ width: 1
84
+ },
85
+ symbol: 'circle',
86
+ symbolSize: 10,
87
+ itemStyle: {
88
+ borderWidth: 2,
89
+ color: chartColor,
90
+ borderColor: borderColor
91
+ },
92
+ label: {
93
+ show: true,
94
+ color: valueColor,
95
+ },
96
+ zlevel: 3
97
+ }
98
+ ]
99
+ };
100
+ if (optionLine && typeof optionLine === 'object') {
101
+ myChartLine.setOption(optionLine);
102
+ }
103
+ window.addEventListener('resize', myChartLine.resize);
104
+ }
105
+ .grid.gap-spacing{class:"lg:grid-cols-2"}
106
+ .col
107
+ .card.p-md.mb-xs
108
+ .echarts-container#echarts-line-1
109
+ %details.listitem.mb-md
110
+ %summary.listitem-header
111
+ .listitem-title
112
+ %span.icon.icon-format-code.mr-xs
113
+ Initialize area chart with blue light color
114
+ .listitem-metrics
115
+ .listitem-actions
116
+ .btn.collapse-btn
117
+ .listitem-content
118
+ .listitem-subheadline HTML
119
+ .listitem-card
120
+ %code .echarts-container#element-id
121
+ .listitem-subheadline app.js
122
+ .listitem-card
123
+ %pre.code.break-spaces
124
+ :plain
125
+ import { createChartArea } from './modules/echarts_area';
126
+ createChartLine("echarts-line-1", dataAreaMonths, dataAreaValues, colorBlueLight, colorLabelBright, colorValueBright, colorBorderBright);
127
+ .listitem-subheadline dataAreaMonths.js
128
+ .listitem-card
129
+ %pre.code.break-spaces
130
+ :plain
131
+ export let dataAreaMonths = [
132
+ { value: 'Jun'},
133
+ { value: 'Jul'},
134
+ { value: 'Aug'},
135
+ { value: 'Sep'},
136
+ { value: 'Oct'},
137
+ { value: 'Nov'}
138
+ ];
139
+ .listitem-subheadline dataAreaValues.js
140
+ .listitem-card
141
+ %pre.code.break-spaces
142
+ :plain
143
+ export let dataAreaValues = [
144
+ { value: 79, name: 'Critical'},
145
+ { value: 37, name: 'High'},
146
+ { value: 19, name: 'Low'},
147
+ { value: 99, name: 'Visual'},
148
+ { value: 53, name: 'Content'},
149
+ { value: 66, name: 'UX'}
150
+ ];
151
+ .listitem-subheadline colors.js
152
+ .listitem-card
153
+ %pre.code.break-spaces
154
+ :plain
155
+ export const colorBlueLight = '#21bef4';
156
+ .col
157
+ .card.p-md.mb-xs.bg-gray-800
158
+ .echarts-container#echarts-line-2
159
+ %details.listitem.mb-md
160
+ %summary.listitem-header
161
+ .listitem-title
162
+ %span.icon.icon-format-code.mr-xs
163
+ Initialize darkmode area chart
164
+ .listitem-metrics
165
+ .listitem-actions
166
+ .btn.collapse-btn
167
+ .listitem-content
168
+ .listitem-subheadline HTML
169
+ .listitem-card
170
+ %code .echarts-container#element-id
171
+ .listitem-subheadline app.js
172
+ .listitem-card
173
+ %pre.code.break-spaces
174
+ :plain
175
+ import { createChartArea } from './modules/echarts_area';
176
+ createChartLine("echarts-line-2", dataAreaMonths, dataAreaValues, colorTealLight, colorLabelDark, colorValueDark, colorBorderDark);
177
+ .listitem-subheadline dataAreaMonths.js
178
+ .listitem-card
179
+ %pre.code.break-spaces
180
+ :plain
181
+ export let dataAreaMonths = [
182
+ { value: 'Jun'},
183
+ { value: 'Jul'},
184
+ { value: 'Aug'},
185
+ { value: 'Sep'},
186
+ { value: 'Oct'},
187
+ { value: 'Nov'}
188
+ ];
189
+ .listitem-subheadline dataAreaValues.js
190
+ .listitem-card
191
+ %pre.code.break-spaces
192
+ :plain
193
+ export let dataAreaValues = [
194
+ { value: 79, name: 'Critical'},
195
+ { value: 37, name: 'High'},
196
+ { value: 19, name: 'Low'},
197
+ { value: 99, name: 'Visual'},
198
+ { value: 53, name: 'Content'},
199
+ { value: 66, name: 'UX'}
200
+ ];
201
+ .listitem-subheadline colors.js
202
+ .listitem-card
203
+ %pre.code.break-spaces
204
+ :plain
205
+ export const colorBlueLight = '#21bef4';
@@ -68,7 +68,7 @@ main.main-content.main-content-padding
68
68
  p #5f656d
69
69
  .color-cell.bg-gray-dark
70
70
  p gray-dark
71
- p #7c8188
71
+ p #888888
72
72
  .color-cell.bg-gray
73
73
  p gray
74
74
  p #9fa2a8
@@ -97,7 +97,7 @@ main.main-content.main-content-padding
97
97
  p #5f656d
98
98
  .color-cell.bg-gray-500
99
99
  p gray-500
100
- p #7c8188
100
+ p #888888
101
101
  .color-cell.bg-gray-400
102
102
  p gray-400
103
103
  p #9fa2a8
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  layout: pure.njk
3
- title: Testinator Email Template
4
- permalink: "|/email-testinator/"
5
- tags: testinatorEmail
3
+ title: Agentic QA Email Template
4
+ permalink: "|/email-agenticqa/"
5
+ tags: agenticqaEmail
6
6
  ---
7
7
 
8
8
  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
9
9
  html(lang="en")
10
10
  head
11
11
  meta(content='text/html; charset=UTF-8', http-equiv='Content-Type')
12
- title Testinator
12
+ title Agentic QA
13
13
  meta(content='width=device-width', name='viewport')
14
14
  meta(name='color-scheme', content="light dark")
15
15
  style(type='text/css').
@@ -279,8 +279,8 @@ html(lang="en")
279
279
  table.email-wrapper(align='center', border='0', cellpadding='0', cellspacing='0', width='100%')
280
280
  tr
281
281
  td.email-header(align='left')
282
- a(target='_blank', href='http://testinator.ai')
283
- img.emailheader-logo(src='/assets/images/assets_testinator/testinator_email_header.png', alt='Logo')
282
+ a(target='_blank', href='http://agenticqa.ai')
283
+ img.emailheader-logo(src='/assets/images/assets_agenticqa/agenticqa_email_header.png', alt='Logo')
284
284
  table(border='0', cellpadding='0', cellspacing='0', width='100%')
285
285
  tr
286
286
  td.mobile-padding
@@ -292,9 +292,9 @@ html(lang="en")
292
292
  strong Strong subheadline with some lorem ipsum
293
293
  p
294
294
  | Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer feugiat facilisis purus at scelerisque. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Etiam tincidunt porttitor eros, vitae vestibulum dui facilisis eu. Cras eu ipsum lacus. Integer faucibus iaculis lorem, quis pretium leo rhoncus eget. Duis sodales tincidunt est a pretium. Nunc orci nisl, dignissim non pretium sed, fermentum vel purus. Sed quis enim rhoncus leo dapibus molestie in eu risus. Sed tincidunt tristique urna. Nullam accumsan tincidunt sem vitae fermentum. Nunc est nulla, adipiscing et laoreet nec,
295
- a(target='_blank', href='http://testinator.ai') convallis vel ante
295
+ a(target='_blank', href='http://agenticqa.ai') convallis vel ante
296
296
  | . Quisque cursus, odio ac pharetra tristique, diam felis lobortis orci, at blandit sem mauris eget lacus. Ut placerat posuere lacus, nec suscipit libero iaculis in.
297
- a.email-button(target='_blank', href='http://testinator.ai') email-button
297
+ a.email-button(target='_blank', href='http://agenticqa.ai') email-button
298
298
  img(src='/assets/images/placeholders/Approaches-desktop.png')
299
299
  h2 Here&apos;s an h2 heading for structuring the content
300
300
  p Fusce eget augue quam. Maecenas vehicula ligula in nibh dapibus sollicitudin. Donec eget vulputate mauris. Duis fringilla nunc vitae quam euismod non interdum orci aliquet. Duis at lacus erat, sed ultricies felis. Phasellus faucibus mauris vel odio iaculis ullamcorper. In hac habitasse platea dictumst. Integer id odio justo. Ut a ligula arcu. Vestibulum nec quam justo. Suspendisse molestie neque a enim accumsan auctor ornare lacus pellentesque. Praesent vitae lectus vitae sapien scelerisque auctor.
@@ -302,33 +302,33 @@ html(lang="en")
302
302
  h3 H3 New announcements
303
303
  p.email-card
304
304
  | A card containing some very important: Ut facilisis auctor dolor, et fringilla turpis suscipit et. Pellentesque ipsum risus, vehicula eu rutrum non, ornare aliquam lectus. Donec sed tortor ut quam ultrices tincidunt. Sed sagittis tincidunt pulvinar.
305
- a.intercom-h2b-button(target='_blank', href='http://testinator.ai') intercom-h2b-button
305
+ a.intercom-h2b-button(target='_blank', href='http://agenticqa.ai') intercom-h2b-button
306
306
  table.email-footer(border='0', cellpadding='0', cellspacing='0', width='100%')
307
307
  tr
308
308
  td.mobile-padding
309
309
  table.email-wrapper(align='center', border='0', cellpadding='0', cellspacing='0', width='100%')
310
310
  tr
311
311
  td
312
- a(target='_blank', href='http://testinator.ai')
313
- img.footer-logo(src='/assets/images/logo_testinator/testinator_logo_purpleteal_white_1000px.png', alt='Logo')
312
+ a(target='_blank', href='http://agenticqa.ai')
313
+ img.footer-logo(src='/assets/images/logo_agenticqa/agenticqa_logo_purpleteal_white_1000px.png', alt='Logo')
314
314
  td(align='right')
315
315
  p.text-poweredby Powered by Test IO | EPAM
316
316
  table.email-wrapper(align='center', border='0', cellpadding='0', cellspacing='0', width='100%')
317
317
  tr(align='center')
318
318
  td.mobile-padding
319
319
  .footer-disclaimer
320
- | This email and its contents are intended for informational purposes only. By submitting your email address, you consented to receive communications related to your Testinator demo test. We respect your privacy and handle your data in accordance with applicable data protection laws, including the General Data Protection Regulation (GDPR). Learn more in our
320
+ | This email and its contents are intended for informational purposes only. By submitting your email address, you consented to receive communications related to your agenticqa demo test. We respect your privacy and handle your data in accordance with applicable data protection laws, including the General Data Protection Regulation (GDPR). Learn more in our
321
321
  a(target='_blank', href='https://test.io/dataprivacy') Privacy Policy
322
322
  | .
323
323
  tr
324
324
  td.footer-links(align='center')
325
325
  a(target='_blank', href='https://test.io/dataprivacy') data privacy
326
- a(target='_blank', href='https://test.io/ai-in-qa/testinator') about
326
+ a(target='_blank', href='https://test.io/ai-in-qa/agenticqa') about
327
327
  a(target='_blank', href='https://test.io/policies') terms
328
328
  table(width='100%', cellspacing='0', cellpadding='0', border='0')
329
329
  tr
330
330
  td
331
331
  .unsubscribe-wrapper
332
332
  | If you received this email in error or would like to request to access, update, or delete your data, you can
333
- a(target='_blank', href='mailto:testinator@test.io') contact us
333
+ a(target='_blank', href='mailto:agenticqa@test.io') contact us
334
334
  | anytime.