-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpage.jsx
More file actions
198 lines (184 loc) · 33.1 KB
/
page.jsx
File metadata and controls
198 lines (184 loc) · 33.1 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
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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
/* eslint-disable react/no-danger */
import React from 'react';
import { graphql } from 'gatsby';
import Layout from '../components/layout';
import LeftNav from "../components/LeftNav";
import 'prismjs/themes/prism-tomorrow.css';
import './page.scss';
import SideBar from "../components/SideBar";
import EditDoc from "../components/EditButton";
import SEO from "../components/seo";
import {Link} from "../../.cache/gatsby-browser-entry";
import SearchInputBox from "../components/SearchInputBox";
import MobileView from "../components/MobileView";
import Footer from "../components/Footer"
import {environment} from "../environment";
export default ({ data, pageContext }) => {
const prev = pageContext.prev
? {
url: `${pageContext.prev.fields.slug}`,
title: pageContext.prev.frontmatter.title
}
: null;
const next = pageContext.next
? {
url: `${pageContext.next.fields.slug}`,
title: pageContext.next.frontmatter.title
}
: null;
const post = data.markdownRemark;
let contextualLinks;
if (post.frontmatter.contextual_links) {
contextualLinks = <SideBar links={post.frontmatter.contextual_links} />;
}
if(environment.isStaging()) {
post.frontmatter.noindex = true;
}
return (
<Layout>
<SEO
title={post.frontmatter.page_title || post.frontmatter.title}
slug={post.fields.slug}
canonical={post.frontmatter.canonical}
metadesc={post.frontmatter.metadesc}
keywords={post.frontmatter.keywords}
social_share_summary={post.frontmatter.social_share_summary}
social_share_desc={post.frontmatter.social_share_desc}
social_share_image={post.frontmatter.social_share_image}
noindex={post.frontmatter.noindex}
/>
<header id="root_header">
<div className="flex items-stretch">
<nav className="flex max-w-sm w-1/4">
<svg width="188" height="26" viewBox="0 0 188 26" fill="none" xmlns="http://www.w3.org/2000/svg" className="ml-10 my-6">
<path d="M34.7404 10.1388L34.557 11.2181C34.5325 11.3157 34.4775 11.4011 34.3919 11.4743C34.3063 11.5474 34.2146 11.584 34.1168 11.584H32.4662L31.4575 17.3285C31.3963 17.6334 31.3658 17.8469 31.3658 17.9688C31.3658 18.1396 31.4116 18.2463 31.5033 18.289C31.595 18.3317 31.757 18.353 31.9893 18.353H32.9614C33.047 18.353 33.1234 18.3652 33.1906 18.3896C33.2579 18.414 33.2915 18.475 33.2915 18.5725V18.6274L33.0898 19.78C33.0531 19.9629 32.9186 20.0727 32.6863 20.1093C32.454 20.1459 32.2369 20.1764 32.0352 20.2008C31.8334 20.2252 31.6286 20.2374 31.4208 20.2374C30.6138 20.2374 29.9963 20.0849 29.5684 19.78C29.1405 19.4751 28.9265 18.9567 28.9265 18.225C28.9265 18.0908 28.9357 17.9505 28.954 17.8042C28.9723 17.6578 28.9937 17.4993 29.0182 17.3285L30.0269 11.584L28.3396 11.3279C28.144 11.3035 28.0461 11.1998 28.0461 11.0169V10.962L28.1929 10.1388C28.2173 10.0412 28.2693 9.95582 28.3488 9.88264C28.4282 9.80946 28.5169 9.77287 28.6147 9.77287H30.3387L30.6138 8.27272C30.6383 8.17515 30.6902 8.09587 30.7697 8.03489C30.8492 7.97391 30.9378 7.93122 31.0356 7.90683L32.7963 7.61412H32.8697C33.0409 7.61412 33.1264 7.6873 33.1264 7.83365V7.88854L32.778 9.77287H34.4286C34.6365 9.77287 34.7404 9.87654 34.7404 10.0839V10.1388ZM43.9049 13.3952C43.9049 13.5659 43.8958 13.7397 43.8774 13.9166C43.8591 14.0934 43.8377 14.2672 43.8132 14.438L43.6665 15.3161C43.6054 15.621 43.4586 15.7735 43.2263 15.7735H37.2473C37.2229 15.9076 37.2015 16.0327 37.1832 16.1485C37.1648 16.2644 37.1556 16.3894 37.1556 16.5236C37.1556 17.0236 37.2963 17.423 37.5775 17.7219C37.8587 18.0207 38.3417 18.1701 39.0264 18.1701C39.6989 18.1701 40.3347 18.1457 40.9338 18.0969C41.5329 18.0481 42.0281 18.0054 42.4193 17.9688H42.4927C42.5661 17.9688 42.6303 17.981 42.6853 18.0054C42.7403 18.0298 42.7678 18.0847 42.7678 18.1701V18.2432L42.5477 19.4507C42.5233 19.597 42.4835 19.7068 42.4285 19.78C42.3735 19.8532 42.2604 19.902 42.0892 19.9263C41.7836 19.9751 41.4962 20.0209 41.2272 20.0636C40.9582 20.1062 40.6831 20.1398 40.4019 20.1642C40.1207 20.1886 39.8211 20.2069 39.5032 20.2191C39.1853 20.2313 38.8185 20.2374 38.4028 20.2374C37.9993 20.2374 37.5836 20.1764 37.1556 20.0544C36.7277 19.9324 36.3395 19.7282 35.991 19.4415C35.6426 19.1549 35.3552 18.7768 35.129 18.3073C34.9028 17.8377 34.7897 17.2553 34.7897 16.5601C34.7897 16.3894 34.7958 16.2126 34.8081 16.0296C34.8203 15.8467 34.8448 15.6576 34.8814 15.4625L35.0832 14.3282C35.2299 13.4745 35.4561 12.7488 35.7618 12.1512C36.0675 11.5535 36.4404 11.0687 36.8805 10.6967C37.3207 10.3248 37.8281 10.0564 38.4028 9.89179C38.9775 9.72714 39.6133 9.64481 40.3102 9.64481C40.9216 9.64481 41.4534 9.73933 41.9058 9.92838C42.3582 10.1174 42.7311 10.3796 43.0246 10.715C43.318 11.0504 43.5381 11.4468 43.6848 11.9042C43.8316 12.3616 43.9049 12.8586 43.9049 13.3952ZM41.5207 13.3586C41.5207 12.822 41.3862 12.4164 41.1172 12.142C40.8482 11.8676 40.4569 11.7304 39.9434 11.7304C39.2098 11.7304 38.6596 11.9499 38.2928 12.389C37.9259 12.8281 37.6814 13.383 37.5591 14.0538H41.4473C41.4718 13.9318 41.4901 13.816 41.5023 13.7062C41.5146 13.5964 41.5207 13.4806 41.5207 13.3586ZM52.9044 10.4498L52.721 11.4926C52.6843 11.7243 52.5682 11.8402 52.3725 11.8402H52.2992C52.1769 11.8158 52.0057 11.7914 51.7856 11.767C51.5655 11.7426 51.3241 11.7212 51.0612 11.7029C50.7983 11.6847 50.5201 11.6664 50.2267 11.6481C49.9332 11.6298 49.6581 11.6206 49.4014 11.6206C49.2546 11.6206 49.0988 11.6298 48.9337 11.6481C48.7686 11.6664 48.6158 11.7029 48.4752 11.7578C48.3346 11.8127 48.2184 11.895 48.1267 12.0048C48.035 12.1146 47.9892 12.267 47.9892 12.4622C47.9892 12.7061 48.1726 12.9561 48.5394 13.2122L50.6852 14.6758C51.2354 15.0539 51.5992 15.432 51.7765 15.8101C51.9537 16.1882 52.0424 16.5784 52.0424 16.9809C52.0424 17.5542 51.9323 18.0451 51.7123 18.4536C51.4922 18.8622 51.1987 19.2007 50.8319 19.469C50.4651 19.7373 50.0372 19.9324 49.5481 20.0544C49.059 20.1764 48.5394 20.2374 47.9892 20.2374C47.8424 20.2374 47.6376 20.2343 47.3748 20.2282C47.1119 20.2221 46.8307 20.2038 46.5311 20.1733C46.2315 20.1428 45.9197 20.1032 45.5957 20.0544C45.2717 20.0056 44.9691 19.9446 44.6879 19.8715C44.5045 19.8105 44.4128 19.7007 44.4128 19.5422V19.4507L44.6145 18.353C44.639 18.2554 44.6848 18.1823 44.7521 18.1335C44.8193 18.0847 44.9018 18.0603 44.9997 18.0603H45.0547C45.2748 18.0847 45.5254 18.1091 45.8066 18.1335C46.0879 18.1579 46.366 18.1792 46.6411 18.1975C46.9162 18.2158 47.1761 18.231 47.4206 18.2432C47.6651 18.2554 47.8547 18.2615 47.9892 18.2615C48.4416 18.2615 48.8175 18.1975 49.1171 18.0695C49.4167 17.9414 49.5664 17.6639 49.5664 17.237C49.5664 17.0907 49.5206 16.9474 49.4289 16.8071C49.3372 16.6669 49.1813 16.5175 48.9612 16.3589L46.7237 14.8222C46.3691 14.5782 46.0817 14.2642 45.8617 13.88C45.6416 13.4958 45.5315 13.0842 45.5315 12.6451C45.5315 12.0353 45.6507 11.5383 45.8892 11.1541C46.1276 10.7699 46.4333 10.465 46.8062 10.2394C47.1791 10.0138 47.5948 9.85825 48.0533 9.77287C48.5119 9.6875 48.9612 9.64481 49.4014 9.64481C49.9516 9.64481 50.5018 9.6753 51.052 9.73629C51.6022 9.79727 52.1341 9.89484 52.6476 10.029C52.8188 10.0778 52.9044 10.1875 52.9044 10.3583V10.4498ZM60.7117 10.1388L60.5283 11.2181C60.5039 11.3157 60.4488 11.4011 60.3633 11.4743C60.2777 11.5474 60.186 11.584 60.0882 11.584H58.4375L57.4288 17.3285C57.3677 17.6334 57.3371 17.8469 57.3371 17.9688C57.3371 18.1396 57.3829 18.2463 57.4746 18.289C57.5663 18.3317 57.7283 18.353 57.9607 18.353H58.9327C59.0183 18.353 59.0947 18.3652 59.162 18.3896C59.2292 18.414 59.2628 18.475 59.2628 18.5725V18.6274L59.0611 19.78C59.0244 19.9629 58.8899 20.0727 58.6576 20.1093C58.4253 20.1459 58.2083 20.1764 58.0065 20.2008C57.8048 20.2252 57.6 20.2374 57.3921 20.2374C56.5851 20.2374 55.9677 20.0849 55.5397 19.78C55.1118 19.4751 54.8978 18.9567 54.8978 18.225C54.8978 18.0908 54.907 17.9505 54.9253 17.8042C54.9437 17.6578 54.9651 17.4993 54.9895 17.3285L55.9982 11.584L54.3109 11.3279C54.1153 11.3035 54.0175 11.1998 54.0175 11.0169V10.962L54.1642 10.1388C54.1886 10.0412 54.2406 9.95582 54.3201 9.88264C54.3996 9.80946 54.4882 9.77287 54.586 9.77287H56.31L56.5851 8.27272C56.6096 8.17515 56.6615 8.09587 56.741 8.03489C56.8205 7.97391 56.9091 7.93122 57.007 7.90683L58.7676 7.61412H58.841C59.0122 7.61412 59.0978 7.6873 59.0978 7.83365V7.88854L58.7493 9.77287H60.3999C60.6078 9.77287 60.7117 9.87654 60.7117 10.0839V10.1388ZM68.6658 10.4498L68.4824 11.4926C68.4457 11.7243 68.3295 11.8402 68.1339 11.8402H68.0605C67.9383 11.8158 67.7671 11.7914 67.547 11.767C67.3269 11.7426 67.0854 11.7212 66.8226 11.7029C66.5597 11.6847 66.2815 11.6664 65.9881 11.6481C65.6946 11.6298 65.4195 11.6206 65.1628 11.6206C65.016 11.6206 64.8601 11.6298 64.6951 11.6481C64.53 11.6664 64.3772 11.7029 64.2366 11.7578C64.096 11.8127 63.9798 11.895 63.8881 12.0048C63.7964 12.1146 63.7505 12.267 63.7505 12.4622C63.7505 12.7061 63.934 12.9561 64.3008 13.2122L66.4466 14.6758C66.9968 15.0539 67.3606 15.432 67.5378 15.8101C67.7151 16.1882 67.8038 16.5784 67.8038 16.9809C67.8038 17.5542 67.6937 18.0451 67.4737 18.4536C67.2536 18.8622 66.9601 19.2007 66.5933 19.469C66.2265 19.7373 65.7986 19.9324 65.3095 20.0544C64.8204 20.1764 64.3008 20.2374 63.7505 20.2374C63.6038 20.2374 63.399 20.2343 63.1361 20.2282C62.8733 20.2221 62.592 20.2038 62.2925 20.1733C61.9929 20.1428 61.6811 20.1032 61.3571 20.0544C61.0331 20.0056 60.7305 19.9446 60.4493 19.8715C60.2659 19.8105 60.1742 19.7007 60.1742 19.5422V19.4507L60.3759 18.353C60.4004 18.2554 60.4462 18.1823 60.5135 18.1335C60.5807 18.0847 60.6632 18.0603 60.7611 18.0603H60.8161C61.0362 18.0847 61.2868 18.1091 61.568 18.1335C61.8493 18.1579 62.1274 18.1792 62.4025 18.1975C62.6776 18.2158 62.9375 18.231 63.182 18.2432C63.4265 18.2554 63.6161 18.2615 63.7505 18.2615C64.2029 18.2615 64.5789 18.1975 64.8785 18.0695C65.178 17.9414 65.3278 17.6639 65.3278 17.237C65.3278 17.0907 65.282 16.9474 65.1903 16.8071C65.0986 16.6669 64.9427 16.5175 64.7226 16.3589L62.4851 14.8222C62.1305 14.5782 61.8431 14.2642 61.6231 13.88C61.403 13.4958 61.2929 13.0842 61.2929 12.6451C61.2929 12.0353 61.4121 11.5383 61.6506 11.1541C61.889 10.7699 62.1947 10.465 62.5676 10.2394C62.9405 10.0138 63.3562 9.85825 63.8147 9.77287C64.2733 9.6875 64.7226 9.64481 65.1628 9.64481C65.713 9.64481 66.2632 9.6753 66.8134 9.73629C67.3636 9.79727 67.8955 9.89484 68.409 10.029C68.5802 10.0778 68.6658 10.1875 68.6658 10.3583V10.4498ZM73.9421 6.42497L73.6487 8.03489C73.6242 8.13246 73.5723 8.21784 73.4928 8.29102C73.4133 8.36419 73.3247 8.40078 73.2269 8.40078H71.4478C71.35 8.40078 71.2705 8.37334 71.2094 8.31846C71.1483 8.26357 71.1177 8.18735 71.1177 8.08978V8.03489L71.4112 6.42497C71.4356 6.3274 71.4906 6.24203 71.5762 6.16885C71.6618 6.09567 71.7535 6.05908 71.8513 6.05908H73.6303C73.8382 6.05908 73.9421 6.16275 73.9421 6.37009V6.42497ZM73.2269 10.1388L71.5395 19.7068C71.5151 19.8044 71.4601 19.8928 71.3745 19.9721C71.2889 20.0514 71.1972 20.091 71.0994 20.091H69.4121C69.3142 20.091 69.2409 20.0605 69.192 19.9995C69.1431 19.9385 69.1186 19.8654 69.1186 19.78V19.7068L70.8059 10.1388C70.8304 10.0412 70.8823 9.95582 70.9618 9.88264C71.0413 9.80946 71.1299 9.77287 71.2278 9.77287H72.9151C73.1229 9.77287 73.2269 9.87654 73.2269 10.0839V10.1388ZM83.4735 10.4864C83.4735 10.5108 83.4704 10.5321 83.4643 10.5504C83.4582 10.5687 83.4551 10.59 83.4551 10.6144L81.7862 20.0544C81.6639 20.7252 81.4988 21.2954 81.291 21.7649C81.0831 22.2345 80.7958 22.6156 80.429 22.9084C80.0621 23.2011 79.6006 23.4145 79.0443 23.5487C78.4879 23.6828 77.8124 23.7499 77.0176 23.7499C76.1251 23.7499 75.3976 23.695 74.8351 23.5853C74.2727 23.4755 73.8814 23.384 73.6613 23.3108C73.5635 23.2742 73.4871 23.2346 73.4321 23.1919C73.3771 23.1492 73.3496 23.0791 73.3496 22.9815C73.3496 22.9693 73.3526 22.9541 73.3587 22.9358C73.3648 22.9175 73.3679 22.8962 73.3679 22.8718L73.5513 21.9022C73.588 21.6948 73.7225 21.5911 73.9548 21.5911H73.9915C74.1993 21.6155 74.45 21.6399 74.7434 21.6643C75.0369 21.6887 75.3425 21.7101 75.6604 21.7284C75.9784 21.7467 76.2871 21.7649 76.5866 21.7832C76.8862 21.8015 77.1399 21.8107 77.3478 21.8107C78.0447 21.8107 78.5368 21.6918 78.8242 21.4539C79.1115 21.2161 79.2919 20.7923 79.3652 20.1825L79.3836 20.0361C79.1023 20.0971 78.8211 20.1428 78.5399 20.1733C78.2587 20.2038 77.9836 20.2191 77.7146 20.2191C77.1888 20.2191 76.6936 20.155 76.229 20.027C75.7644 19.8989 75.3609 19.6946 75.0185 19.4141C74.6762 19.1336 74.4072 18.7768 74.2116 18.3439C74.0159 17.9109 73.9181 17.3834 73.9181 16.7614C73.9181 16.5906 73.9242 16.4138 73.9364 16.2308C73.9487 16.0479 73.9731 15.8528 74.0098 15.6454L74.2482 14.2367C74.395 13.383 74.6089 12.6634 74.8902 12.078C75.1714 11.4926 75.529 11.02 75.9631 10.6602C76.3971 10.3004 76.9045 10.0412 77.4853 9.88264C78.0661 9.72409 78.7233 9.64481 79.4569 9.64481C80.0438 9.64481 80.6674 9.69055 81.3276 9.78202C81.9879 9.8735 82.5626 9.98631 83.0516 10.1205C83.1861 10.1571 83.2901 10.1997 83.3634 10.2485C83.4368 10.2973 83.4735 10.3766 83.4735 10.4864ZM80.8325 11.7853C80.6613 11.7487 80.4137 11.7121 80.0897 11.6755C79.7657 11.6389 79.4386 11.6206 79.1085 11.6206C78.3504 11.6206 77.791 11.8371 77.4303 12.2701C77.0696 12.7031 76.8159 13.3586 76.6692 14.2367L76.4307 15.6454C76.3941 15.865 76.3635 16.0692 76.339 16.2583C76.3146 16.4473 76.3024 16.6272 76.3024 16.798C76.3024 17.2858 76.4185 17.6517 76.6508 17.8957C76.8831 18.1396 77.3111 18.2615 77.9347 18.2615C78.1548 18.2615 78.439 18.2463 78.7875 18.2158C79.136 18.1853 79.4447 18.1518 79.7137 18.1152L80.8325 11.7853ZM98.3052 12.3158C98.3052 12.6695 98.2685 13.0598 98.1951 13.4867L97.0947 19.7068C97.0703 19.8044 97.0153 19.8928 96.9297 19.9721C96.8441 20.0514 96.7524 20.091 96.6546 20.091H94.9672C94.8694 20.091 94.7961 20.0605 94.7471 19.9995C94.6982 19.9385 94.6738 19.8654 94.6738 19.78V19.7068L95.7742 13.4867C95.7987 13.3159 95.8201 13.1604 95.8384 13.0202C95.8568 12.8799 95.8659 12.7549 95.8659 12.6451C95.8659 12.2914 95.7803 12.0475 95.6091 11.9133C95.438 11.7792 95.1568 11.7121 94.7655 11.7121C94.5943 11.7121 94.3345 11.7456 93.986 11.8127C93.6376 11.8798 93.2799 11.9987 92.9131 12.1695C92.9009 12.3768 92.8917 12.5902 92.8856 12.8098C92.8795 13.0293 92.8581 13.2549 92.8214 13.4867L91.721 19.7068C91.6965 19.8044 91.6415 19.8928 91.5559 19.9721C91.4703 20.0514 91.3786 20.091 91.2808 20.091H89.5935C89.4957 20.091 89.4223 20.0605 89.3734 19.9995C89.3245 19.9385 89.3 19.8654 89.3 19.78V19.7068L90.4005 13.4867C90.4371 13.3037 90.4616 13.1391 90.4738 12.9927C90.4861 12.8464 90.4922 12.7122 90.4922 12.5902C90.4922 12.2487 90.4127 12.017 90.2537 11.895C90.0948 11.7731 89.8258 11.7121 89.4468 11.7121C89.08 11.7121 88.4808 11.9133 87.6494 12.3158L86.3472 19.7068C86.3228 19.8044 86.2678 19.8928 86.1822 19.9721C86.0966 20.0514 86.0049 20.091 85.9071 20.091H84.2197C84.1219 20.091 84.0486 20.0605 83.9997 19.9995C83.9508 19.9385 83.9263 19.8654 83.9263 19.78V19.7068L85.6136 10.1388C85.6381 10.0412 85.69 9.95582 85.7695 9.88264C85.849 9.80946 85.9376 9.77287 86.0354 9.77287H87.6311C87.8389 9.77287 87.9429 9.87654 87.9429 10.0839V10.1388L87.8695 10.523C88.2974 10.279 88.7193 10.0717 89.135 9.90094C89.5507 9.73019 90.0337 9.64481 90.5839 9.64481C91.1096 9.64481 91.5284 9.73323 91.8402 9.91008C92.152 10.0869 92.3873 10.2973 92.5463 10.5412C93.0109 10.2363 93.5061 10.0107 94.0319 9.86435C94.5576 9.71799 95.1384 9.64481 95.7742 9.64481C96.6546 9.64481 97.2965 9.88264 97.7 10.3583C98.1035 10.834 98.3052 11.4865 98.3052 12.3158ZM108.864 10.4681C108.864 10.529 108.857 10.5778 108.845 10.6144L107.25 19.7251C107.225 19.8227 107.17 19.908 107.085 19.9812C106.999 20.0544 106.907 20.091 106.809 20.091H105.342C105.147 20.091 105.049 19.9873 105.049 19.78V19.7251L105.122 19.1946C104.609 19.5848 104.12 19.8562 103.655 20.0087C103.19 20.1611 102.732 20.2374 102.279 20.2374C101.864 20.2374 101.472 20.1672 101.106 20.027C100.739 19.8867 100.418 19.6763 100.143 19.3958C99.8676 19.1153 99.6536 18.7707 99.5008 18.3622C99.348 17.9536 99.2716 17.4749 99.2716 16.926C99.2716 16.7553 99.2777 16.5754 99.2899 16.3864C99.3021 16.1973 99.3266 16.0113 99.3633 15.8284C99.3877 15.6454 99.4183 15.4625 99.455 15.2795C99.4794 15.121 99.51 14.9502 99.5467 14.7673C99.5833 14.5843 99.6139 14.4075 99.6384 14.2367C99.8951 12.7976 100.458 11.6725 101.326 10.8614C102.194 10.0503 103.368 9.64481 104.847 9.64481C105.434 9.64481 106.042 9.6875 106.672 9.77287C107.302 9.85825 107.892 9.97411 108.442 10.1205C108.576 10.1571 108.68 10.1967 108.754 10.2394C108.827 10.2821 108.864 10.3583 108.864 10.4681ZM106.223 11.7487C106.051 11.7121 105.804 11.6816 105.48 11.6572C105.156 11.6328 104.829 11.6206 104.499 11.6206C104.107 11.6206 103.771 11.6877 103.49 11.8219C103.209 11.956 102.973 12.139 102.784 12.3707C102.594 12.6024 102.441 12.8768 102.325 13.194C102.209 13.5111 102.12 13.8587 102.059 14.2367L101.729 16.1211C101.705 16.2552 101.686 16.3864 101.674 16.5144C101.662 16.6425 101.656 16.7614 101.656 16.8712C101.656 17.3956 101.778 17.7584 102.023 17.9597C102.267 18.1609 102.567 18.2615 102.921 18.2615C103.276 18.2615 103.643 18.1945 104.022 18.0603C104.401 17.9261 104.798 17.7371 105.214 17.4932L106.223 11.7487Z" fill="#2D4A60"/>
<path d="M25.5298 9.76322C25.2845 9.39565 24.937 9.18224 24.5053 9.12618C24.3028 9.10134 24.0914 9.06694 23.8914 9.03509C23.6353 8.99623 23.3721 8.95482 23.1128 8.92679C22.4211 8.85672 21.9969 8.56941 21.7408 8.00627C21.5652 7.6215 21.5441 7.27814 21.6769 6.93924L21.7759 6.68378C21.9471 6.23977 22.126 5.77728 22.3157 5.32945C22.4984 4.89562 22.4843 4.46881 22.2742 4.05601C21.8884 3.29985 21.2816 2.77493 20.4748 2.49846C20.0181 2.34111 19.5653 2.40035 19.1552 2.66982C18.9591 2.79595 18.7554 2.91826 18.5561 3.03739C18.2782 3.20557 17.9908 3.38011 17.7206 3.56931C17.5315 3.70182 17.2927 3.77189 17.0327 3.77189C16.3837 3.77189 15.7552 3.34508 15.6013 2.80296C15.5208 2.51247 15.4224 2.2258 15.3273 1.94933C15.2436 1.7149 15.1625 1.47028 15.0884 1.23203C14.9376 0.724947 14.6042 0.374577 14.0958 0.1892C13.9489 0.136963 13.7975 0.0949184 13.6499 0.0598814C13.5905 0.0426814 13.5241 0.0248444 13.4641 0.0070074L13.4328 0H12.5941L12.5622 0.0108296C12.5449 0.0146518 12.5309 0.0216592 12.5136 0.0280296C12.4926 0.035037 12.4708 0.0420444 12.4472 0.0458666C11.5913 0.200029 11.079 0.633851 10.8887 1.38237C10.805 1.71172 10.6862 2.04361 10.5738 2.36213C10.5138 2.53413 10.4537 2.70549 10.3981 2.87686C10.2295 3.38776 9.62272 3.79037 9.01528 3.79037C8.77384 3.79037 8.54517 3.72411 8.35994 3.59416C8.01949 3.36291 7.66563 3.14632 7.32135 2.93992C7.15656 2.83863 6.99177 2.74053 6.83017 2.63924C6.5108 2.43985 6.16013 2.37997 5.8133 2.46788C4.87052 2.69785 4.18005 3.27182 3.75529 4.17131C3.5873 4.53188 3.57964 4.92684 3.74124 5.31862C3.81469 5.49699 3.88495 5.67599 3.95522 5.85755C4.06061 6.13402 4.16919 6.4175 4.29183 6.69398C4.54413 7.26094 4.51666 7.76165 4.19666 8.26172C3.97949 8.60509 3.69525 8.80766 3.3267 8.87774C2.79655 8.97966 2.22871 9.06694 1.63597 9.13701C1.13392 9.19307 0.74429 9.44151 0.474743 9.87534C0.110025 10.4633 -0.0445489 11.1316 0.0110211 11.8559C0.0640362 12.535 0.39043 13.021 0.979983 13.3013C1.19396 13.4032 1.4041 13.5256 1.61169 13.6409C1.83908 13.7702 2.07158 13.9033 2.31686 14.0186C2.66816 14.1792 2.93068 14.5505 3.015 15.0016C3.1025 15.4711 2.9837 15.9469 2.69882 16.2368C2.30217 16.6496 1.91318 17.0942 1.54463 17.5561C1.376 17.7625 1.25656 18.0218 1.21057 18.2702C1.03939 19.2461 1.86016 20.6916 2.77994 21.0343C3.00733 21.1184 3.2954 21.1426 3.55856 21.1037C4.05294 21.0267 4.56585 20.9254 5.12346 20.789C5.69577 20.6489 6.13778 20.7674 6.5619 21.1846C6.88063 21.4993 7.02498 21.8389 7.01412 22.2619C7.00071 22.8046 6.98666 23.3856 6.96174 23.9736C6.94067 24.4176 7.09524 24.803 7.41461 25.1145C7.92368 25.6114 8.56242 25.9057 9.31932 25.986C9.40427 25.9968 9.48411 26 9.56523 26C10.1407 26 10.607 25.7547 10.9411 25.2719C11.0739 25.0859 11.2183 24.9113 11.3722 24.7259C11.5306 24.5335 11.6916 24.338 11.8391 24.1277C12.0806 23.771 12.5264 23.5576 13.0246 23.5576C13.5126 23.5576 13.9546 23.7678 14.2037 24.1144C14.4075 24.401 14.6317 24.6775 14.8463 24.9438C14.9792 25.105 15.1127 25.2693 15.2391 25.4369C15.4844 25.7554 15.8178 25.9408 16.1934 25.9758C17.1055 26.0599 17.9231 25.7796 18.6174 25.1464C18.9502 24.8419 19.1086 24.4501 19.0837 23.978C19.0703 23.7716 19.0664 23.5544 19.0626 23.348C19.0562 23.0747 19.0485 22.7951 19.0275 22.5186C18.9789 21.8675 19.1827 21.3987 19.663 21.0451C19.9817 20.8139 20.2941 20.7298 20.6345 20.7859C21.2484 20.8871 21.7964 20.9993 22.3118 21.1292C22.8446 21.2585 23.3364 21.1362 23.7637 20.7578C24.3009 20.289 24.6515 19.6908 24.8023 18.9837C24.9287 18.3925 24.7882 17.8816 24.3845 17.465C24.2261 17.3006 24.0722 17.1223 23.9247 16.9509C23.7771 16.7764 23.6232 16.5973 23.4609 16.4292C23.0196 15.975 22.8969 15.5055 23.0617 14.9111C23.1741 14.4945 23.3805 14.2148 23.7037 14.0326C24.2332 13.7313 24.7275 13.4619 25.2194 13.207C25.6122 13.0006 25.8645 12.6821 25.9661 12.2591C26.1864 11.3692 26.0389 10.5296 25.5298 9.76322Z" fill="#03A973"/>
<path d="M12.9728 9.95604L12.9765 9.90356L13.0132 8.97563C13.0065 8.93339 13.023 8.76828 13.023 8.74332C13.0267 8.248 13.053 8.2832 13.094 7.34054C13.0965 7.26695 13.0671 7.19335 13.0102 7.14344C12.9563 7.09416 12.8816 7.08072 12.8111 7.098C12.418 7.19975 11.93 7.30854 11.3618 7.42118C11.254 7.4423 11.183 7.53701 11.1732 7.64644C11.1058 8.51486 11.1156 8.31135 11.0831 8.71836L10.9919 9.8754C10.9919 9.8754 10.9919 9.8786 10.9919 9.88244L10.9343 10.9755L10.8113 13.3516L10.7672 14.1951C10.7096 15.2817 10.6796 15.8967 10.6735 16.0791C10.6661 16.259 10.6631 16.3882 10.6631 16.4663C10.6631 17.0499 10.7635 17.528 10.9625 17.8825C11.1676 18.2441 11.4634 18.5116 11.8437 18.6735C12.2037 18.8322 12.6777 18.909 13.2533 18.909C13.4786 18.909 13.7241 18.8949 13.9764 18.87C14.2318 18.8418 14.5753 18.7753 15.0021 18.6729C15.0927 18.6479 15.1637 18.5711 15.1772 18.4758C15.2109 18.2435 15.2482 17.9555 15.2788 17.6777C15.3187 17.3405 15.3591 16.9923 15.3964 16.8266C15.4166 16.7351 15.3829 16.6397 15.3125 16.584C15.2415 16.5277 15.1472 16.5175 15.0676 16.5597C14.6537 16.778 14.4216 16.8656 14.045 16.9392C13.9133 16.9674 13.7988 16.9674 13.6745 16.9674H13.6145C13.4394 16.9674 13.2067 16.9079 13.0187 16.8125C12.8473 16.7242 12.8069 16.6928 12.7762 16.5457C12.7224 16.2679 12.7224 16.2084 12.7224 15.8782V15.7342L12.7328 15.3259L12.8675 12.3239L12.9728 9.95604Z" fill="white"/>
<path d="M17.7154 10.0824L17.3116 9.20661C17.2446 9.06442 17.1242 8.95146 16.9792 8.90029C16.8343 8.84514 16.6752 8.85245 16.5336 8.92222L13.5477 10.3967L13.5515 10.3422L11.4036 11.4552L10.1412 12.0791L9.65689 11.0246C9.59248 10.8824 9.47268 10.7728 9.32777 10.7176C9.18286 10.6631 9.02377 10.6704 8.88208 10.7402L8.0332 11.1555C7.74337 11.2977 7.61971 11.6558 7.75754 11.9549L8.89303 14.43C8.96001 14.5722 9.07723 14.6852 9.22214 14.7363C9.28655 14.7622 9.35353 14.7729 9.41665 14.7729C9.50489 14.7729 9.59055 14.7549 9.66784 14.7144L11.2741 13.9223L13.4369 12.8552L17.4417 10.8804C17.7296 10.7395 17.8532 10.3814 17.7154 10.0824Z" fill="white"/>
<path d="M117.914 10.092H113.72L113.864 8.184H124.574L124.43 10.092H120.254L119.39 21H117.05L117.914 10.092ZM132.602 11.91L131.882 21H129.704L129.812 19.704C129.5 20.16 129.086 20.514 128.57 20.766C128.066 21.018 127.502 21.144 126.878 21.144C125.882 21.144 125.12 20.874 124.592 20.334C124.076 19.782 123.818 18.984 123.818 17.94C123.818 17.7 123.824 17.514 123.836 17.382L124.268 11.91H126.518L126.086 17.238L126.068 17.58C126.068 18.768 126.614 19.362 127.706 19.362C128.354 19.362 128.87 19.152 129.254 18.732C129.65 18.3 129.878 17.712 129.938 16.968L130.352 11.91H132.602ZM137.457 17.67C137.373 18.738 137.823 19.272 138.807 19.272C139.083 19.272 139.395 19.23 139.743 19.146L139.599 20.91C139.203 21.054 138.711 21.126 138.123 21.126C137.175 21.126 136.449 20.88 135.945 20.388C135.441 19.884 135.189 19.158 135.189 18.21C135.189 18.03 135.195 17.892 135.207 17.796L135.531 13.602H133.785L133.929 11.91H135.657L135.837 9.696L138.141 8.94L137.907 11.91H140.337L140.193 13.602H137.781L137.457 17.67ZM145.555 21.144C144.631 21.144 143.827 20.964 143.143 20.604C142.459 20.232 141.931 19.71 141.559 19.038C141.187 18.366 141.001 17.58 141.001 16.68C141.001 15.672 141.193 14.79 141.577 14.034C141.973 13.278 142.525 12.696 143.233 12.288C143.941 11.88 144.763 11.676 145.699 11.676C146.611 11.676 147.409 11.862 148.093 12.234C148.777 12.606 149.299 13.128 149.659 13.8C150.031 14.472 150.217 15.252 150.217 16.14C150.217 17.16 150.025 18.048 149.641 18.804C149.257 19.56 148.711 20.142 148.003 20.55C147.307 20.946 146.491 21.144 145.555 21.144ZM145.555 19.398C146.347 19.398 146.947 19.098 147.355 18.498C147.775 17.886 147.985 17.076 147.985 16.068C147.985 15.216 147.787 14.562 147.391 14.106C147.007 13.65 146.449 13.422 145.717 13.422C144.913 13.422 144.301 13.728 143.881 14.34C143.461 14.94 143.251 15.738 143.251 16.734C143.251 18.51 144.019 19.398 145.555 19.398ZM157.414 11.694C157.774 11.694 158.08 11.742 158.332 11.838L158.152 13.872C157.816 13.728 157.426 13.656 156.982 13.656C156.202 13.656 155.596 13.878 155.164 14.322C154.732 14.754 154.492 15.342 154.444 16.086L154.048 21H151.798L152.32 14.484C152.368 13.668 152.392 13.05 152.392 12.63C152.392 12.306 152.386 12.066 152.374 11.91H154.48L154.516 13.296C154.78 12.792 155.17 12.402 155.686 12.126C156.214 11.838 156.79 11.694 157.414 11.694ZM159.566 11.91H161.816L161.096 21H158.846L159.566 11.91ZM162.248 7.788L162.086 10.002H159.584L159.746 7.788H162.248ZM172.954 11.91L172.234 21H170.02L170.128 19.74C169.816 20.184 169.408 20.532 168.904 20.784C168.412 21.024 167.872 21.144 167.284 21.144C166.516 21.144 165.838 20.97 165.25 20.622C164.674 20.262 164.224 19.752 163.9 19.092C163.576 18.42 163.414 17.64 163.414 16.752C163.414 15.756 163.594 14.874 163.954 14.106C164.314 13.338 164.818 12.744 165.466 12.324C166.114 11.892 166.864 11.676 167.716 11.676C168.388 11.676 168.97 11.814 169.462 12.09C169.966 12.366 170.356 12.756 170.632 13.26L170.74 11.91H172.954ZM167.986 19.398C168.73 19.398 169.318 19.11 169.75 18.534C170.182 17.958 170.398 17.178 170.398 16.194C170.398 15.294 170.2 14.61 169.804 14.142C169.408 13.662 168.844 13.422 168.112 13.422C167.344 13.422 166.744 13.71 166.312 14.286C165.88 14.862 165.664 15.654 165.664 16.662C165.664 17.538 165.862 18.216 166.258 18.696C166.666 19.164 167.242 19.398 167.986 19.398ZM175.746 7.752H177.996L176.934 21H174.684L175.746 7.752ZM182.834 21.144C181.358 21.144 180.032 20.76 178.856 19.992L179.63 18.426C180.65 19.134 181.736 19.488 182.888 19.488C184.052 19.488 184.634 19.152 184.634 18.48C184.634 18.168 184.478 17.934 184.166 17.778C183.866 17.61 183.38 17.424 182.708 17.22C182.072 17.04 181.544 16.86 181.124 16.68C180.704 16.5 180.344 16.242 180.044 15.906C179.756 15.558 179.612 15.108 179.612 14.556C179.612 13.692 179.96 12.996 180.656 12.468C181.352 11.94 182.276 11.676 183.428 11.676C184.1 11.676 184.748 11.778 185.372 11.982C185.996 12.186 186.518 12.468 186.938 12.828L186.182 14.358C185.282 13.674 184.352 13.332 183.392 13.332C182.828 13.332 182.396 13.422 182.096 13.602C181.796 13.782 181.646 14.046 181.646 14.394C181.646 14.718 181.796 14.964 182.096 15.132C182.408 15.288 182.906 15.468 183.59 15.672C184.25 15.864 184.784 16.05 185.192 16.23C185.6 16.398 185.948 16.656 186.236 17.004C186.536 17.352 186.686 17.802 186.686 18.354C186.686 19.23 186.338 19.914 185.642 20.406C184.946 20.898 184.01 21.144 182.834 21.144Z" fill="#03A973"/>
</svg>
</nav>
<nav className="flex-auto flex items-center">
<nav className="flex w-4/5">
<div className="flex items-stretch font-semibold ml-20">
<a className="btn btn-ghost btn-sm pr-2 rounded-btn" href={'/docs/'}>
Docs
</a>
<a className="btn btn-ghost btn-sm border-b-2 border-green-500 rounded-btn ml-10 text-green-600" >
Tutorials
</a>
<a className="btn btn-ghost btn-sm rounded-btn ml-10" target={'_blank'} href={'https://github.com/Testsigmahq/testsigma/'}>
GitHub
</a>
<a className="btn btn-ghost btn-sm rounded-btn ml-10" href={'https://discord.com/invite/5caWS7R6QX'}>
Discord
</a>
<a className="btn btn-ghost btn-sm rounded-btn ml-10" href={'https://testsigma.com/products'}>
Enterprise
</a>
<a className="btn btn-ghost btn-sm rounded-btn ml-10" href={'https://testsigma.com/'}>
Testsigma Cloud
</a>
</div>
</nav>
<div className="relative flex items-center justify-between w-2/5 pl-9 pr-9">
<SearchInputBox></SearchInputBox>
<a id={'signup-btn'} target={'_blank'} className="border border-green-600 font-bold px-4 py-1.5 text-green-600 rounded" href='https://testsigma.com/signup'>Get started for free</a>
</div>
</nav>
</div>
</header>
<hr/>
{/*<SubNav></SubNav>*/}
<div className="w-full">
<div className="flex items-stretch">
<MobileView></MobileView>
<nav className="w-1/4 max-w-sm bg-gray-50">
<LeftNav />
</nav>
<div className="flex-auto w-4/5">
<div className="flex items-stretch w-full">
<main className="w-4/5">
<div className="doc-page px-20 py-14">
<h1>{post.frontmatter.title}</h1>
<span dangerouslySetInnerHTML={{ __html: post.html }} />
</div>
</main>
<aside className="w-1/5">
<hr className="d-block lg:hidden"/>
<div className="top-0 top-1 border-l pl-4 py-16 sticky">
<div className="edit-button">
<EditDoc className="items-end btn edit-button-styles flex inline-flex items-center" />
</div>
{contextualLinks}
</div>
</aside>
</div>
<div className="pagination_buttons">
<div className={prev ? 'flex justify-between' : 'overflow-hidden'}>
{prev && (
<div className="prev_button">
<Link to={prev.url}>
<span>Previous</span>
<svg stroke="" fill="#78757a" strokeWidth="0"
viewBox="0 0 24 24" className="css-1hyj6ne" height="1.6em" width="1.6em"
xmlns="http://www.w3.org/2000/svg">
<path
d="M20 11H7.83l5.59-5.59L12 4l-8 8 8 8 1.41-1.41L7.83 13H20v-2z"></path>
</svg>
<h3 className="perviousLink">
{prev.title}</h3>
</Link>
</div>
)}
{next && (
<div className="next_button">
<Link to={next.url}>
<span>Next</span>
<svg stroke="" fill="#78757a" strokeWidth="0" viewBox="0 0 24 24"
className="css-jmo9lw" height="1.6em" width="1.6em"
xmlns="http://www.w3.org/2000/svg">
<path d="M12 4l-1.41 1.41L16.17 11H4v2h12.17l-5.58 5.59L12 20l8-8z"></path>
</svg>
<h3 className="next_link">
{next.title}
</h3>
</Link>
</div>
)}
</div>
<Footer/>
</div>
</div>
</div>
</div>
</Layout>
);
};
export const query = graphql`
query($slug: String!) {
markdownRemark(fields: { slug: { eq: $slug } }) {
html
frontmatter {
title
page_title
metadesc
canonical
keywords
social_share_summary
social_share_desc
social_share_image
noindex
contextual_links {
type
name
url
}
}
fields {
slug
}
}
}
`;
/* eslint-enaable */