tecitheme 0.0.1
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.
- package/LICENSE +20 -0
- package/Logos/TECi_icon_250.svelte +21 -0
- package/Logos/TECi_icon_250.svelte.d.ts +23 -0
- package/Logos/TECi_logo.svelte +150 -0
- package/Logos/TECi_logo.svelte.d.ts +19 -0
- package/README.md +3 -0
- package/components/CountrySelector/index.svelte +156 -0
- package/components/CountrySelector/index.svelte.d.ts +27 -0
- package/components/Footer/index.svelte +191 -0
- package/components/Footer/index.svelte.d.ts +26 -0
- package/components/Header/index.svelte +749 -0
- package/components/Header/index.svelte.d.ts +19 -0
- package/components/Modal/index.svelte +31 -0
- package/components/Modal/index.svelte.d.ts +31 -0
- package/components/TrialForm/index.svelte +210 -0
- package/components/TrialForm/index.svelte.d.ts +19 -0
- package/package.json +52 -0
- package/req_utils.d.ts +3 -0
- package/req_utils.js +62 -0
- package/utils.d.ts +2 -0
- package/utils.js +10 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright © 2022 Thunderhead Engineering Consultants, Inc.
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
6
|
+
this software and associated documentation files (the "Software"), to deal in
|
|
7
|
+
the Software without restriction, including without limitation the rights to
|
|
8
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
9
|
+
the Software, and to permit persons to whom the Software is furnished to do so,
|
|
10
|
+
subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
17
|
+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
18
|
+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
19
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
20
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
export let classes = ""
|
|
3
|
+
</script>
|
|
4
|
+
|
|
5
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 250 250" class={classes}>
|
|
6
|
+
<path
|
|
7
|
+
style="fill:#0c3879;fill-rule:evenodd;stroke:none"
|
|
8
|
+
d="M88.113 220.536h97.672v97.672H88.113z"
|
|
9
|
+
transform="matrix(2.5596 0 0 2.5596 -225.533 -564.483)">
|
|
10
|
+
</path>
|
|
11
|
+
<path
|
|
12
|
+
style="fill:#fff;fill-rule:evenodd;stroke:none"
|
|
13
|
+
d="M145.864 260.176h22.042c2.792 0 4.883.835 6.559 2.651 1.532 1.673 2.232 3.764 2.232 6.278 0 2.37-.7 4.464-2.232 6.277-1.676 1.675-3.767 2.651-6.559 2.651h-22.042v-17.857m0 23.159h22.042c2.792 0 4.883.838 6.559 2.65 1.532 1.674 2.232 3.768 2.232 6.278 0 2.373-.7 4.464-2.232 6.278-1.676 1.675-3.767 2.65-6.559 2.65h-22.042v-17.856"
|
|
14
|
+
transform="matrix(2.5596 0 0 2.5596 -225.533 -564.483)">
|
|
15
|
+
</path>
|
|
16
|
+
<path
|
|
17
|
+
style="fill:#fff;fill-rule:evenodd;stroke:none"
|
|
18
|
+
d="M132.471 301.192c-5.861 0-8.79-3.07-8.79-8.929l-.138-37.389-20.648-.14c-7.116-1.254-10.185-9.626-5.165-15.206 1.535-1.535 3.63-2.373 6.14-2.651h26.926l1.675.14h35.435c2.792 0 4.883.836 6.559 2.649 1.532 1.675 2.232 3.767 2.232 6.28 0 2.37-.7 4.464-2.232 6.277-1.676 1.673-3.767 2.651-6.559 2.651H141.26V301.192h-8.788"
|
|
19
|
+
transform="matrix(2.5596 0 0 2.5596 -225.533 -564.483)">
|
|
20
|
+
</path>
|
|
21
|
+
</svg>
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/** @typedef {typeof __propDef.props} TeCiIcon_250Props */
|
|
2
|
+
/** @typedef {typeof __propDef.events} TeCiIcon_250Events */
|
|
3
|
+
/** @typedef {typeof __propDef.slots} TeCiIcon_250Slots */
|
|
4
|
+
export default class TeCiIcon_250 extends SvelteComponentTyped<{
|
|
5
|
+
classes?: string;
|
|
6
|
+
}, {
|
|
7
|
+
[evt: string]: CustomEvent<any>;
|
|
8
|
+
}, {}> {
|
|
9
|
+
}
|
|
10
|
+
export type TeCiIcon_250Props = typeof __propDef.props;
|
|
11
|
+
export type TeCiIcon_250Events = typeof __propDef.events;
|
|
12
|
+
export type TeCiIcon_250Slots = typeof __propDef.slots;
|
|
13
|
+
import { SvelteComponentTyped } from "svelte";
|
|
14
|
+
declare const __propDef: {
|
|
15
|
+
props: {
|
|
16
|
+
classes?: string;
|
|
17
|
+
};
|
|
18
|
+
events: {
|
|
19
|
+
[evt: string]: CustomEvent<any>;
|
|
20
|
+
};
|
|
21
|
+
slots: {};
|
|
22
|
+
};
|
|
23
|
+
export {};
|
|
@@ -0,0 +1,150 @@
|
|
|
1
|
+
<svg
|
|
2
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
3
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
|
4
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
5
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
7
|
+
id="svg2"
|
|
8
|
+
version="1.1"
|
|
9
|
+
width="217.3913"
|
|
10
|
+
height="40">
|
|
11
|
+
<defs
|
|
12
|
+
id="defs59" />
|
|
13
|
+
<g
|
|
14
|
+
id="cvpage5_top"
|
|
15
|
+
width="612px"
|
|
16
|
+
height="792px"
|
|
17
|
+
transform="translate(44.657227,-982.59069)">
|
|
18
|
+
<g
|
|
19
|
+
id="g3110"
|
|
20
|
+
transform="matrix(0.41093833,0,0,0.40953505,-73.98795,960.4758)">
|
|
21
|
+
<polyline
|
|
22
|
+
transform="matrix(2.7022945,0,0,2.7022945,-121.50127,-91.923906)"
|
|
23
|
+
style="fill:#0e69af;fill-rule:evenodd;stroke:none"
|
|
24
|
+
id="polyline7"
|
|
25
|
+
points="122.225,61.914 117.799,61.914 117.799,73.463 114.891,73.463 114.891,61.914 110.465,61.914 110.465,59.68 122.225,59.68 122.225,61.914 122.225,61.914 " />
|
|
26
|
+
<polyline
|
|
27
|
+
transform="matrix(2.7022945,0,0,2.7022945,-121.50127,-91.923906)"
|
|
28
|
+
style="fill:#0e69af;fill-rule:evenodd;stroke:none"
|
|
29
|
+
id="polyline9"
|
|
30
|
+
points="136.472,73.463 133.563,73.463 133.563,67.562 126.482,67.562 126.482,73.463 123.574,73.463 123.574,59.68 126.482,59.68 126.482,65.286 133.563,65.286 133.563,59.68 136.472,59.68 136.472,73.463 136.472,73.463 " />
|
|
31
|
+
<path
|
|
32
|
+
style="fill:#0e69af;fill-rule:evenodd;stroke:none"
|
|
33
|
+
inkscape:connector-curvature="0"
|
|
34
|
+
id="path11"
|
|
35
|
+
d="m 288.40438,96.001764 c 0,3.872388 -1.13766,6.720606 -3.5319,8.541956 -1.48085,1.02687 -3.4157,1.59435 -5.80723,1.93754 -2.39153,0.227 -5.35324,0.34049 -8.77165,0.34049 -2.50502,0 -4.66956,-0.11349 -6.49361,-0.34049 -1.93484,-0.22699 -3.5292,-0.68368 -4.89656,-1.36736 -1.59435,-0.79718 -2.61852,-2.05104 -3.4184,-3.75889 -0.68098,-1.594354 -1.13767,-3.531899 -1.13767,-5.580239 0,0 0,-26.425738 0,-26.425738 0,0 7.97447,0 7.97447,0 0,0 0,26.99322 0,26.99322 0,1.597056 0.45399,2.621226 1.59436,3.304906 1.13766,0.683681 3.5292,1.137671 6.9476,1.137671 0.68368,0 1.13766,0 1.48086,0 1.82134,0 2.96171,-0.1135 3.64539,-0.1135 1.36736,-0.22699 2.50503,-0.683681 3.3022,-1.251163 0.91068,-0.683681 1.36737,-2.164538 1.36737,-4.442572 0,0 0,-25.628562 0,-25.628562 0,0 7.74477,0 7.74477,0 0,0 0,26.652731 0,26.652731 0,0 0,0 0,0" />
|
|
36
|
+
<path
|
|
37
|
+
style="fill:#0e69af;fill-rule:evenodd;stroke:none"
|
|
38
|
+
inkscape:connector-curvature="0"
|
|
39
|
+
id="path13"
|
|
40
|
+
d="m 329.5225,80.16902 c 0,-3.985884 -1.25117,-6.834103 -3.5292,-8.541953 -1.48086,-1.026872 -3.4184,-1.70785 -5.80993,-1.937545 -2.50503,-0.226993 -5.35325,-0.340489 -8.88515,-0.340489 -2.50503,0 -4.66956,0.113496 -6.49091,0.226993 -1.82405,0.226993 -3.4184,0.797177 -4.89926,1.480857 -1.48086,0.797177 -2.61852,2.051042 -3.3022,3.645396 -0.79718,1.70785 -1.14037,3.531898 -1.14037,5.693734 0,0 0,26.425737 0,26.425737 0,0 7.86097,0 7.86097,0 0,0 0,-26.993219 0,-26.993219 0,-1.594354 0.57019,-2.734722 1.59436,-3.304906 1.25386,-0.797177 3.5319,-1.137666 7.06109,-1.137666 0.68368,0 1.14037,0 1.36736,-0.113496 1.82405,0.113496 3.07521,0.226992 3.6454,0.226992 1.48086,0.226993 2.61852,0.570185 3.3022,1.251163 0.91068,0.68368 1.36736,2.164538 1.36736,4.329076 0,0 0,25.742056 0,25.742056 0,0 7.85828,0 7.85828,0 0,0 0,-26.65273 0,-26.65273 0,0 0,0 0,0" />
|
|
41
|
+
<path
|
|
42
|
+
style="fill:#0e69af;fill-rule:evenodd;stroke:none"
|
|
43
|
+
inkscape:connector-curvature="0"
|
|
44
|
+
id="path15"
|
|
45
|
+
d="m 372.01067,91.672688 c 0,6.60711 -2.05104,11.049682 -6.15042,13.214222 -2.05104,1.13766 -4.78576,1.70785 -8.20146,1.70785 0,0 -3.5319,0 -3.5319,0 0,0 0,-6.15042 0,-6.15042 0,0 1.93754,0 1.93754,0 1.59436,0 2.73202,-0.1135 3.6427,-0.456691 1.02687,-0.34049 2.05104,-1.02417 2.84821,-2.04834 1.02417,-1.367361 1.59436,-3.758891 1.59436,-7.177294 0,0 0,-6.720607 0,-6.720607 0,-2.051041 -0.1135,-3.531898 -0.34049,-4.329075 -0.34319,-1.594354 -1.25387,-2.73202 -2.50503,-3.415701 -1.25386,-0.570184 -3.19141,-0.910673 -5.80993,-0.910673 0,0 -1.36736,0 -1.36736,0 0,0 0,-6.036926 0,-6.036926 0,0 1.93754,0 1.93754,0 7.17459,0 11.95766,1.70785 14.0087,5.239749 1.25386,2.161836 1.93754,5.239749 1.93754,9.112137 0,0 0,7.971769 0,7.971769 0,0 0,0 0,0 m -17.88378,14.922072 c 0,0 -17.76759,0 -17.76759,0 0,0 0,-37.245727 0,-37.245727 0,0 17.76759,0 17.76759,0 0,0 0,6.036926 0,6.036926 0,0 -9.90932,0 -9.90932,0 0,0 0,25.058381 0,25.058381 0,0 9.90932,0 9.90932,0 0,0 0,6.15042 0,6.15042 0,0 0,0 0,0" />
|
|
46
|
+
<polyline
|
|
47
|
+
transform="matrix(2.7022945,0,0,2.7022945,-121.50127,-91.923906)"
|
|
48
|
+
style="fill:#0e69af;fill-rule:evenodd;stroke:none"
|
|
49
|
+
id="polyline17"
|
|
50
|
+
points="196.494,73.463 185.071,73.463 185.071,59.68 196.452,59.68 196.452,61.914 187.938,61.914 187.938,65.37 196.03,65.37 196.03,67.52 187.938,67.52 187.938,71.187 196.494,71.187 196.494,73.463 196.494,73.463 " />
|
|
51
|
+
<path
|
|
52
|
+
style="fill:#0e69af;fill-rule:evenodd;stroke:none"
|
|
53
|
+
inkscape:connector-curvature="0"
|
|
54
|
+
id="path19"
|
|
55
|
+
d="m 439.55453,80.396013 c 0,4.102083 -0.57019,6.834103 -1.82405,8.087968 -1.13767,1.253864 -1.93485,1.821346 -4.43987,2.164538 0,0 -0.45669,0.226992 -0.45669,0.226992 2.39153,0.229695 3.75889,1.140369 4.89656,2.505027 1.14036,1.253865 1.48085,3.531899 1.48085,6.266621 0,0 0,6.947601 0,6.947601 0,0 -7.85827,0 -7.85827,0 -0.22699,-0.1135 0.34319,-8.885146 -0.68368,-12.073853 -0.79718,-2.278035 -2.39153,-3.645396 -3.75889,-3.758892 0,0 -14.46538,-0.226993 -14.46538,-0.226993 0,0 0,-5.58294 0,-5.58294 0,0 14.23839,0.113496 14.23839,0.113496 3.3022,0 4.55606,0.229695 4.89655,-3.529197 0.3432,-2.39153 -0.22699,-3.985884 -0.91067,-4.785763 -0.68368,-0.910673 -2.61852,-1.364659 -5.58024,-1.364659 0,0 -12.41704,0 -12.41704,0 0,0 0,-6.036926 0,-6.036926 0,0 13.6682,0 13.6682,0 5.35595,0 8.88515,0.910673 10.7092,2.73202 1.70785,1.710552 2.50503,4.442572 2.50503,8.31496 0,0 0,0 0,0" />
|
|
56
|
+
<polyline
|
|
57
|
+
transform="matrix(2.7022945,0,0,2.7022945,-121.50127,-91.923906)"
|
|
58
|
+
style="fill:#0e69af;fill-rule:evenodd;stroke:none"
|
|
59
|
+
id="polyline21"
|
|
60
|
+
points="222.796,73.463 219.93,73.463 219.93,67.562 212.849,67.562 212.849,73.463 209.94,73.463 209.94,59.68 212.849,59.68 212.849,65.286 219.93,65.286 219.93,59.68 222.796,59.68 222.796,73.463 222.796,73.463 " />
|
|
61
|
+
<polyline
|
|
62
|
+
transform="matrix(2.7022945,0,0,2.7022945,-121.50127,-91.923906)"
|
|
63
|
+
style="fill:#0e69af;fill-rule:evenodd;stroke:none"
|
|
64
|
+
id="polyline23"
|
|
65
|
+
points="252.807,73.463 249.857,73.463 248.887,70.85 242.312,70.85 241.342,73.463 238.35,73.463 242.143,63.094 245.052,63.094 242.986,68.869 248.171,68.869 245.052,59.68 247.623,59.68 252.807,73.463 252.807,73.463 " />
|
|
66
|
+
<path
|
|
67
|
+
style="fill:#0e69af;fill-rule:evenodd;stroke:none"
|
|
68
|
+
inkscape:connector-curvature="0"
|
|
69
|
+
id="path25"
|
|
70
|
+
d="m 600.38699,91.672688 c 0,6.60711 -2.05104,11.049682 -6.15042,13.214222 -2.05104,1.13766 -4.78577,1.70785 -8.20147,1.70785 0,0 -3.5319,0 -3.5319,0 0,0 0,-6.15042 0,-6.15042 0,0 1.93755,0 1.93755,0 1.59435,0 2.73202,-0.1135 3.64269,-0.456691 1.02687,-0.34049 2.05104,-1.02417 2.84822,-2.04834 1.02417,-1.367361 1.59435,-3.758891 1.59435,-7.177294 0,0 0,-6.720607 0,-6.720607 0,-2.051041 -0.11349,-3.531898 -0.34048,-4.329075 -0.3432,-1.594354 -1.25387,-2.73202 -2.50773,-3.415701 -1.25117,-0.570184 -3.18871,-0.910673 -5.80723,-0.910673 0,0 -1.36737,0 -1.36737,0 0,0 0,-6.036926 0,-6.036926 0,0 1.93755,0 1.93755,0 7.17459,0 11.95765,1.70785 14.00869,5.239749 1.25387,2.161836 1.93755,5.239749 1.93755,9.112137 0,0 0,7.971769 0,7.971769 0,0 0,0 0,0 M 582.5032,106.59476 c 0,0 -17.76758,0 -17.76758,0 0,0 0,-37.245727 0,-37.245727 0,0 17.76758,0 17.76758,0 0,0 0,6.036926 0,6.036926 0,0 -9.90931,0 -9.90931,0 0,0 0,25.058381 0,25.058381 0,0 9.90931,0 9.90931,0 0,0 0,6.15042 0,6.15042 0,0 0,0 0,0" />
|
|
71
|
+
<polyline
|
|
72
|
+
transform="matrix(2.7022945,0,0,2.7022945,-121.50127,-91.923906)"
|
|
73
|
+
style="fill:#0e69af;fill-rule:evenodd;stroke:none"
|
|
74
|
+
id="polyline27"
|
|
75
|
+
points="236.622,73.463 225.199,73.463 225.199,59.68 236.579,59.68 236.579,61.914 228.107,61.914 228.107,65.37 236.116,65.37 236.116,67.52 228.107,67.52 228.107,71.187 236.622,71.187 236.622,73.463 236.622,73.463 " />
|
|
76
|
+
<polyline
|
|
77
|
+
transform="matrix(2.7022945,0,0,2.7022945,-121.50127,-91.923906)"
|
|
78
|
+
style="fill:#b1b1b1;fill-rule:evenodd;stroke:none"
|
|
79
|
+
id="polyline29"
|
|
80
|
+
points="214.408,84.211 210.067,84.211 210.067,75.95 214.408,75.95 214.408,77.088 212.048,77.088 212.048,79.153 214.366,79.153 214.366,80.249 212.048,80.249 212.048,83.073 214.408,83.073 214.408,84.211 214.408,84.211 " />
|
|
81
|
+
<path
|
|
82
|
+
style="fill:#b1b1b1;fill-rule:evenodd;stroke:none"
|
|
83
|
+
inkscape:connector-curvature="0"
|
|
84
|
+
id="path31"
|
|
85
|
+
d="m 473.61154,135.52552 c 0,0 -5.35324,0 -5.35324,0 0,0 0,-18.56476 0,-18.56476 0,-1.02687 -0.57019,-1.48086 -1.59436,-1.48086 -1.02687,0 -1.59435,0.45399 -1.59435,1.48086 0,0 0,18.56476 0,18.56476 0,0 -5.35325,0 -5.35325,0 0,0 0,-18.45126 0,-18.45126 0,-1.48086 0.91068,-2.62123 2.50503,-3.5319 1.25387,-0.57019 2.73472,-0.91068 4.44257,-0.91068 1.70785,0 3.18871,0.34049 4.44258,0.91068 1.59435,0.91067 2.50502,2.05104 2.50502,3.5319 0,0 0,18.45126 0,18.45126 0,0 0,0 0,0" />
|
|
86
|
+
<path
|
|
87
|
+
style="fill:#b1b1b1;fill-rule:evenodd;stroke:none"
|
|
88
|
+
inkscape:connector-curvature="0"
|
|
89
|
+
id="path33"
|
|
90
|
+
d="m 489.55778,135.63902 c 0,0 -2.73472,0 -2.73472,0 0,0 -0.45398,-1.36466 -0.45398,-1.36466 -1.14037,1.36466 -2.73473,2.04834 -4.78307,2.04834 -1.48085,0 -2.84821,-0.45398 -3.87509,-1.13766 -1.25116,-0.91068 -1.93484,-2.05105 -1.93484,-3.41841 0,0 0,-14.69237 0,-14.69237 0,-1.48086 0.91067,-2.62123 2.50503,-3.41841 1.25386,-0.56748 2.73472,-0.91067 4.44257,-0.91067 1.70785,0 3.18871,0.34319 4.44257,0.91067 1.59436,0.79718 2.39153,1.93755 2.39153,3.41841 0,0 0,4.44257 0,4.44257 0,0 -5.23975,0 -5.23975,0 0,0 0,-4.66957 0,-4.66957 0,-0.91337 -0.57018,-1.36736 -1.59435,-1.36736 -1.02417,0 -1.59435,0.45399 -1.59435,1.36736 0,0 0,15.03287 0,15.03287 0,1.02687 0.57018,1.48086 1.59435,1.48086 1.02417,0 1.59435,-0.45399 1.59435,-1.48086 0,0 0,-4.78306 0,-4.78306 0,0 -2.27803,0 -2.27803,0 0,0 0,-2.84822 0,-2.84822 0,0 7.51778,0 7.51778,0 0,0 0,11.39017 0,11.39017 0,0 0,0 0,0" />
|
|
91
|
+
<polyline
|
|
92
|
+
transform="matrix(2.7022945,0,0,2.7022945,-121.50127,-91.923906)"
|
|
93
|
+
style="fill:#b1b1b1;fill-rule:evenodd;stroke:none"
|
|
94
|
+
id="polyline35"
|
|
95
|
+
points="228.908,84.211 226.969,84.211 226.969,75.95 228.908,75.95 228.908,84.211 228.908,84.211 " />
|
|
96
|
+
<path
|
|
97
|
+
style="fill:#b1b1b1;fill-rule:evenodd;stroke:none"
|
|
98
|
+
inkscape:connector-curvature="0"
|
|
99
|
+
id="path37"
|
|
100
|
+
d="m 513.2488,135.52552 c 0,0 -5.23975,0 -5.23975,0 0,0 0,-18.56476 0,-18.56476 0,-1.02687 -0.56748,-1.48086 -1.59435,-1.48086 -1.02417,0 -1.59436,0.45399 -1.59436,1.48086 0,0 0,18.56476 0,18.56476 0,0 -5.23975,0 -5.23975,0 0,0 0,-18.45126 0,-18.45126 0,-1.48086 0.91338,-2.62123 2.39153,-3.5319 1.25387,-0.57019 2.73473,-0.91068 4.44258,-0.91068 1.71055,0 3.19141,0.34049 4.44257,0.91068 1.59435,0.91067 2.39153,2.05104 2.39153,3.5319 0,0 0,18.45126 0,18.45126 0,0 0,0 0,0" />
|
|
101
|
+
<polyline
|
|
102
|
+
transform="matrix(2.7022945,0,0,2.7022945,-121.50127,-91.923906)"
|
|
103
|
+
style="fill:#b1b1b1;fill-rule:evenodd;stroke:none"
|
|
104
|
+
id="polyline39"
|
|
105
|
+
points="240.162,84.211 235.821,84.211 235.821,75.95 240.162,75.95 240.162,77.088 237.76,77.088 237.76,79.153 240.12,79.153 240.12,80.249 237.76,80.249 237.76,83.073 240.162,83.073 240.162,84.211 240.162,84.211 " />
|
|
106
|
+
<polyline
|
|
107
|
+
transform="matrix(2.7022945,0,0,2.7022945,-121.50127,-91.923906)"
|
|
108
|
+
style="fill:#b1b1b1;fill-rule:evenodd;stroke:none"
|
|
109
|
+
id="polyline41"
|
|
110
|
+
points="245.052,84.211 240.71,84.211 240.71,75.95 245.052,75.95 245.052,77.088 242.649,77.088 242.649,79.153 245.01,79.153 245.01,80.249 242.649,80.249 242.649,83.073 245.052,83.073 245.052,84.211 245.052,84.211 " />
|
|
111
|
+
<path
|
|
112
|
+
style="fill:#b1b1b1;fill-rule:evenodd;stroke:none"
|
|
113
|
+
inkscape:connector-curvature="0"
|
|
114
|
+
id="path43"
|
|
115
|
+
d="m 555.73698,135.52552 c 0,0 -5.35325,0 -5.35325,0 0,0 0,-7.85827 0,-7.85827 0,-0.79718 -0.22969,-1.25386 -0.79988,-1.59435 -0.11349,0 -0.34049,-0.1135 -0.56748,-0.1135 0,0 0,-2.84822 0,-2.84822 1.02417,-0.34319 1.59435,-1.02687 1.59435,-2.05104 0,0 0,-2.73202 0,-2.73202 0,-1.82405 -0.57018,-2.73472 -1.59435,-2.84822 0,0 0,-2.73472 0,-2.73472 1.59435,0 3.07521,0.34319 4.21288,0.91067 1.59435,0.79718 2.50773,1.93755 2.50773,3.41841 0,0 0,3.98588 0,3.98588 0,2.05104 -1.36736,3.18871 -4.10209,3.4184 2.73473,0.227 4.10209,1.25117 4.10209,3.18871 0,0 0,7.85827 0,7.85827 0,0 0,0 0,0 m -6.72061,-9.56612 c -0.34319,-0.1162 -0.79718,-0.1162 -1.25386,-0.1162 -0.1135,0 -0.227,0 -0.45669,0 0,0 0,9.68232 0,9.68232 0,0 -5.35325,0 -5.35325,0 0,0 0,-18.45126 0,-18.45126 0,-1.48086 0.91068,-2.62123 2.50773,-3.41841 1.25116,-0.56748 2.73202,-0.91067 4.44257,-0.91067 0,0 0.1135,0 0.1135,0 0,0 0,2.73472 0,2.73472 0,0 -0.1135,0 -0.1135,0 -1.02687,0 -1.59705,0.45399 -1.59705,1.36736 0,0 0,6.49092 0,6.49092 0,0 0.1162,0 0.1162,0 0.56748,0 1.13766,-0.1135 1.59435,-0.227 0,0 0,2.84822 0,2.84822 0,0 0,0 0,0" />
|
|
116
|
+
<polyline
|
|
117
|
+
transform="matrix(2.7022945,0,0,2.7022945,-121.50127,-91.923906)"
|
|
118
|
+
style="fill:#b1b1b1;fill-rule:evenodd;stroke:none"
|
|
119
|
+
id="polyline45"
|
|
120
|
+
points="253.44,84.211 251.459,84.211 251.459,75.95 253.44,75.95 253.44,84.211 253.44,84.211 " />
|
|
121
|
+
<path
|
|
122
|
+
style="fill:#b1b1b1;fill-rule:evenodd;stroke:none"
|
|
123
|
+
inkscape:connector-curvature="0"
|
|
124
|
+
id="path47"
|
|
125
|
+
d="m 579.65499,135.52552 c 0,0 -5.23975,0 -5.23975,0 0,0 0,-18.56476 0,-18.56476 0,-1.02687 -0.56749,-1.48086 -1.59436,-1.48086 -1.02417,0 -1.59435,0.45399 -1.59435,1.48086 0,0 0,18.56476 0,18.56476 0,0 -5.35325,0 -5.35325,0 0,0 0,-18.45126 0,-18.45126 0,-1.48086 0.79718,-2.62123 2.50503,-3.5319 1.25387,-0.57019 2.73472,-0.91068 4.44257,-0.91068 1.59436,0 3.07521,0.34049 4.44258,0.91068 1.59435,0.91067 2.39153,2.05104 2.39153,3.5319 0,0 0,18.45126 0,18.45126 0,0 0,0 0,0" />
|
|
126
|
+
<path
|
|
127
|
+
style="fill:#b1b1b1;fill-rule:evenodd;stroke:none"
|
|
128
|
+
inkscape:connector-curvature="0"
|
|
129
|
+
id="path49"
|
|
130
|
+
d="m 595.71472,135.63902 c 0,0 -2.73202,0 -2.73202,0 0,0 -0.45669,-1.36466 -0.45669,-1.36466 -1.25116,1.36466 -2.84821,2.04834 -4.89655,2.04834 -1.48086,0 -2.73472,-0.45398 -3.87239,-1.13766 -1.25387,-0.91068 -1.82405,-2.05105 -1.82405,-3.41841 0,0 0,-14.69237 0,-14.69237 0,-1.48086 0.79718,-2.62123 2.50773,-3.41841 1.25116,-0.56748 2.73202,-0.91067 4.43987,-0.91067 1.59435,0 3.07521,0.34319 4.44257,0.91067 1.59436,0.79718 2.39153,1.93755 2.39153,3.41841 0,0 0,4.44257 0,4.44257 0,0 -5.35324,0 -5.35324,0 0,0 0,-4.66957 0,-4.66957 0,-0.91337 -0.45399,-1.36736 -1.48086,-1.36736 -1.02417,0 -1.59435,0.45399 -1.59435,1.36736 0,0 0,15.03287 0,15.03287 0,1.02687 0.57018,1.48086 1.59435,1.48086 1.02687,0 1.48086,-0.45399 1.48086,-1.48086 0,0 0,-4.78306 0,-4.78306 0,0 -2.27804,0 -2.27804,0 0,0 0,-2.84822 0,-2.84822 0,0 7.63128,0 7.63128,0 0,0 0,11.39017 0,11.39017 0,0 0,0 0,0" />
|
|
131
|
+
<rect
|
|
132
|
+
style="fill:#0c3879;fill-rule:evenodd;stroke:none"
|
|
133
|
+
id="rect51"
|
|
134
|
+
height="97.671738"
|
|
135
|
+
width="97.671738"
|
|
136
|
+
y="54"
|
|
137
|
+
x="71.375" />
|
|
138
|
+
<path
|
|
139
|
+
style="fill:#ffffff;fill-rule:evenodd;stroke:none"
|
|
140
|
+
inkscape:connector-curvature="0"
|
|
141
|
+
id="path53"
|
|
142
|
+
d="m 129.12574,93.639959 c 0,0 22.04261,0 22.04261,0 2.79147,0 4.88305,0.835009 6.55847,2.650951 1.5322,1.67272 2.2321,3.7643 2.2321,6.27743 0,2.36991 -0.6999,4.46419 -2.2321,6.27743 -1.67542,1.67542 -3.767,2.65095 -6.55847,2.65095 0,0 -22.04261,0 -22.04261,0 0,0 0,-17.856761 0,-17.856761 0,0 0,0 0,0 0,0 0,0 0,0 m 0,23.158661 c 0,0 22.04261,0 22.04261,0 2.79147,0 4.88305,0.83771 6.55847,2.65095 1.5322,1.67272 2.2321,3.767 2.2321,6.27743 0,2.37262 -0.6999,4.46419 -2.2321,6.27743 -1.67542,1.67543 -3.767,2.65096 -6.55847,2.65096 0,0 -22.04261,0 -22.04261,0 0,0 0,-17.85677 0,-17.85677 0,0 0,0 0,0" />
|
|
143
|
+
<path
|
|
144
|
+
style="fill:#ffffff;fill-rule:evenodd;stroke:none"
|
|
145
|
+
inkscape:connector-curvature="0"
|
|
146
|
+
id="path55"
|
|
147
|
+
d="m 115.73316,134.65539 c -5.86127,0 -8.79056,-3.06981 -8.79056,-8.92839 0,0 -0.13782,-37.388943 -0.13782,-37.388943 0,0 -20.648229,-0.14052 -20.648229,-0.14052 -7.115141,-1.253864 -10.184948,-9.625573 -5.164085,-15.205811 1.534904,-1.534903 3.629182,-2.372615 6.139614,-2.650951 0,0 26.92566,0 26.92566,0 0,0 1.67542,0.140519 1.67542,0.140519 0,0 35.43519,0 35.43519,0 2.79147,0 4.88305,0.835009 6.55847,2.648249 1.5322,1.675423 2.2321,3.766999 2.2321,6.280133 0,2.369912 -0.6999,4.46419 -2.2321,6.27743 -1.67542,1.67272 -3.767,2.650951 -6.55847,2.650951 0,0 -26.64732,0 -26.64732,0 0,0 0,0.418855 0,0.418855 0,0 0,0 0,0 0,0 0,45.898478 0,45.898478 0,0 -8.78787,0 -8.78787,0 0,0 0,0 0,0" />
|
|
148
|
+
</g>
|
|
149
|
+
</g>
|
|
150
|
+
</svg>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/** @typedef {typeof __propDef.props} TeCiLogoProps */
|
|
2
|
+
/** @typedef {typeof __propDef.events} TeCiLogoEvents */
|
|
3
|
+
/** @typedef {typeof __propDef.slots} TeCiLogoSlots */
|
|
4
|
+
export default class TeCiLogo extends SvelteComponentTyped<{}, {
|
|
5
|
+
[evt: string]: CustomEvent<any>;
|
|
6
|
+
}, {}> {
|
|
7
|
+
}
|
|
8
|
+
export type TeCiLogoProps = typeof __propDef.props;
|
|
9
|
+
export type TeCiLogoEvents = typeof __propDef.events;
|
|
10
|
+
export type TeCiLogoSlots = typeof __propDef.slots;
|
|
11
|
+
import { SvelteComponentTyped } from "svelte";
|
|
12
|
+
declare const __propDef: {
|
|
13
|
+
props: {};
|
|
14
|
+
events: {
|
|
15
|
+
[evt: string]: CustomEvent<any>;
|
|
16
|
+
};
|
|
17
|
+
slots: {};
|
|
18
|
+
};
|
|
19
|
+
export {};
|
package/README.md
ADDED
|
@@ -0,0 +1,156 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import { createEventDispatcher } from 'svelte';
|
|
3
|
+
import Modal from "../../Modal/index.svelte";
|
|
4
|
+
|
|
5
|
+
export let resellerModal = true;
|
|
6
|
+
let modal;
|
|
7
|
+
export let selection = 'sel';
|
|
8
|
+
let resellerIndex = -1;
|
|
9
|
+
let resellerArray = [
|
|
10
|
+
["BE", "NL", "LU"],
|
|
11
|
+
["CN","HK"],
|
|
12
|
+
["CZ","SK"],
|
|
13
|
+
["EG","JO","LB","OM","QA","SA","AE"],
|
|
14
|
+
["FR"],
|
|
15
|
+
["DE","CH","AT","LI"],
|
|
16
|
+
["IN","BD","LK","CM","BT","MM"],
|
|
17
|
+
["IT","HU"],
|
|
18
|
+
["JP"],
|
|
19
|
+
["KR"],
|
|
20
|
+
["PL"],
|
|
21
|
+
["RU","AM","AZ","BY","GE","KZ","KG","MD","TJ","TM","UA","UZ"],
|
|
22
|
+
["RO"],
|
|
23
|
+
["SG","MY","ID","VN"],
|
|
24
|
+
["ES"]
|
|
25
|
+
]
|
|
26
|
+
|
|
27
|
+
export let allowContinue = false;
|
|
28
|
+
|
|
29
|
+
function isReseller() {
|
|
30
|
+
resellerIndex = resellerArray.findIndex(arr => arr.includes(selection))
|
|
31
|
+
return resellerIndex > -1
|
|
32
|
+
};
|
|
33
|
+
|
|
34
|
+
function handleSelection() {
|
|
35
|
+
if (resellerModal){
|
|
36
|
+
if (selection != "sel" && !isReseller() ) {
|
|
37
|
+
allowContinue = true;
|
|
38
|
+
} else if (selection != "sel" && isReseller()) {
|
|
39
|
+
modal.show();
|
|
40
|
+
allowContinue = false;
|
|
41
|
+
} else {
|
|
42
|
+
allowContinue = false;
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
};
|
|
46
|
+
</script>
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
<select name="card_country" bind:value={selection} on:change={handleSelection}>
|
|
50
|
+
<option value="sel">Select Your Country</option>
|
|
51
|
+
<option value="AI">Anguilla</option>
|
|
52
|
+
<option value="AR">Argentina</option>
|
|
53
|
+
<option value="AM">Armenia</option>
|
|
54
|
+
<option value="AU">Australia</option>
|
|
55
|
+
<option value="AT">Austria</option>
|
|
56
|
+
<option value="AZ">Azerbaijan</option>
|
|
57
|
+
<option value="BD">Bangladesh</option>
|
|
58
|
+
<option value="BY">Belarus</option>
|
|
59
|
+
<option value="BE">Belgium</option>
|
|
60
|
+
<option value="BR">Brazil</option>
|
|
61
|
+
<option value="CA">Canada</option>
|
|
62
|
+
<option value="CL">Chile</option>
|
|
63
|
+
<option value="HR">Croatia</option>
|
|
64
|
+
<option value="CN">China</option>
|
|
65
|
+
<option value="CR">Costa Rica</option>
|
|
66
|
+
<option value="CY">Cyprus</option>
|
|
67
|
+
<option value="CZ">Czech Republic</option>
|
|
68
|
+
<option value="DK">Denmark</option>
|
|
69
|
+
<option value="DO">Dominican Republic</option>
|
|
70
|
+
<option value="EC">Ecuador</option>
|
|
71
|
+
<option value="EG">Egypt</option>
|
|
72
|
+
<option value="EE">Estonia</option>
|
|
73
|
+
<option value="FO">Faroe Islands</option>
|
|
74
|
+
<option value="FI">Finland</option>
|
|
75
|
+
<option value="FR">France</option>
|
|
76
|
+
<option value="GE">Georgia</option>
|
|
77
|
+
<option value="DE">Germany</option>
|
|
78
|
+
<option value="GR">Greece</option>
|
|
79
|
+
<option value="HK">Hong Kong</option>
|
|
80
|
+
<option value="HU">Hungary</option>
|
|
81
|
+
<option value="IS">Iceland</option>
|
|
82
|
+
<option value="IN">India</option>
|
|
83
|
+
<option value="ID">Indonesia</option>
|
|
84
|
+
<option value="IE">Ireland</option>
|
|
85
|
+
<option value="IL">Israel</option>
|
|
86
|
+
<option value="IT">Italy</option>
|
|
87
|
+
<option value="JM">Jamaica</option>
|
|
88
|
+
<option value="JP">Japan</option>
|
|
89
|
+
<option value="JO">Jordan</option>
|
|
90
|
+
<option value="KZ">Kazakhstan</option>
|
|
91
|
+
<option value="KW">Kuwait</option>
|
|
92
|
+
<option value="KG">Kyrgyzstan</option>
|
|
93
|
+
<option value="LV">Latvia</option>
|
|
94
|
+
<option value="LB">Lebanon</option>
|
|
95
|
+
<option value="LT">Lithuania</option>
|
|
96
|
+
<option value="LU">Luxembourg</option>
|
|
97
|
+
<option value="MY">Malaysia</option>
|
|
98
|
+
<option value="MT">Malta</option>
|
|
99
|
+
<option value="MX">Mexico</option>
|
|
100
|
+
<option value="MD">Moldova</option>
|
|
101
|
+
<option value="MM">Myanmar</option>
|
|
102
|
+
<option value="CM">Nepal</option>
|
|
103
|
+
<option value="NL">Netherlands</option>
|
|
104
|
+
<option value="NZ">New Zealand</option>
|
|
105
|
+
<option value="NO">Norway</option>
|
|
106
|
+
<option value="OM">Oman</option>
|
|
107
|
+
<option value="PE">Peru</option>
|
|
108
|
+
<option value="PH">Philippines</option>
|
|
109
|
+
<option value="PL">Poland</option>
|
|
110
|
+
<option value="PT">Portugal</option>
|
|
111
|
+
<option value="QA">Qatar</option>
|
|
112
|
+
<option value="RO">Romania</option>
|
|
113
|
+
<option value="RU">Russia</option>
|
|
114
|
+
<option value="SA">Saudi Arabia</option>
|
|
115
|
+
<option value="SG">Singapore</option>
|
|
116
|
+
<option value="SK">Slovakia</option>
|
|
117
|
+
<option value="SI">Slovenia</option>
|
|
118
|
+
<option value="ZA">South Africa</option>
|
|
119
|
+
<option value="KR">South Korea</option>
|
|
120
|
+
<option value="ES">Spain</option>
|
|
121
|
+
<option value="LK">Sri Lanka</option>
|
|
122
|
+
<option value="SE">Sweden</option>
|
|
123
|
+
<option value="CH">Switzerland</option>
|
|
124
|
+
<option value="TW">Taiwan</option>
|
|
125
|
+
<option value="TJ">Tajikistan</option>
|
|
126
|
+
<option value="TH">Thailand</option>
|
|
127
|
+
<option value="TR">Turkey</option>
|
|
128
|
+
<option value="TM">Turkmenistan</option>
|
|
129
|
+
<option value="UA">Ukraine</option>
|
|
130
|
+
<option value="AE">United Arab Emirates</option>
|
|
131
|
+
<option value="GB">United Kingdom</option>
|
|
132
|
+
<option value="US">United States</option>
|
|
133
|
+
<option value="UY">Uruguay</option>
|
|
134
|
+
<option value="UZ">Uzbekistan</option>
|
|
135
|
+
<option value="VE">Venezuela</option>
|
|
136
|
+
<option value="VN">Viet Nam</option>
|
|
137
|
+
</select>
|
|
138
|
+
|
|
139
|
+
<Modal bind:this={modal}>
|
|
140
|
+
<div class="mt-3 text-center">
|
|
141
|
+
<h2 class="text-lg leading-6 font-medium text-gray-900">Reseller Required</h2>
|
|
142
|
+
<div class="mt-2 px-7 py-3">
|
|
143
|
+
<p class="text-sm text-gray-500">
|
|
144
|
+
Thunderhead cannot sell to you directly, you must use the authorized reseller for your region.
|
|
145
|
+
</p>
|
|
146
|
+
</div>
|
|
147
|
+
<div class="items-center px-4 py-3">
|
|
148
|
+
<a href="https://www.thunderheadeng.com/pyrosim/pyrosim-licensing/#r{resellerIndex+1}"
|
|
149
|
+
id="ok-btn"
|
|
150
|
+
class="px-4 py-2 bg-teci-blue-light text-white text-base font-medium w-full shadow-sm hover:bg-teci-blue-dark focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500"
|
|
151
|
+
>
|
|
152
|
+
Reseller Contact Information
|
|
153
|
+
</a>
|
|
154
|
+
</div>
|
|
155
|
+
</div>
|
|
156
|
+
</Modal>
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
/** @typedef {typeof __propDef.props} IndexProps */
|
|
2
|
+
/** @typedef {typeof __propDef.events} IndexEvents */
|
|
3
|
+
/** @typedef {typeof __propDef.slots} IndexSlots */
|
|
4
|
+
export default class Index extends SvelteComponentTyped<{
|
|
5
|
+
resellerModal?: boolean;
|
|
6
|
+
selection?: string;
|
|
7
|
+
allowContinue?: boolean;
|
|
8
|
+
}, {
|
|
9
|
+
[evt: string]: CustomEvent<any>;
|
|
10
|
+
}, {}> {
|
|
11
|
+
}
|
|
12
|
+
export type IndexProps = typeof __propDef.props;
|
|
13
|
+
export type IndexEvents = typeof __propDef.events;
|
|
14
|
+
export type IndexSlots = typeof __propDef.slots;
|
|
15
|
+
import { SvelteComponentTyped } from "svelte";
|
|
16
|
+
declare const __propDef: {
|
|
17
|
+
props: {
|
|
18
|
+
resellerModal?: boolean;
|
|
19
|
+
selection?: string;
|
|
20
|
+
allowContinue?: boolean;
|
|
21
|
+
};
|
|
22
|
+
events: {
|
|
23
|
+
[evt: string]: CustomEvent<any>;
|
|
24
|
+
};
|
|
25
|
+
slots: {};
|
|
26
|
+
};
|
|
27
|
+
export {};
|
|
@@ -0,0 +1,191 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import { session } from '$app/stores'
|
|
3
|
+
export const token = $session.token
|
|
4
|
+
export let login = false;
|
|
5
|
+
|
|
6
|
+
let d = new Date();
|
|
7
|
+
|
|
8
|
+
async function signOut() {
|
|
9
|
+
const response = await fetch('/auth/logout', {
|
|
10
|
+
method: 'GET',
|
|
11
|
+
headers: {
|
|
12
|
+
'content-type': 'application/json'
|
|
13
|
+
}
|
|
14
|
+
})
|
|
15
|
+
if (response.ok) {
|
|
16
|
+
visibleProfile = !visibleProfile;
|
|
17
|
+
window.location.href = '/'
|
|
18
|
+
} else {
|
|
19
|
+
alert(await response.text())
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
</script>
|
|
23
|
+
|
|
24
|
+
<footer class="bg-gray-800" aria-labelledby="footerHeading">
|
|
25
|
+
<h2 id="footerHeading" class="sr-only">Footer</h2>
|
|
26
|
+
<div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:py-16 lg:px-8">
|
|
27
|
+
<div class="xl:grid xl:grid-cols-3 xl:gap-8">
|
|
28
|
+
<div class="grid grid-cols-2 gap-8 xl:col-span-2">
|
|
29
|
+
<div class="md:grid md:grid-cols-2 md:gap-8">
|
|
30
|
+
<div>
|
|
31
|
+
<h3 class="text-sm font-semibold text-gray-500 tracking-wider uppercase">
|
|
32
|
+
Products
|
|
33
|
+
</h3>
|
|
34
|
+
<ul class="mt-4 space-y-4">
|
|
35
|
+
<li>
|
|
36
|
+
<a href="https://www.thunderheadeng.com/pyrosim/" class="text-base text-gray-300 hover:text-white">
|
|
37
|
+
PyroSim
|
|
38
|
+
</a>
|
|
39
|
+
</li>
|
|
40
|
+
<li>
|
|
41
|
+
<a href="https://www.thunderheadeng.com/pathfinder/" class="text-base text-gray-300 hover:text-white">
|
|
42
|
+
Pathfinder
|
|
43
|
+
</a>
|
|
44
|
+
</li>
|
|
45
|
+
<li>
|
|
46
|
+
<a href="https://www.thunderheadeng.com/petrasim/" class="text-base text-gray-300 hover:text-white">
|
|
47
|
+
PetraSim
|
|
48
|
+
</a>
|
|
49
|
+
</li>
|
|
50
|
+
<li>
|
|
51
|
+
<a href="https://www.thunderheadeng.com/" class="text-base text-gray-300 hover:text-white">
|
|
52
|
+
Other Tools
|
|
53
|
+
</a>
|
|
54
|
+
</li>
|
|
55
|
+
</ul>
|
|
56
|
+
</div>
|
|
57
|
+
<div class="mt-12 md:mt-0">
|
|
58
|
+
<h3 class="text-sm font-semibold text-gray-500 tracking-wider uppercase">
|
|
59
|
+
Support
|
|
60
|
+
</h3>
|
|
61
|
+
<ul class="mt-4 space-y-4">
|
|
62
|
+
<li>
|
|
63
|
+
<a href="https://support.thunderheadeng.com/docs/" class="text-base text-gray-300 hover:text-white">
|
|
64
|
+
Documentation
|
|
65
|
+
</a>
|
|
66
|
+
</li>
|
|
67
|
+
<li>
|
|
68
|
+
<a href="https://support.thunderheadeng.com/tutorials/" class="text-base text-gray-300 hover:text-white">
|
|
69
|
+
Tutorials
|
|
70
|
+
</a>
|
|
71
|
+
</li>
|
|
72
|
+
<li>
|
|
73
|
+
<a href="https://support.thunderheadeng.com/release-notes/" class="text-base text-gray-300 hover:text-white">
|
|
74
|
+
Release Notes
|
|
75
|
+
</a>
|
|
76
|
+
</li>
|
|
77
|
+
<li>
|
|
78
|
+
<a href="https://support.thunderheadeng.com/answers/" class="text-base text-gray-300 hover:text-white">
|
|
79
|
+
FAQs
|
|
80
|
+
</a>
|
|
81
|
+
</li>
|
|
82
|
+
</ul>
|
|
83
|
+
</div>
|
|
84
|
+
</div>
|
|
85
|
+
<div class="md:grid md:grid-cols-2 md:gap-8">
|
|
86
|
+
<div>
|
|
87
|
+
<h3 class="text-sm font-semibold text-gray-500 tracking-wider uppercase">
|
|
88
|
+
Events
|
|
89
|
+
</h3>
|
|
90
|
+
<ul class="mt-4 space-y-4">
|
|
91
|
+
<li>
|
|
92
|
+
<a href="https://www.thunderheadeng.com/training/" class="text-base text-gray-300 hover:text-white">
|
|
93
|
+
Calendar
|
|
94
|
+
</a>
|
|
95
|
+
</li>
|
|
96
|
+
<li>
|
|
97
|
+
<a href="https://www.femtc.com/" class="text-base text-gray-300 hover:text-white">
|
|
98
|
+
FEMTC
|
|
99
|
+
</a>
|
|
100
|
+
</li>
|
|
101
|
+
<li>
|
|
102
|
+
<a href="https://www.thunderheadeng.com/training/" class="text-base text-gray-300 hover:text-white">
|
|
103
|
+
Training
|
|
104
|
+
</a>
|
|
105
|
+
</li>
|
|
106
|
+
</ul>
|
|
107
|
+
</div>
|
|
108
|
+
<div class="mt-12 md:mt-0">
|
|
109
|
+
<h3 class="text-sm font-semibold text-gray-500 tracking-wider uppercase">
|
|
110
|
+
Company
|
|
111
|
+
</h3>
|
|
112
|
+
<ul class="mt-4 space-y-4">
|
|
113
|
+
<li>
|
|
114
|
+
<a href="https://www.thunderheadeng.com/about/" class="text-base text-gray-300 hover:text-white">
|
|
115
|
+
About
|
|
116
|
+
</a>
|
|
117
|
+
</li>
|
|
118
|
+
<li>
|
|
119
|
+
<a href="https://www.thunderheadeng.com/news/" class="text-base text-gray-300 hover:text-white">
|
|
120
|
+
News
|
|
121
|
+
</a>
|
|
122
|
+
</li>
|
|
123
|
+
<li>
|
|
124
|
+
<a href="https://www.thunderheadeng.com/job-openings/" class="text-base text-gray-300 hover:text-white">
|
|
125
|
+
Jobs
|
|
126
|
+
</a>
|
|
127
|
+
</li>
|
|
128
|
+
<li>
|
|
129
|
+
<a href="https://www.thunderheadeng.com/pyrosim/pyrosim-licensing/#distributors" class="text-base text-gray-300 hover:text-white">
|
|
130
|
+
Partners
|
|
131
|
+
</a>
|
|
132
|
+
</li>
|
|
133
|
+
</ul>
|
|
134
|
+
</div>
|
|
135
|
+
</div>
|
|
136
|
+
</div>
|
|
137
|
+
<div class="mt-8 xl:mt-0 flex flex-col justify-between md:items-end">
|
|
138
|
+
<h3 class="text-right text-sm font-semibold text-gray-500 tracking-wider uppercase">
|
|
139
|
+
Subscribe to Updates
|
|
140
|
+
</h3>
|
|
141
|
+
<p class="text-right mt-4 text-gray-300 text-base xxl:text-lg leading-6">
|
|
142
|
+
Receive information about new software releases, tutorials and major announcements.
|
|
143
|
+
</p>
|
|
144
|
+
<data id="mj-w-res-data" data-token="c59142d82197a4f86bc30e8fa80e1ea8" class="mj-w-data" data-apikey="3aOX"
|
|
145
|
+
data-w-id="Fbu" data-lang="en_US" data-base="https://app.mailjet.com" data-width="640" data-height="480"
|
|
146
|
+
data-statics="statics"></data>
|
|
147
|
+
<div class="mj-w-button mj-w-btn mt-4 w-full md:max-w-xs" data-token="c59142d82197a4f86bc30e8fa80e1ea8">
|
|
148
|
+
<div class="mj-w-button-content w-full flex items-center justify-center px-4 py-2 border border-transparent text-base leading-6 font-medium text-white hover:bg-teci-blue-dark bg-teci-blue-light focus:outline-none focus:border-teci-blue-dark transition duration-150 ease-in-out">
|
|
149
|
+
Sign Up
|
|
150
|
+
</div>
|
|
151
|
+
</div>
|
|
152
|
+
</div>
|
|
153
|
+
</div>
|
|
154
|
+
<div class="mt-8 border-t border-gray-700 pt-8 md:flex md:items-center md:justify-between">
|
|
155
|
+
<div class="flex space-x-6 md:order-3">
|
|
156
|
+
<a href="https://www.linkedin.com/company/thunderheadeng" class="text-gray-400 hover:text-gray-300">
|
|
157
|
+
<span class="sr-only">LinkedIn</span>
|
|
158
|
+
<svg class="h-6 w-6" fill="currentColor" viewBox="0 0 24 24" aria-hidden="true">
|
|
159
|
+
<path fill-rule="evenodd" d="M19 0h-14c-2.761 0-5 2.239-5 5v14c0 2.761 2.239 5 5 5h14c2.762 0 5-2.239 5-5v-14c0-2.761-2.238-5-5-5zm-11 19h-3v-11h3v11zm-1.5-12.268c-.966 0-1.75-.79-1.75-1.764s.784-1.764 1.75-1.764 1.75.79 1.75 1.764-.783 1.764-1.75 1.764zm13.5 12.268h-3v-5.604c0-3.368-4-3.113-4 0v5.604h-3v-11h3v1.765c1.396-2.586 7-2.777 7 2.476v6.759z"/>
|
|
160
|
+
</svg>
|
|
161
|
+
</a>
|
|
162
|
+
|
|
163
|
+
<a href="https://www.facebook.com/thunderheadeng" class="text-gray-400 hover:text-gray-300">
|
|
164
|
+
<span class="sr-only">Facebook</span>
|
|
165
|
+
<svg class="h-6 w-6" fill="currentColor" viewBox="0 0 24 24" aria-hidden="true">
|
|
166
|
+
<path fill-rule="evenodd" d="M22 12c0-5.523-4.477-10-10-10S2 6.477 2 12c0 4.991 3.657 9.128 8.438 9.878v-6.987h-2.54V12h2.54V9.797c0-2.506 1.492-3.89 3.777-3.89 1.094 0 2.238.195 2.238.195v2.46h-1.26c-1.243 0-1.63.771-1.63 1.562V12h2.773l-.443 2.89h-2.33v6.988C18.343 21.128 22 16.991 22 12z" clip-rule="evenodd" />
|
|
167
|
+
</svg>
|
|
168
|
+
</a>
|
|
169
|
+
|
|
170
|
+
<a href="https://twitter.com/thunderheadeng" class="text-gray-400 hover:text-gray-300">
|
|
171
|
+
<span class="sr-only">Twitter</span>
|
|
172
|
+
<svg class="h-6 w-6" fill="currentColor" viewBox="0 0 24 24" aria-hidden="true">
|
|
173
|
+
<path d="M8.29 20.251c7.547 0 11.675-6.253 11.675-11.675 0-.178 0-.355-.012-.53A8.348 8.348 0 0022 5.92a8.19 8.19 0 01-2.357.646 4.118 4.118 0 001.804-2.27 8.224 8.224 0 01-2.605.996 4.107 4.107 0 00-6.993 3.743 11.65 11.65 0 01-8.457-4.287 4.106 4.106 0 001.27 5.477A4.072 4.072 0 012.8 9.713v.052a4.105 4.105 0 003.292 4.022 4.095 4.095 0 01-1.853.07 4.108 4.108 0 003.834 2.85A8.233 8.233 0 012 18.407a11.616 11.616 0 006.29 1.84" />
|
|
174
|
+
</svg>
|
|
175
|
+
</a>
|
|
176
|
+
</div>
|
|
177
|
+
<p class="mt-8 text-sm text-gray-500 md:mt-0 md:order-1">
|
|
178
|
+
© 1998 - { d.getFullYear() } Thunderhead Engineering, All rights reserved.
|
|
179
|
+
</p>
|
|
180
|
+
{#if login}
|
|
181
|
+
<div class="mt-4 md:mt-0 md:order-2">
|
|
182
|
+
{#if token}
|
|
183
|
+
<button on:click|preventDefault={signOut} class="w-40 mx-auto flex items-center justify-center px-4 py-2 border border-transparent text-base leading-6 font-medium text-white hover:bg-teci-blue-light bg-teci-blue-dark focus:outline-none focus:border-teci-blue-dark transition duration-150 ease-in-out">Staff Log out</button>
|
|
184
|
+
{:else}
|
|
185
|
+
<a href="/auth/login" class="w-40 mx-auto flex items-center justify-center px-4 py-2 border border-transparent text-base leading-6 font-medium text-white hover:bg-teci-blue-light bg-teci-blue-dark focus:outline-none focus:border-teci-blue-dark transition duration-150 ease-in-out">Staff Sign In</a>
|
|
186
|
+
{/if}
|
|
187
|
+
</div>
|
|
188
|
+
{/if}
|
|
189
|
+
</div>
|
|
190
|
+
</div>
|
|
191
|
+
</footer>
|