tecitheme 0.7.6 → 0.8.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/package.json +1 -1
- package/dist/assets/TECi_logo.svelte +0 -177
- package/dist/assets/TECi_logo.svelte.d.ts +0 -23
- package/dist/assets/js/store.d.ts +0 -3
- package/dist/assets/js/store.js +0 -4
- package/dist/components/Accordion.svelte +0 -74
- package/dist/components/Accordion.svelte.d.ts +0 -27
- package/dist/components/Banner.svelte +0 -91
- package/dist/components/Banner.svelte.d.ts +0 -33
- package/dist/components/Button.svelte +0 -21
- package/dist/components/Button.svelte.d.ts +0 -37
- package/dist/components/CTA.svelte +0 -51
- package/dist/components/CTA.svelte.d.ts +0 -23
- package/dist/components/CTASplitImage.svelte +0 -34
- package/dist/components/CTASplitImage.svelte.d.ts +0 -23
- package/dist/components/Card.svelte +0 -91
- package/dist/components/Card.svelte.d.ts +0 -25
- package/dist/components/CognitoForm.svelte +0 -24
- package/dist/components/CognitoForm.svelte.d.ts +0 -27
- package/dist/components/ContentTwoColumns.svelte +0 -54
- package/dist/components/ContentTwoColumns.svelte.d.ts +0 -23
- package/dist/components/CountrySelector.svelte +0 -167
- package/dist/components/CountrySelector.svelte.d.ts +0 -27
- package/dist/components/FeatureGrid.svelte +0 -44
- package/dist/components/FeatureGrid.svelte.d.ts +0 -23
- package/dist/components/Figure.svelte +0 -40
- package/dist/components/Figure.svelte.d.ts +0 -29
- package/dist/components/Footer.svelte +0 -243
- package/dist/components/Footer.svelte.d.ts +0 -23
- package/dist/components/Header.svelte +0 -1178
- package/dist/components/Header.svelte.d.ts +0 -30
- package/dist/components/HeadingCentered.svelte +0 -38
- package/dist/components/HeadingCentered.svelte.d.ts +0 -23
- package/dist/components/Hero.svelte +0 -82
- package/dist/components/Hero.svelte.d.ts +0 -23
- package/dist/components/Icon.svelte +0 -162
- package/dist/components/Icon.svelte.d.ts +0 -25
- package/dist/components/LogoCloud.svelte +0 -25
- package/dist/components/LogoCloud.svelte.d.ts +0 -23
- package/dist/components/Math.svelte +0 -24
- package/dist/components/Math.svelte.d.ts +0 -25
- package/dist/components/MediaFeature.svelte +0 -76
- package/dist/components/MediaFeature.svelte.d.ts +0 -23
- package/dist/components/Modal.svelte +0 -69
- package/dist/components/Modal.svelte.d.ts +0 -29
- package/dist/components/NewsGrid.svelte +0 -196
- package/dist/components/NewsGrid.svelte.d.ts +0 -23
- package/dist/components/PricingTable.svelte +0 -100
- package/dist/components/PricingTable.svelte.d.ts +0 -23
- package/dist/components/SidebarContent.svelte +0 -124
- package/dist/components/SidebarContent.svelte.d.ts +0 -33
- package/dist/components/Stats.svelte +0 -40
- package/dist/components/Stats.svelte.d.ts +0 -23
- package/dist/components/Testimonial.svelte +0 -168
- package/dist/components/Testimonial.svelte.d.ts +0 -23
- package/dist/components/ThreeColumn.svelte +0 -20
- package/dist/components/ThreeColumn.svelte.d.ts +0 -23
- package/dist/components/TrialForm.svelte +0 -296
- package/dist/components/TrialForm.svelte.d.ts +0 -14
- package/dist/components/Video.svelte +0 -125
- package/dist/components/Video.svelte.d.ts +0 -27
- package/dist/components/Wrap.svelte +0 -12
- package/dist/components/Wrap.svelte.d.ts +0 -31
- package/dist/get-content.d.ts +0 -9
- package/dist/get-content.js +0 -98
- package/dist/index.d.ts +0 -31
- package/dist/index.js +0 -31
- package/dist/layouts/blocks.svelte +0 -95
- package/dist/layouts/blocks.svelte.d.ts +0 -47
- package/dist/req_utils.d.ts +0 -3
- package/dist/req_utils.js +0 -63
- package/dist/site_config.json +0 -13
- package/dist/utils.d.ts +0 -5
- package/dist/utils.js +0 -162
- package/dist/variables.d.ts +0 -3
- package/dist/variables.js +0 -5
|
@@ -1,1178 +0,0 @@
|
|
|
1
|
-
<script>
|
|
2
|
-
import Icon from "./Icon.svelte";
|
|
3
|
-
import { slide } from "svelte/transition";
|
|
4
|
-
import { cubicIn, cubicOut } from "svelte/easing";
|
|
5
|
-
|
|
6
|
-
let openMenu = "";
|
|
7
|
-
|
|
8
|
-
export function clickOutside(node) {
|
|
9
|
-
const handleClick = (event) => {
|
|
10
|
-
if (
|
|
11
|
-
!node.contains(event.target) &&
|
|
12
|
-
event.target.innerText.toLowerCase() != node.parentElement.id
|
|
13
|
-
) {
|
|
14
|
-
node.dispatchEvent(new CustomEvent("outclick"));
|
|
15
|
-
}
|
|
16
|
-
};
|
|
17
|
-
document.addEventListener("click", handleClick, true);
|
|
18
|
-
return {
|
|
19
|
-
destroy() {
|
|
20
|
-
document.removeEventListener("click", handleClick, true);
|
|
21
|
-
},
|
|
22
|
-
};
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
function handleEscape({ key }) {
|
|
26
|
-
if (key === "Escape") {
|
|
27
|
-
openMenu = "";
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
</script>
|
|
31
|
-
|
|
32
|
-
<svelte:window on:keyup={handleEscape} />
|
|
33
|
-
|
|
34
|
-
<header id="menu" class="relative">
|
|
35
|
-
<div
|
|
36
|
-
aria-hidden="true"
|
|
37
|
-
class="pointer-events-none absolute inset-0 z-30 shadow"
|
|
38
|
-
/>
|
|
39
|
-
<div
|
|
40
|
-
class="relative mx-auto flex max-w-7xl items-center justify-between px-4 py-5 sm:px-6 sm:py-4 md:justify-start md:space-x-6 lg:space-x-10 lg:px-8"
|
|
41
|
-
>
|
|
42
|
-
<!-- Nav Icon Linked to WWW Homepage -->
|
|
43
|
-
<div class="flex-shrink-0">
|
|
44
|
-
<a href="https://www.thunderheadeng.com" class="flex">
|
|
45
|
-
<span class="sr-only">Thunderhead Engineering</span>
|
|
46
|
-
<Icon classes="h-10 w-auto" />
|
|
47
|
-
</a>
|
|
48
|
-
</div>
|
|
49
|
-
|
|
50
|
-
<!-- Nav Menu -->
|
|
51
|
-
<div class="hidden md:flex md:flex-1 md:items-center md:justify-between">
|
|
52
|
-
<nav class="flex md:space-x-6 lg:space-x-10">
|
|
53
|
-
<!-- Products -->
|
|
54
|
-
<div id="products">
|
|
55
|
-
<button
|
|
56
|
-
type="button"
|
|
57
|
-
on:click={() =>
|
|
58
|
-
openMenu == "products"
|
|
59
|
-
? (openMenu = "")
|
|
60
|
-
: (openMenu = "products")}
|
|
61
|
-
class="group inline-flex items-center bg-white text-left text-base font-medium hover:text-gray-900 focus:outline-none focus:ring-2 focus:ring-teci-blue-light focus:ring-offset-2"
|
|
62
|
-
aria-expanded={openMenu == "products"}
|
|
63
|
-
>
|
|
64
|
-
<span class:text-gray-900={openMenu == "products"}>Products</span>
|
|
65
|
-
<svg
|
|
66
|
-
class="ml-2 h-5 w-5 group-hover:text-gray-900 {openMenu ==
|
|
67
|
-
'products'
|
|
68
|
-
? 'rotate-180 text-gray-900'
|
|
69
|
-
: 'text-gray-400'}"
|
|
70
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
71
|
-
viewBox="0 0 20 20"
|
|
72
|
-
fill="currentColor"
|
|
73
|
-
aria-hidden="true"
|
|
74
|
-
>
|
|
75
|
-
<path
|
|
76
|
-
fill-rule="evenodd"
|
|
77
|
-
d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z"
|
|
78
|
-
clip-rule="evenodd"
|
|
79
|
-
/>
|
|
80
|
-
</svg>
|
|
81
|
-
</button>
|
|
82
|
-
|
|
83
|
-
<!-- Flyout menu -->
|
|
84
|
-
{#if openMenu == "products"}
|
|
85
|
-
<div
|
|
86
|
-
class="absolute inset-x-0 top-full z-10 transform bg-white text-left shadow-lg"
|
|
87
|
-
use:clickOutside
|
|
88
|
-
on:outclick={() => (openMenu = "")}
|
|
89
|
-
in:slide={{ duration: 250, easing: cubicOut }}
|
|
90
|
-
out:slide={{ duration: 150, easing: cubicIn }}
|
|
91
|
-
>
|
|
92
|
-
<button
|
|
93
|
-
on:click={() => (openMenu = "")}
|
|
94
|
-
class="mx-auto grid max-w-7xl gap-y-8 px-4 py-8 text-left sm:grid-cols-2 sm:gap-8 sm:px-6 lg:grid-cols-3 lg:px-8"
|
|
95
|
-
>
|
|
96
|
-
<a
|
|
97
|
-
href="https://www.thunderheadeng.com/pyrosim"
|
|
98
|
-
class="-m-3 flex flex-col justify-between p-3 hover:bg-gray-50"
|
|
99
|
-
>
|
|
100
|
-
<div class="flex md:h-full lg:flex-col">
|
|
101
|
-
<div class="flex-shrink-0">
|
|
102
|
-
<Icon classes="h-12 w-auto" icon="pyrosim" />
|
|
103
|
-
</div>
|
|
104
|
-
<div
|
|
105
|
-
class="ml-4 md:flex md:flex-1 md:flex-col md:justify-between lg:ml-0 lg:mt-4"
|
|
106
|
-
>
|
|
107
|
-
<div>
|
|
108
|
-
<p class="text-base font-medium text-gray-900">
|
|
109
|
-
PyroSim
|
|
110
|
-
</p>
|
|
111
|
-
<p class="mt-1 text-sm">
|
|
112
|
-
Analyze fire control and smoke dissipation in various
|
|
113
|
-
structures for fire protection and safety or
|
|
114
|
-
investigation.
|
|
115
|
-
</p>
|
|
116
|
-
</div>
|
|
117
|
-
<p
|
|
118
|
-
class="mt-2 text-sm font-medium text-teci-blue-light lg:mt-4"
|
|
119
|
-
>
|
|
120
|
-
Learn more <span aria-hidden="true">→</span>
|
|
121
|
-
</p>
|
|
122
|
-
</div>
|
|
123
|
-
</div>
|
|
124
|
-
</a>
|
|
125
|
-
|
|
126
|
-
<a
|
|
127
|
-
href="https://www.thunderheadeng.com/pathfinder"
|
|
128
|
-
class="-m-3 flex flex-col justify-between p-3 hover:bg-gray-50"
|
|
129
|
-
>
|
|
130
|
-
<div class="flex md:h-full lg:flex-col">
|
|
131
|
-
<div class="flex-shrink-0">
|
|
132
|
-
<Icon classes="h-12 w-auto" icon="pathfinder" />
|
|
133
|
-
</div>
|
|
134
|
-
<div
|
|
135
|
-
class="ml-4 md:flex md:flex-1 md:flex-col md:justify-between lg:ml-0 lg:mt-4"
|
|
136
|
-
>
|
|
137
|
-
<div>
|
|
138
|
-
<p class="text-base font-medium text-gray-900">
|
|
139
|
-
Pathfinder
|
|
140
|
-
</p>
|
|
141
|
-
<p class="mt-1 text-sm">
|
|
142
|
-
Understand pedestrian egress and congestion hazards
|
|
143
|
-
for fire protection and safety or urban planning.
|
|
144
|
-
</p>
|
|
145
|
-
</div>
|
|
146
|
-
<p
|
|
147
|
-
class="mt-2 text-sm font-medium text-teci-blue-light lg:mt-4"
|
|
148
|
-
>
|
|
149
|
-
Learn more <span aria-hidden="true">→</span>
|
|
150
|
-
</p>
|
|
151
|
-
</div>
|
|
152
|
-
</div>
|
|
153
|
-
</a>
|
|
154
|
-
|
|
155
|
-
<a
|
|
156
|
-
href="https://www.thunderheadeng.com/ventus"
|
|
157
|
-
class="-m-3 flex flex-col justify-between p-3 hover:bg-gray-50"
|
|
158
|
-
>
|
|
159
|
-
<div class="flex md:h-full lg:flex-col">
|
|
160
|
-
<div class="flex-shrink-0">
|
|
161
|
-
<Icon classes="h-12 w-auto" icon="ventus" />
|
|
162
|
-
</div>
|
|
163
|
-
<div
|
|
164
|
-
class="ml-4 md:flex md:flex-1 md:flex-col md:justify-between lg:ml-0 lg:mt-4"
|
|
165
|
-
>
|
|
166
|
-
<div>
|
|
167
|
-
<p class="text-base font-medium text-gray-900">
|
|
168
|
-
Ventus
|
|
169
|
-
</p>
|
|
170
|
-
<p class="mt-1 text-sm">
|
|
171
|
-
Create 3D pressurization models of smoke control solutions for stairwells, atria, and underground spaces.
|
|
172
|
-
</p>
|
|
173
|
-
</div>
|
|
174
|
-
<p
|
|
175
|
-
class="mt-2 text-sm font-medium text-teci-blue-light lg:mt-4"
|
|
176
|
-
>
|
|
177
|
-
Learn more <span aria-hidden="true">→</span>
|
|
178
|
-
</p>
|
|
179
|
-
</div>
|
|
180
|
-
</div>
|
|
181
|
-
</a>
|
|
182
|
-
</button>
|
|
183
|
-
|
|
184
|
-
<!-- Action Buttons -->
|
|
185
|
-
<div class="relative bg-gray-50 text-left">
|
|
186
|
-
<button
|
|
187
|
-
on:click={() => (openMenu = "")}
|
|
188
|
-
class="max-w-7xl space-y-6 px-4 py-5 sm:flex sm:space-y-0 sm:space-x-10 sm:px-6 lg:px-8"
|
|
189
|
-
>
|
|
190
|
-
<div class="flow-root">
|
|
191
|
-
<a
|
|
192
|
-
href="https://store2.thunderheadeng.com/cart"
|
|
193
|
-
class="-m-3 flex items-center p-3 text-base font-medium text-gray-900 hover:bg-gray-100"
|
|
194
|
-
>
|
|
195
|
-
<svg
|
|
196
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
197
|
-
class="h-6 w-6 flex-shrink-0 text-gray-400"
|
|
198
|
-
fill="none"
|
|
199
|
-
viewBox="0 0 24 24"
|
|
200
|
-
stroke="currentColor"
|
|
201
|
-
>
|
|
202
|
-
<path
|
|
203
|
-
stroke-linecap="round"
|
|
204
|
-
stroke-linejoin="round"
|
|
205
|
-
stroke-width="2"
|
|
206
|
-
d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"
|
|
207
|
-
/>
|
|
208
|
-
</svg>
|
|
209
|
-
<span class="ml-3">Order Online</span>
|
|
210
|
-
</a>
|
|
211
|
-
</div>
|
|
212
|
-
|
|
213
|
-
<div class="flow-root">
|
|
214
|
-
<a
|
|
215
|
-
href="https://store2.thunderheadeng.com/trial"
|
|
216
|
-
class="-m-3 flex items-center p-3 text-base font-medium text-gray-900 hover:bg-gray-100"
|
|
217
|
-
>
|
|
218
|
-
<svg
|
|
219
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
220
|
-
class="h-6 w-6 flex-shrink-0 text-gray-400"
|
|
221
|
-
fill="none"
|
|
222
|
-
viewBox="0 0 24 24"
|
|
223
|
-
stroke="currentColor"
|
|
224
|
-
>
|
|
225
|
-
<path
|
|
226
|
-
stroke-linecap="round"
|
|
227
|
-
stroke-linejoin="round"
|
|
228
|
-
stroke-width="2"
|
|
229
|
-
d="M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z"
|
|
230
|
-
/>
|
|
231
|
-
</svg>
|
|
232
|
-
<span class="ml-3">30-day Trial</span>
|
|
233
|
-
</a>
|
|
234
|
-
</div>
|
|
235
|
-
|
|
236
|
-
<div class="flow-root">
|
|
237
|
-
<a
|
|
238
|
-
href="mailto:sales@thunderheadeng.com"
|
|
239
|
-
class="-m-3 flex items-center p-3 text-base font-medium text-gray-900 hover:bg-gray-100"
|
|
240
|
-
>
|
|
241
|
-
<svg
|
|
242
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
243
|
-
class="h-6 w-6 flex-shrink-0 text-gray-400"
|
|
244
|
-
fill="none"
|
|
245
|
-
viewBox="0 0 24 24"
|
|
246
|
-
stroke="currentColor"
|
|
247
|
-
>
|
|
248
|
-
<path
|
|
249
|
-
stroke-linecap="round"
|
|
250
|
-
stroke-linejoin="round"
|
|
251
|
-
stroke-width="2"
|
|
252
|
-
d="M3 8l7.89 5.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z"
|
|
253
|
-
/>
|
|
254
|
-
</svg>
|
|
255
|
-
<span class="ml-3">Contact Sales</span>
|
|
256
|
-
</a>
|
|
257
|
-
</div>
|
|
258
|
-
</button>
|
|
259
|
-
</div>
|
|
260
|
-
</div>
|
|
261
|
-
{/if}
|
|
262
|
-
</div>
|
|
263
|
-
|
|
264
|
-
<!-- Support -->
|
|
265
|
-
<div id="support" class="relative">
|
|
266
|
-
<button
|
|
267
|
-
type="button"
|
|
268
|
-
on:click={() =>
|
|
269
|
-
openMenu == "support" ? (openMenu = "") : (openMenu = "support")}
|
|
270
|
-
class="group inline-flex items-center bg-white text-base font-medium hover:text-gray-900 focus:outline-none focus:ring-2 focus:ring-teci-blue-light focus:ring-offset-2"
|
|
271
|
-
aria-expanded={openMenu == "support"}
|
|
272
|
-
>
|
|
273
|
-
<span class:text-gray-900={openMenu == "support"}>Support</span>
|
|
274
|
-
<svg
|
|
275
|
-
class="ml-2 h-5 w-5 group-hover:text-gray-900 {openMenu ===
|
|
276
|
-
'support'
|
|
277
|
-
? 'rotate-180 text-gray-900'
|
|
278
|
-
: 'text-gray-400'}"
|
|
279
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
280
|
-
viewBox="0 0 20 20"
|
|
281
|
-
fill="currentColor"
|
|
282
|
-
aria-hidden="true"
|
|
283
|
-
>
|
|
284
|
-
<path
|
|
285
|
-
fill-rule="evenodd"
|
|
286
|
-
d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z"
|
|
287
|
-
clip-rule="evenodd"
|
|
288
|
-
/>
|
|
289
|
-
</svg>
|
|
290
|
-
</button>
|
|
291
|
-
|
|
292
|
-
{#if openMenu == "support"}
|
|
293
|
-
<div
|
|
294
|
-
class="absolute left-1/2 z-40 mt-3 w-screen max-w-md -translate-x-1/2 transform overflow-hidden px-2 text-left shadow-lg ring-1 ring-black ring-opacity-5 sm:px-0"
|
|
295
|
-
use:clickOutside
|
|
296
|
-
on:outclick={() => (openMenu = "")}
|
|
297
|
-
in:slide={{ duration: 250, easing: cubicOut }}
|
|
298
|
-
out:slide={{ duration: 150, easing: cubicIn }}
|
|
299
|
-
>
|
|
300
|
-
<button
|
|
301
|
-
on:click={() => (openMenu = "")}
|
|
302
|
-
class="relative grid w-full gap-6 bg-white px-5 py-6 text-left sm:gap-8 sm:p-8"
|
|
303
|
-
>
|
|
304
|
-
<a
|
|
305
|
-
href="https://support.thunderheadeng.com/docs"
|
|
306
|
-
class="-m-3 flex items-start p-3 transition duration-150 ease-in-out hover:bg-gray-50"
|
|
307
|
-
>
|
|
308
|
-
<svg
|
|
309
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
310
|
-
class="h-6 w-6 text-teci-blue-light"
|
|
311
|
-
fill="none"
|
|
312
|
-
viewBox="0 0 24 24"
|
|
313
|
-
stroke="currentColor"
|
|
314
|
-
>
|
|
315
|
-
<path
|
|
316
|
-
stroke-linecap="round"
|
|
317
|
-
stroke-linejoin="round"
|
|
318
|
-
stroke-width="2"
|
|
319
|
-
d="M12 6.253v13m0-13C10.832 5.477 9.246 5 7.5 5S4.168 5.477 3 6.253v13C4.168 18.477 5.754 18 7.5 18s3.332.477 4.5 1.253m0-13C13.168 5.477 14.754 5 16.5 5c1.747 0 3.332.477 4.5 1.253v13C19.832 18.477 18.247 18 16.5 18c-1.746 0-3.332.477-4.5 1.253"
|
|
320
|
-
/>
|
|
321
|
-
</svg>
|
|
322
|
-
<div class="ml-4">
|
|
323
|
-
<p class="text-base font-medium text-gray-900">
|
|
324
|
-
Documentation
|
|
325
|
-
</p>
|
|
326
|
-
<p class="mt-1 text-sm">
|
|
327
|
-
Manuals and Reference Documents for all products
|
|
328
|
-
</p>
|
|
329
|
-
</div>
|
|
330
|
-
</a>
|
|
331
|
-
|
|
332
|
-
<a
|
|
333
|
-
href="https://support.thunderheadeng.com/tutorials"
|
|
334
|
-
class="-m-3 flex items-start p-3 transition duration-150 ease-in-out hover:bg-gray-50"
|
|
335
|
-
>
|
|
336
|
-
<svg
|
|
337
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
338
|
-
class="h-6 w-6 flex-shrink-0 text-teci-blue-light"
|
|
339
|
-
fill="none"
|
|
340
|
-
viewBox="0 0 24 24"
|
|
341
|
-
stroke="currentColor"
|
|
342
|
-
>
|
|
343
|
-
<path
|
|
344
|
-
stroke-linecap="round"
|
|
345
|
-
stroke-linejoin="round"
|
|
346
|
-
stroke-width="2"
|
|
347
|
-
d="M8 14v3m4-3v3m4-3v3M3 21h18M3 10h18M3 7l9-4 9 4M4 10h16v11H4V10z"
|
|
348
|
-
/>
|
|
349
|
-
</svg>
|
|
350
|
-
<div class="ml-4">
|
|
351
|
-
<p class="text-base font-medium text-gray-900">Tutorials</p>
|
|
352
|
-
<p class="mt-1 text-sm">
|
|
353
|
-
Getting Started, Applications and Feature Demos
|
|
354
|
-
</p>
|
|
355
|
-
</div>
|
|
356
|
-
</a>
|
|
357
|
-
|
|
358
|
-
<a
|
|
359
|
-
href="https://support.thunderheadeng.com/release-notes"
|
|
360
|
-
class="-m-3 flex items-start p-3 transition duration-150 ease-in-out hover:bg-gray-50"
|
|
361
|
-
>
|
|
362
|
-
<svg
|
|
363
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
364
|
-
class="h-6 w-6 flex-shrink-0 text-teci-blue-light"
|
|
365
|
-
fill="none"
|
|
366
|
-
viewBox="0 0 24 24"
|
|
367
|
-
stroke="currentColor"
|
|
368
|
-
>
|
|
369
|
-
<path
|
|
370
|
-
stroke-linecap="round"
|
|
371
|
-
stroke-linejoin="round"
|
|
372
|
-
stroke-width="2"
|
|
373
|
-
d="M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z"
|
|
374
|
-
/>
|
|
375
|
-
</svg>
|
|
376
|
-
<div class="ml-4">
|
|
377
|
-
<p class="text-base font-medium text-gray-900">
|
|
378
|
-
Release Notes
|
|
379
|
-
</p>
|
|
380
|
-
<p class="mt-1 text-sm">
|
|
381
|
-
Detailed changes each product release
|
|
382
|
-
</p>
|
|
383
|
-
</div>
|
|
384
|
-
</a>
|
|
385
|
-
|
|
386
|
-
<a
|
|
387
|
-
href="https://help.thunderheadeng.com/support/home"
|
|
388
|
-
class="-m-3 flex items-start p-3 transition duration-150 ease-in-out hover:bg-gray-50"
|
|
389
|
-
>
|
|
390
|
-
<svg
|
|
391
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
392
|
-
class="h-6 w-6 flex-shrink-0 text-teci-blue-light"
|
|
393
|
-
fill="none"
|
|
394
|
-
viewBox="0 0 24 24"
|
|
395
|
-
stroke="currentColor"
|
|
396
|
-
>
|
|
397
|
-
<path
|
|
398
|
-
stroke-linecap="round"
|
|
399
|
-
stroke-linejoin="round"
|
|
400
|
-
stroke-width="2"
|
|
401
|
-
d="M8.228 9c.549-1.165 2.03-2 3.772-2 2.21 0 4 1.343 4 3 0 1.4-1.278 2.575-3.006 2.907-.542.104-.994.54-.994 1.093m0 3h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z"
|
|
402
|
-
/>
|
|
403
|
-
</svg>
|
|
404
|
-
<div class="ml-4">
|
|
405
|
-
<p class="text-base font-medium text-gray-900">Help Portal</p>
|
|
406
|
-
<p class="mt-1 text-sm">
|
|
407
|
-
Knowledge base and discussion forum
|
|
408
|
-
</p>
|
|
409
|
-
</div>
|
|
410
|
-
</a>
|
|
411
|
-
</button>
|
|
412
|
-
<button
|
|
413
|
-
on:click={() => (openMenu = "")}
|
|
414
|
-
class="w-full space-y-6 bg-gray-50 px-5 py-5 sm:flex sm:space-y-0 sm:space-x-10 sm:px-8"
|
|
415
|
-
>
|
|
416
|
-
<div class="flow-root">
|
|
417
|
-
<a
|
|
418
|
-
href="https://help.thunderheadeng.com/support/discussions"
|
|
419
|
-
class="-m-3 flex items-center p-3 text-base font-medium text-gray-900 hover:bg-gray-100"
|
|
420
|
-
>
|
|
421
|
-
<svg
|
|
422
|
-
class="h-6 w-6 flex-shrink-0 text-gray-400"
|
|
423
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
424
|
-
fill="none"
|
|
425
|
-
viewBox="0 0 24 24"
|
|
426
|
-
stroke="currentColor"
|
|
427
|
-
aria-hidden="true"
|
|
428
|
-
>
|
|
429
|
-
<path
|
|
430
|
-
stroke-linecap="round"
|
|
431
|
-
stroke-linejoin="round"
|
|
432
|
-
stroke-width="2"
|
|
433
|
-
d="M17 20h5v-2a3 3 0 00-5.356-1.857M17 20H7m10 0v-2c0-.656-.126-1.283-.356-1.857M7 20H2v-2a3 3 0 015.356-1.857M7 20v-2c0-.656.126-1.283.356-1.857m0 0a5.002 5.002 0 019.288 0M15 7a3 3 0 11-6 0 3 3 0 016 0zm6 3a2 2 0 11-4 0 2 2 0 014 0zM7 10a2 2 0 11-4 0 2 2 0 014 0z"
|
|
434
|
-
/>
|
|
435
|
-
</svg>
|
|
436
|
-
<span class="ml-3">User Forum</span>
|
|
437
|
-
</a>
|
|
438
|
-
</div>
|
|
439
|
-
|
|
440
|
-
<div class="flow-root">
|
|
441
|
-
<a
|
|
442
|
-
href="mailto:support@thunderheadeng.com"
|
|
443
|
-
class="-m-3 flex items-center p-3 text-base font-medium text-gray-900 hover:bg-gray-100"
|
|
444
|
-
>
|
|
445
|
-
<svg
|
|
446
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
447
|
-
class="h-6 w-6 flex-shrink-0 text-gray-400"
|
|
448
|
-
fill="none"
|
|
449
|
-
viewBox="0 0 24 24"
|
|
450
|
-
stroke="currentColor"
|
|
451
|
-
>
|
|
452
|
-
<path
|
|
453
|
-
stroke-linecap="round"
|
|
454
|
-
stroke-linejoin="round"
|
|
455
|
-
stroke-width="2"
|
|
456
|
-
d="M3 8l7.89 5.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z"
|
|
457
|
-
/>
|
|
458
|
-
</svg>
|
|
459
|
-
<span class="ml-3">Contact Support</span>
|
|
460
|
-
</a>
|
|
461
|
-
</div>
|
|
462
|
-
</button>
|
|
463
|
-
</div>
|
|
464
|
-
{/if}
|
|
465
|
-
</div>
|
|
466
|
-
|
|
467
|
-
<!-- Events -->
|
|
468
|
-
<div id="events" class="relative">
|
|
469
|
-
<button
|
|
470
|
-
type="button"
|
|
471
|
-
on:click={() =>
|
|
472
|
-
openMenu == "events" ? (openMenu = "") : (openMenu = "events")}
|
|
473
|
-
class="group inline-flex items-center bg-white text-base font-medium hover:text-gray-900 focus:outline-none focus:ring-2 focus:ring-teci-blue-light focus:ring-offset-2"
|
|
474
|
-
aria-expanded={openMenu == "events"}
|
|
475
|
-
>
|
|
476
|
-
<span class:text-gray-900={openMenu == "events"}>Events</span>
|
|
477
|
-
<svg
|
|
478
|
-
class="ml-2 h-5 w-5 text-gray-400 group-hover:text-gray-900 {openMenu ===
|
|
479
|
-
'events'
|
|
480
|
-
? 'rotate-180 text-gray-900'
|
|
481
|
-
: 'text-gray-400'}"
|
|
482
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
483
|
-
viewBox="0 0 20 20"
|
|
484
|
-
fill="currentColor"
|
|
485
|
-
aria-hidden="true"
|
|
486
|
-
>
|
|
487
|
-
<path
|
|
488
|
-
fill-rule="evenodd"
|
|
489
|
-
d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z"
|
|
490
|
-
clip-rule="evenodd"
|
|
491
|
-
/>
|
|
492
|
-
</svg>
|
|
493
|
-
</button>
|
|
494
|
-
|
|
495
|
-
{#if openMenu == "events"}
|
|
496
|
-
<div
|
|
497
|
-
class="absolute left-1/2 z-40 mt-3 w-screen max-w-md -translate-x-1/2 transform overflow-hidden px-2 shadow-lg ring-1 ring-black ring-opacity-5 sm:px-0"
|
|
498
|
-
use:clickOutside
|
|
499
|
-
on:outclick={() => (openMenu = "")}
|
|
500
|
-
in:slide={{ duration: 250, easing: cubicOut }}
|
|
501
|
-
out:slide={{ duration: 150, easing: cubicIn }}
|
|
502
|
-
>
|
|
503
|
-
<button
|
|
504
|
-
on:click={() => (openMenu = "")}
|
|
505
|
-
class="relative grid w-full gap-6 bg-white px-5 py-6 text-left sm:gap-8 sm:p-8"
|
|
506
|
-
>
|
|
507
|
-
<a
|
|
508
|
-
href="https://training.thunderheadeng.com"
|
|
509
|
-
class="-m-3 flex items-start p-3 transition duration-150 ease-in-out hover:bg-gray-50"
|
|
510
|
-
>
|
|
511
|
-
<svg
|
|
512
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
513
|
-
class="h-6 w-6 flex-shrink-0 text-teci-blue-light"
|
|
514
|
-
fill="none"
|
|
515
|
-
viewBox="0 0 24 24"
|
|
516
|
-
stroke="currentColor"
|
|
517
|
-
>
|
|
518
|
-
<path
|
|
519
|
-
stroke-linecap="round"
|
|
520
|
-
stroke-linejoin="round"
|
|
521
|
-
stroke-width="2"
|
|
522
|
-
d="M15 15l-2 5L9 9l11 4-5 2zm0 0l5 5M7.188 2.239l.777 2.897M5.136 7.965l-2.898-.777M13.95 4.05l-2.122 2.122m-5.657 5.656l-2.12 2.122"
|
|
523
|
-
/>
|
|
524
|
-
</svg>
|
|
525
|
-
<div class="ml-4">
|
|
526
|
-
<p class="text-base font-medium text-gray-900">Training</p>
|
|
527
|
-
<p class="mt-1 text-sm">
|
|
528
|
-
Both Online and In-person training options.
|
|
529
|
-
</p>
|
|
530
|
-
</div>
|
|
531
|
-
</a>
|
|
532
|
-
<a
|
|
533
|
-
href="https://www.femtc.com"
|
|
534
|
-
class="-m-3 flex items-start p-3 transition duration-150 ease-in-out hover:bg-gray-50"
|
|
535
|
-
>
|
|
536
|
-
<svg
|
|
537
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
538
|
-
class="h-6 w-6 flex-shrink-0 text-teci-blue-light"
|
|
539
|
-
fill="none"
|
|
540
|
-
viewBox="0 0 24 24"
|
|
541
|
-
stroke="currentColor"
|
|
542
|
-
>
|
|
543
|
-
<path
|
|
544
|
-
stroke-linecap="round"
|
|
545
|
-
stroke-linejoin="round"
|
|
546
|
-
stroke-width="2"
|
|
547
|
-
d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
|
|
548
|
-
/>
|
|
549
|
-
</svg>
|
|
550
|
-
<div class="ml-4">
|
|
551
|
-
<p class="text-base font-medium text-gray-900">FEMTC</p>
|
|
552
|
-
<p class="mt-1 text-sm">
|
|
553
|
-
Fire and Evacuation Modeling Technical Conference
|
|
554
|
-
</p>
|
|
555
|
-
</div>
|
|
556
|
-
</a>
|
|
557
|
-
</button>
|
|
558
|
-
<button
|
|
559
|
-
on:click={() => (openMenu = "")}
|
|
560
|
-
class="w-full space-y-6 bg-gray-50 px-5 py-5 text-left sm:flex sm:space-y-0 sm:space-x-10 sm:px-8"
|
|
561
|
-
>
|
|
562
|
-
<div class="flow-root">
|
|
563
|
-
<a
|
|
564
|
-
href="mailto:training@thunderheadeng.com"
|
|
565
|
-
class="-m-3 flex items-center p-3 text-base font-medium text-gray-900 transition duration-150 ease-in-out hover:bg-gray-100"
|
|
566
|
-
>
|
|
567
|
-
<svg
|
|
568
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
569
|
-
class="h-6 w-6 flex-shrink-0 text-gray-400"
|
|
570
|
-
fill="none"
|
|
571
|
-
viewBox="0 0 24 24"
|
|
572
|
-
stroke="currentColor"
|
|
573
|
-
>
|
|
574
|
-
<path
|
|
575
|
-
stroke-linecap="round"
|
|
576
|
-
stroke-linejoin="round"
|
|
577
|
-
stroke-width="2"
|
|
578
|
-
d="M3 8l7.89 5.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z"
|
|
579
|
-
/>
|
|
580
|
-
</svg>
|
|
581
|
-
<span class="ml-3">Contact Training</span>
|
|
582
|
-
</a>
|
|
583
|
-
</div>
|
|
584
|
-
</button>
|
|
585
|
-
</div>
|
|
586
|
-
{/if}
|
|
587
|
-
</div>
|
|
588
|
-
|
|
589
|
-
<!-- Company -->
|
|
590
|
-
<div id="company" class="relative">
|
|
591
|
-
<button
|
|
592
|
-
type="button"
|
|
593
|
-
on:click={() =>
|
|
594
|
-
openMenu == "company" ? (openMenu = "") : (openMenu = "company")}
|
|
595
|
-
class="group inline-flex items-center bg-white text-base font-medium hover:text-gray-900 focus:outline-none focus:ring-2 focus:ring-teci-blue-light focus:ring-offset-2"
|
|
596
|
-
aria-expanded={openMenu == "company"}
|
|
597
|
-
>
|
|
598
|
-
<span class:text-gray-900={openMenu == "company"}>Company</span>
|
|
599
|
-
<svg
|
|
600
|
-
class="ml-2 h-5 w-5 group-hover:text-gray-900 {openMenu ===
|
|
601
|
-
'company'
|
|
602
|
-
? 'rotate-180 text-gray-900'
|
|
603
|
-
: 'text-gray-400'}"
|
|
604
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
605
|
-
viewBox="0 0 20 20"
|
|
606
|
-
fill="currentColor"
|
|
607
|
-
aria-hidden="true"
|
|
608
|
-
>
|
|
609
|
-
<path
|
|
610
|
-
fill-rule="evenodd"
|
|
611
|
-
d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z"
|
|
612
|
-
clip-rule="evenodd"
|
|
613
|
-
/>
|
|
614
|
-
</svg>
|
|
615
|
-
</button>
|
|
616
|
-
|
|
617
|
-
{#if openMenu == "company"}
|
|
618
|
-
<div
|
|
619
|
-
class="absolute left-1/2 z-40 mt-3 w-screen max-w-md -translate-x-1/2 transform overflow-hidden px-2 shadow-lg ring-1 ring-black ring-opacity-5 sm:px-0"
|
|
620
|
-
use:clickOutside
|
|
621
|
-
on:outclick={() => (openMenu = "")}
|
|
622
|
-
in:slide={{ duration: 250, easing: cubicOut }}
|
|
623
|
-
out:slide={{ duration: 150, easing: cubicIn }}
|
|
624
|
-
>
|
|
625
|
-
<button
|
|
626
|
-
on:click={() => (openMenu = "")}
|
|
627
|
-
class="relative grid w-full gap-6 bg-white px-5 py-6 text-left sm:gap-8 sm:p-8"
|
|
628
|
-
>
|
|
629
|
-
<a
|
|
630
|
-
href="https://www.thunderheadeng.com/about"
|
|
631
|
-
class="-m-3 flex items-start p-3 transition duration-150 ease-in-out hover:bg-gray-50"
|
|
632
|
-
>
|
|
633
|
-
<svg
|
|
634
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
635
|
-
class="h-6 w-6 text-teci-blue-light"
|
|
636
|
-
fill="none"
|
|
637
|
-
viewBox="0 0 24 24"
|
|
638
|
-
stroke="currentColor"
|
|
639
|
-
>
|
|
640
|
-
<path
|
|
641
|
-
stroke-linecap="round"
|
|
642
|
-
stroke-linejoin="round"
|
|
643
|
-
stroke-width="2"
|
|
644
|
-
d="M13 16h-1v-4h-1m1-4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z"
|
|
645
|
-
/>
|
|
646
|
-
</svg>
|
|
647
|
-
<div class="ml-4">
|
|
648
|
-
<p class="text-base font-medium text-gray-900">About</p>
|
|
649
|
-
<p class="mt-1 text-sm">
|
|
650
|
-
Learn more about Thunderhead Engineering
|
|
651
|
-
</p>
|
|
652
|
-
</div>
|
|
653
|
-
</a>
|
|
654
|
-
|
|
655
|
-
<a
|
|
656
|
-
href="https://www.thunderheadeng.com/news"
|
|
657
|
-
class="-m-3 flex items-start p-3 transition duration-150 ease-in-out hover:bg-gray-50"
|
|
658
|
-
>
|
|
659
|
-
<svg
|
|
660
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
661
|
-
class="h-6 w-6 flex-shrink-0 text-teci-blue-light"
|
|
662
|
-
fill="none"
|
|
663
|
-
viewBox="0 0 24 24"
|
|
664
|
-
stroke="currentColor"
|
|
665
|
-
>
|
|
666
|
-
<path
|
|
667
|
-
stroke-linecap="round"
|
|
668
|
-
stroke-linejoin="round"
|
|
669
|
-
stroke-width="2"
|
|
670
|
-
d="M11 5.882V19.24a1.76 1.76 0 01-3.417.592l-2.147-6.15M18 13a3 3 0 100-6M5.436 13.683A4.001 4.001 0 017 6h1.832c4.1 0 7.625-1.234 9.168-3v14c-1.543-1.766-5.067-3-9.168-3H7a3.988 3.988 0 01-1.564-.317z"
|
|
671
|
-
/>
|
|
672
|
-
</svg>
|
|
673
|
-
<div class="ml-4">
|
|
674
|
-
<p class="text-base font-medium text-gray-900">News</p>
|
|
675
|
-
<p class="mt-1 text-sm">
|
|
676
|
-
Announcements for our products and services
|
|
677
|
-
</p>
|
|
678
|
-
</div>
|
|
679
|
-
</a>
|
|
680
|
-
|
|
681
|
-
<a
|
|
682
|
-
href="https://www.thunderheadeng.com/job-openings"
|
|
683
|
-
class="-m-3 flex items-start p-3 transition duration-150 ease-in-out hover:bg-gray-50"
|
|
684
|
-
>
|
|
685
|
-
<svg
|
|
686
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
687
|
-
class="h-6 w-6 flex-shrink-0 text-teci-blue-light"
|
|
688
|
-
fill="none"
|
|
689
|
-
viewBox="0 0 24 24"
|
|
690
|
-
stroke="currentColor"
|
|
691
|
-
>
|
|
692
|
-
<path
|
|
693
|
-
stroke-linecap="round"
|
|
694
|
-
stroke-linejoin="round"
|
|
695
|
-
stroke-width="2"
|
|
696
|
-
d="M21 13.255A23.931 23.931 0 0112 15c-3.183 0-6.22-.62-9-1.745M16 6V4a2 2 0 00-2-2h-4a2 2 0 00-2 2v2m4 6h.01M5 20h14a2 2 0 002-2V8a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z"
|
|
697
|
-
/>
|
|
698
|
-
</svg>
|
|
699
|
-
<div class="ml-4">
|
|
700
|
-
<p class="text-base font-medium text-gray-900">Jobs</p>
|
|
701
|
-
<p class="mt-1 text-sm">
|
|
702
|
-
Become a part of the Thunderhead team
|
|
703
|
-
</p>
|
|
704
|
-
</div>
|
|
705
|
-
</a>
|
|
706
|
-
|
|
707
|
-
<a
|
|
708
|
-
href="https://www.thunderheadeng.com/partners"
|
|
709
|
-
class="-m-3 flex items-start p-3 transition duration-150 ease-in-out hover:bg-gray-50"
|
|
710
|
-
>
|
|
711
|
-
<svg
|
|
712
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
713
|
-
class="h-6 w-6 flex-shrink-0 text-teci-blue-light"
|
|
714
|
-
fill="none"
|
|
715
|
-
viewBox="0 0 24 24"
|
|
716
|
-
stroke="currentColor"
|
|
717
|
-
>
|
|
718
|
-
<path
|
|
719
|
-
stroke-linecap="round"
|
|
720
|
-
stroke-linejoin="round"
|
|
721
|
-
stroke-width="2"
|
|
722
|
-
d="M21 12a9 9 0 01-9 9m9-9a9 9 0 00-9-9m9 9H3m9 9a9 9 0 01-9-9m9 9c1.657 0 3-4.03 3-9s-1.343-9-3-9m0 18c-1.657 0-3-4.03-3-9s1.343-9 3-9m-9 9a9 9 0 019-9"
|
|
723
|
-
/>
|
|
724
|
-
</svg>
|
|
725
|
-
<div class="ml-4">
|
|
726
|
-
<p class="text-base font-medium text-gray-900">Partners</p>
|
|
727
|
-
<p class="mt-1 text-sm">
|
|
728
|
-
International reseller and distributor network
|
|
729
|
-
</p>
|
|
730
|
-
</div>
|
|
731
|
-
</a>
|
|
732
|
-
</button>
|
|
733
|
-
</div>
|
|
734
|
-
{/if}
|
|
735
|
-
</div>
|
|
736
|
-
</nav>
|
|
737
|
-
</div>
|
|
738
|
-
|
|
739
|
-
<!-- Search -->
|
|
740
|
-
<div
|
|
741
|
-
class="ml-2 flex flex-1 items-center justify-center md:ml-0 md:px-0 lg:justify-end"
|
|
742
|
-
>
|
|
743
|
-
<div class="w-full max-w-lg lg:max-w-xs">
|
|
744
|
-
<form
|
|
745
|
-
class="m-0"
|
|
746
|
-
action="https://support.thunderheadeng.com/search"
|
|
747
|
-
method="get"
|
|
748
|
-
>
|
|
749
|
-
<label for="search" class="sr-only">Search</label>
|
|
750
|
-
<div class="relative">
|
|
751
|
-
<div
|
|
752
|
-
class="pointer-events-none absolute inset-y-0 left-0 flex items-center pl-3"
|
|
753
|
-
>
|
|
754
|
-
<svg
|
|
755
|
-
class="h-5 w-5 text-gray-400"
|
|
756
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
757
|
-
viewBox="0 0 20 20"
|
|
758
|
-
fill="currentColor"
|
|
759
|
-
aria-hidden="true"
|
|
760
|
-
>
|
|
761
|
-
<path
|
|
762
|
-
fill-rule="evenodd"
|
|
763
|
-
d="M8 4a4 4 0 100 8 4 4 0 000-8zM2 8a6 6 0 1110.89 3.476l4.817 4.817a1 1 0 01-1.414 1.414l-4.816-4.816A6 6 0 012 8z"
|
|
764
|
-
clip-rule="evenodd"
|
|
765
|
-
/>
|
|
766
|
-
</svg>
|
|
767
|
-
</div>
|
|
768
|
-
<input
|
|
769
|
-
id="search"
|
|
770
|
-
name="teci-search[query]"
|
|
771
|
-
placeholder="Search"
|
|
772
|
-
type="search"
|
|
773
|
-
class="m-0 block w-full rounded-none border border-gray-300 bg-white py-2 pl-10 pr-3 placeholder-gray-500 focus:border-teci-blue-light focus:placeholder-gray-400 focus:outline-none focus:ring-1 focus:ring-teci-blue-light sm:text-sm"
|
|
774
|
-
/>
|
|
775
|
-
</div>
|
|
776
|
-
</form>
|
|
777
|
-
</div>
|
|
778
|
-
</div>
|
|
779
|
-
|
|
780
|
-
<!-- Application Buttons -->
|
|
781
|
-
<div class="px-2">
|
|
782
|
-
<div class="flex items-center justify-between">
|
|
783
|
-
<div class="mr-2 md:mr-4">
|
|
784
|
-
<a
|
|
785
|
-
href="https://cart.thunderheadeng.com/cgi-bin/UCEditor?merchantId=THENG"
|
|
786
|
-
title="Shopping Cart"
|
|
787
|
-
>
|
|
788
|
-
<svg
|
|
789
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
790
|
-
class="h-6 w-6 flex-shrink-0 md:h-8 md:w-8"
|
|
791
|
-
fill="none"
|
|
792
|
-
viewBox="0 0 24 24"
|
|
793
|
-
stroke="currentColor"
|
|
794
|
-
>
|
|
795
|
-
<path
|
|
796
|
-
stroke-linecap="round"
|
|
797
|
-
stroke-linejoin="round"
|
|
798
|
-
stroke-width="2"
|
|
799
|
-
d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"
|
|
800
|
-
/>
|
|
801
|
-
</svg>
|
|
802
|
-
</a>
|
|
803
|
-
</div>
|
|
804
|
-
<div>
|
|
805
|
-
<a
|
|
806
|
-
href="https://cart.thunderheadeng.com/cgi-bin/UCMyAccount"
|
|
807
|
-
title="My Account"
|
|
808
|
-
>
|
|
809
|
-
<svg
|
|
810
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
811
|
-
class="h-6 w-6 flex-shrink-0 md:h-8 md:w-8"
|
|
812
|
-
fill="none"
|
|
813
|
-
viewBox="0 0 24 24"
|
|
814
|
-
stroke="currentColor"
|
|
815
|
-
>
|
|
816
|
-
<path
|
|
817
|
-
stroke-linecap="round"
|
|
818
|
-
stroke-linejoin="round"
|
|
819
|
-
stroke-width="2"
|
|
820
|
-
d="M5.121 17.804A13.937 13.937 0 0112 16c2.5 0 4.847.655 6.879 1.804M15 10a3 3 0 11-6 0 3 3 0 016 0zm6 2a9 9 0 11-18 0 9 9 0 0118 0z"
|
|
821
|
-
/>
|
|
822
|
-
</svg>
|
|
823
|
-
</a>
|
|
824
|
-
</div>
|
|
825
|
-
</div>
|
|
826
|
-
</div>
|
|
827
|
-
|
|
828
|
-
<!-- Mobile Menu Button-->
|
|
829
|
-
<div class="md:hidden">
|
|
830
|
-
<button
|
|
831
|
-
type="button"
|
|
832
|
-
on:click={() => (openMenu = "mobile")}
|
|
833
|
-
class="inline-flex items-center justify-center border border-gray-200 bg-white p-2 text-gray-400 hover:bg-gray-100 hover:text-gray-500 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-teci-blue-light"
|
|
834
|
-
aria-expanded={openMenu == "mobile"}
|
|
835
|
-
>
|
|
836
|
-
<span class="sr-only">Open mobile menu</span>
|
|
837
|
-
|
|
838
|
-
<svg
|
|
839
|
-
class="h-6 w-6"
|
|
840
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
841
|
-
fill="none"
|
|
842
|
-
viewBox="0 0 24 24"
|
|
843
|
-
stroke="currentColor"
|
|
844
|
-
aria-hidden="true"
|
|
845
|
-
>
|
|
846
|
-
<path
|
|
847
|
-
stroke-linecap="round"
|
|
848
|
-
stroke-linejoin="round"
|
|
849
|
-
stroke-width="2"
|
|
850
|
-
d="M4 6h16M4 12h16M4 18h16"
|
|
851
|
-
/>
|
|
852
|
-
</svg>
|
|
853
|
-
</button>
|
|
854
|
-
</div>
|
|
855
|
-
</div>
|
|
856
|
-
|
|
857
|
-
<!-- Mobile menu, show/hide based on mobile menu state.-->
|
|
858
|
-
{#if openMenu == "mobile"}
|
|
859
|
-
<div
|
|
860
|
-
class="absolute inset-x-0 top-0 z-30 divide-y-2 divide-gray-50 bg-white shadow-lg ring-1 ring-black ring-opacity-5 md:hidden"
|
|
861
|
-
use:clickOutside
|
|
862
|
-
on:outclick={() => (openMenu = "")}
|
|
863
|
-
in:slide={{ duration: 250, easing: cubicOut }}
|
|
864
|
-
out:slide={{ duration: 150, easing: cubicIn }}
|
|
865
|
-
>
|
|
866
|
-
<div class="px-4 pt-5 pb-6 sm:pb-8">
|
|
867
|
-
<div class="flex items-center justify-between">
|
|
868
|
-
<a
|
|
869
|
-
on:click={() => (openMenu = "")}
|
|
870
|
-
class="block"
|
|
871
|
-
href="https://www.thunderheadeng.com"
|
|
872
|
-
>
|
|
873
|
-
<img
|
|
874
|
-
class="h-10 w-auto"
|
|
875
|
-
src="https://files.thunderheadeng.com/www/images/teci_logo.svg"
|
|
876
|
-
alt="Thunderhead Engineering"
|
|
877
|
-
/>
|
|
878
|
-
</a>
|
|
879
|
-
|
|
880
|
-
<button
|
|
881
|
-
type="button"
|
|
882
|
-
on:click={() => (openMenu = "")}
|
|
883
|
-
class="inline-flex items-center justify-center border border-gray-200 bg-white p-2 text-gray-400 hover:bg-gray-100 hover:text-gray-500 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-teci-blue-light"
|
|
884
|
-
>
|
|
885
|
-
<span class="sr-only">Close menu</span>
|
|
886
|
-
|
|
887
|
-
<svg
|
|
888
|
-
class="h-6 w-6"
|
|
889
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
890
|
-
fill="none"
|
|
891
|
-
viewBox="0 0 24 24"
|
|
892
|
-
stroke="currentColor"
|
|
893
|
-
aria-hidden="true"
|
|
894
|
-
>
|
|
895
|
-
<path
|
|
896
|
-
stroke-linecap="round"
|
|
897
|
-
stroke-linejoin="round"
|
|
898
|
-
stroke-width="2"
|
|
899
|
-
d="M6 18L18 6M6 6l12 12"
|
|
900
|
-
/>
|
|
901
|
-
</svg>
|
|
902
|
-
</button>
|
|
903
|
-
</div>
|
|
904
|
-
<button on:click={() => (openMenu = "")} class="mt-6 w-full sm:mt-8">
|
|
905
|
-
<nav>
|
|
906
|
-
<div class="grid gap-7 sm:grid-cols-2 sm:gap-y-8 sm:gap-x-4">
|
|
907
|
-
<a href="/" class="-m-3 flex items-center p-3 hover:bg-gray-50">
|
|
908
|
-
<div
|
|
909
|
-
class="flex h-10 w-10 flex-shrink-0 items-center justify-center bg-teci-blue-light text-white sm:h-12 sm:w-12"
|
|
910
|
-
>
|
|
911
|
-
<svg
|
|
912
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
913
|
-
class="h-6 w-6"
|
|
914
|
-
fill="none"
|
|
915
|
-
viewBox="0 0 24 24"
|
|
916
|
-
stroke="currentColor"
|
|
917
|
-
>
|
|
918
|
-
<path
|
|
919
|
-
stroke-linecap="round"
|
|
920
|
-
stroke-linejoin="round"
|
|
921
|
-
stroke-width="2"
|
|
922
|
-
d="M19 11H5m14 0a2 2 0 012 2v6a2 2 0 01-2 2H5a2 2 0 01-2-2v-6a2 2 0 012-2m14 0V9a2 2 0 00-2-2M5 11V9a2 2 0 012-2m0 0V5a2 2 0 012-2h6a2 2 0 012 2v2M7 7h10"
|
|
923
|
-
/>
|
|
924
|
-
</svg>
|
|
925
|
-
</div>
|
|
926
|
-
<div class="ml-4 text-base font-medium text-gray-900">
|
|
927
|
-
Products
|
|
928
|
-
</div>
|
|
929
|
-
</a>
|
|
930
|
-
<a
|
|
931
|
-
href="https://support.thunderheadeng.com"
|
|
932
|
-
class="-m-3 flex items-center p-3 hover:bg-gray-50"
|
|
933
|
-
>
|
|
934
|
-
<div
|
|
935
|
-
class="flex h-10 w-10 flex-shrink-0 items-center justify-center bg-teci-blue-light text-white sm:h-12 sm:w-12"
|
|
936
|
-
>
|
|
937
|
-
<svg
|
|
938
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
939
|
-
class="h-6 w-6"
|
|
940
|
-
fill="none"
|
|
941
|
-
viewBox="0 0 24 24"
|
|
942
|
-
stroke="currentColor"
|
|
943
|
-
>
|
|
944
|
-
<path
|
|
945
|
-
stroke-linecap="round"
|
|
946
|
-
stroke-linejoin="round"
|
|
947
|
-
stroke-width="2"
|
|
948
|
-
d="M18.364 5.636l-3.536 3.536m0 5.656l3.536 3.536M9.172 9.172L5.636 5.636m3.536 9.192l-3.536 3.536M21 12a9 9 0 11-18 0 9 9 0 0118 0zm-5 0a4 4 0 11-8 0 4 4 0 018 0z"
|
|
949
|
-
/>
|
|
950
|
-
</svg>
|
|
951
|
-
</div>
|
|
952
|
-
<div class="ml-4 text-base font-medium text-gray-900">
|
|
953
|
-
Support
|
|
954
|
-
</div>
|
|
955
|
-
</a>
|
|
956
|
-
<a
|
|
957
|
-
href="https://training.thunderheadeng.com"
|
|
958
|
-
class="-m-3 flex items-center p-3 hover:bg-gray-50"
|
|
959
|
-
>
|
|
960
|
-
<div
|
|
961
|
-
class="flex h-10 w-10 flex-shrink-0 items-center justify-center bg-teci-blue-light text-white sm:h-12 sm:w-12"
|
|
962
|
-
>
|
|
963
|
-
<svg
|
|
964
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
965
|
-
class="h-6 w-6"
|
|
966
|
-
fill="none"
|
|
967
|
-
viewBox="0 0 24 24"
|
|
968
|
-
stroke="currentColor"
|
|
969
|
-
>
|
|
970
|
-
<path
|
|
971
|
-
stroke-linecap="round"
|
|
972
|
-
stroke-linejoin="round"
|
|
973
|
-
stroke-width="2"
|
|
974
|
-
d="M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z"
|
|
975
|
-
/>
|
|
976
|
-
</svg>
|
|
977
|
-
</div>
|
|
978
|
-
<div class="ml-4 text-base font-medium text-gray-900">
|
|
979
|
-
Training
|
|
980
|
-
</div>
|
|
981
|
-
</a>
|
|
982
|
-
<a
|
|
983
|
-
href="https://www.femtc.com"
|
|
984
|
-
class="-m-3 flex items-center p-3 hover:bg-gray-50"
|
|
985
|
-
>
|
|
986
|
-
<div
|
|
987
|
-
class="flex h-10 w-10 flex-shrink-0 items-center justify-center bg-teci-blue-light text-white sm:h-12 sm:w-12"
|
|
988
|
-
>
|
|
989
|
-
<svg
|
|
990
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
991
|
-
class="h-6 w-6"
|
|
992
|
-
fill="none"
|
|
993
|
-
viewBox="0 0 24 24"
|
|
994
|
-
stroke="currentColor"
|
|
995
|
-
><path
|
|
996
|
-
stroke-linecap="round"
|
|
997
|
-
stroke-linejoin="round"
|
|
998
|
-
stroke-width="2"
|
|
999
|
-
d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
|
|
1000
|
-
/></svg
|
|
1001
|
-
>
|
|
1002
|
-
</div>
|
|
1003
|
-
<div class="ml-4 text-base font-medium text-gray-900">
|
|
1004
|
-
FEMTC
|
|
1005
|
-
</div>
|
|
1006
|
-
</a>
|
|
1007
|
-
<a
|
|
1008
|
-
href="https://www.thunderheadeng.com/about"
|
|
1009
|
-
class="-m-3 flex items-center p-3 hover:bg-gray-50"
|
|
1010
|
-
>
|
|
1011
|
-
<div
|
|
1012
|
-
class="flex h-10 w-10 flex-shrink-0 items-center justify-center bg-teci-blue-light text-white sm:h-12 sm:w-12"
|
|
1013
|
-
>
|
|
1014
|
-
<svg
|
|
1015
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
1016
|
-
class="h-6 w-6"
|
|
1017
|
-
fill="none"
|
|
1018
|
-
viewBox="0 0 24 24"
|
|
1019
|
-
stroke="currentColor"
|
|
1020
|
-
>
|
|
1021
|
-
<path
|
|
1022
|
-
stroke-linecap="round"
|
|
1023
|
-
stroke-linejoin="round"
|
|
1024
|
-
stroke-width="2"
|
|
1025
|
-
d="M14.828 14.828a4 4 0 01-5.656 0M9 10h.01M15 10h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z"
|
|
1026
|
-
/>
|
|
1027
|
-
</svg>
|
|
1028
|
-
</div>
|
|
1029
|
-
<div class="ml-4 text-base font-medium text-gray-900">
|
|
1030
|
-
Company
|
|
1031
|
-
</div>
|
|
1032
|
-
</a>
|
|
1033
|
-
</div>
|
|
1034
|
-
</nav>
|
|
1035
|
-
</button>
|
|
1036
|
-
</div>
|
|
1037
|
-
<button
|
|
1038
|
-
on:click={() => (openMenu = "")}
|
|
1039
|
-
class="w-full py-6 px-5 text-left"
|
|
1040
|
-
>
|
|
1041
|
-
<div class="grid grid-cols-2 gap-4">
|
|
1042
|
-
<div class="flow-root">
|
|
1043
|
-
<a
|
|
1044
|
-
href="https://www.thunderheadeng.com/news"
|
|
1045
|
-
class="-m-3 flex items-start p-3 text-base font-medium text-gray-900 hover:bg-gray-100"
|
|
1046
|
-
>
|
|
1047
|
-
<svg
|
|
1048
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
1049
|
-
class="h-6 w-6 flex-shrink-0 text-gray-400"
|
|
1050
|
-
fill="none"
|
|
1051
|
-
viewBox="0 0 24 24"
|
|
1052
|
-
stroke="currentColor"
|
|
1053
|
-
>
|
|
1054
|
-
<path
|
|
1055
|
-
stroke-linecap="round"
|
|
1056
|
-
stroke-linejoin="round"
|
|
1057
|
-
stroke-width="2"
|
|
1058
|
-
d="M11 5.882V19.24a1.76 1.76 0 01-3.417.592l-2.147-6.15M18 13a3 3 0 100-6M5.436 13.683A4.001 4.001 0 017 6h1.832c4.1 0 7.625-1.234 9.168-3v14c-1.543-1.766-5.067-3-9.168-3H7a3.988 3.988 0 01-1.564-.317z"
|
|
1059
|
-
/>
|
|
1060
|
-
</svg>
|
|
1061
|
-
<span class="ml-3">News</span>
|
|
1062
|
-
</a>
|
|
1063
|
-
</div>
|
|
1064
|
-
<div class="flow-root">
|
|
1065
|
-
<a
|
|
1066
|
-
href="https://support.thunderheadeng.com/release-notes"
|
|
1067
|
-
class="-m-3 flex items-start p-3 text-base font-medium text-gray-900 hover:bg-gray-100"
|
|
1068
|
-
>
|
|
1069
|
-
<svg
|
|
1070
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
1071
|
-
class="h-6 w-6 flex-shrink-0 text-gray-400"
|
|
1072
|
-
fill="none"
|
|
1073
|
-
viewBox="0 0 24 24"
|
|
1074
|
-
stroke="currentColor"
|
|
1075
|
-
>
|
|
1076
|
-
<path
|
|
1077
|
-
stroke-linecap="round"
|
|
1078
|
-
stroke-linejoin="round"
|
|
1079
|
-
stroke-width="2"
|
|
1080
|
-
d="M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z"
|
|
1081
|
-
/>
|
|
1082
|
-
</svg>
|
|
1083
|
-
<span class="ml-3">Release Notes</span>
|
|
1084
|
-
</a>
|
|
1085
|
-
</div>
|
|
1086
|
-
<div class="flow-root">
|
|
1087
|
-
<a
|
|
1088
|
-
href="https://store2.thunderheadeng.com/cart"
|
|
1089
|
-
class="-m-3 flex items-start p-3 text-base font-medium text-gray-900 hover:bg-gray-100"
|
|
1090
|
-
>
|
|
1091
|
-
<svg
|
|
1092
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
1093
|
-
class="h-6 w-6 flex-shrink-0 text-gray-400"
|
|
1094
|
-
fill="none"
|
|
1095
|
-
viewBox="0 0 24 24"
|
|
1096
|
-
stroke="currentColor"
|
|
1097
|
-
>
|
|
1098
|
-
<path
|
|
1099
|
-
stroke-linecap="round"
|
|
1100
|
-
stroke-linejoin="round"
|
|
1101
|
-
stroke-width="2"
|
|
1102
|
-
d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"
|
|
1103
|
-
/>
|
|
1104
|
-
</svg>
|
|
1105
|
-
<span class="ml-3">Order Online</span>
|
|
1106
|
-
</a>
|
|
1107
|
-
</div>
|
|
1108
|
-
<div class="flow-root">
|
|
1109
|
-
<a
|
|
1110
|
-
href="https://store2.thunderheadeng.com/trial"
|
|
1111
|
-
class="-m-3 flex items-start p-3 text-base font-medium text-gray-900 hover:bg-gray-100"
|
|
1112
|
-
>
|
|
1113
|
-
<svg
|
|
1114
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
1115
|
-
class="h-6 w-6 flex-shrink-0 text-gray-400"
|
|
1116
|
-
fill="none"
|
|
1117
|
-
viewBox="0 0 24 24"
|
|
1118
|
-
stroke="currentColor"
|
|
1119
|
-
>
|
|
1120
|
-
<path
|
|
1121
|
-
stroke-linecap="round"
|
|
1122
|
-
stroke-linejoin="round"
|
|
1123
|
-
stroke-width="2"
|
|
1124
|
-
d="M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z"
|
|
1125
|
-
/>
|
|
1126
|
-
</svg>
|
|
1127
|
-
<span class="ml-3">30-day Trial</span>
|
|
1128
|
-
</a>
|
|
1129
|
-
</div>
|
|
1130
|
-
<div class="flow-root">
|
|
1131
|
-
<a
|
|
1132
|
-
href="mailto:sales@thunderheadeng.com"
|
|
1133
|
-
class="-m-3 flex items-start p-3 text-base font-medium text-gray-900 hover:bg-gray-100"
|
|
1134
|
-
>
|
|
1135
|
-
<svg
|
|
1136
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
1137
|
-
class="h-6 w-6 flex-shrink-0 text-gray-400"
|
|
1138
|
-
fill="none"
|
|
1139
|
-
viewBox="0 0 24 24"
|
|
1140
|
-
stroke="currentColor"
|
|
1141
|
-
>
|
|
1142
|
-
<path
|
|
1143
|
-
stroke-linecap="round"
|
|
1144
|
-
stroke-linejoin="round"
|
|
1145
|
-
stroke-width="2"
|
|
1146
|
-
d="M3 8l7.89 5.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z"
|
|
1147
|
-
/>
|
|
1148
|
-
</svg>
|
|
1149
|
-
<span class="ml-3">Sales</span>
|
|
1150
|
-
</a>
|
|
1151
|
-
</div>
|
|
1152
|
-
<div class="flow-root">
|
|
1153
|
-
<a
|
|
1154
|
-
href="mailto:support@thunderheadeng.com"
|
|
1155
|
-
class="-m-3 flex items-start p-3 text-base font-medium text-gray-900 hover:bg-gray-100"
|
|
1156
|
-
>
|
|
1157
|
-
<svg
|
|
1158
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
1159
|
-
class="h-6 w-6 flex-shrink-0 text-gray-400"
|
|
1160
|
-
fill="none"
|
|
1161
|
-
viewBox="0 0 24 24"
|
|
1162
|
-
stroke="currentColor"
|
|
1163
|
-
>
|
|
1164
|
-
<path
|
|
1165
|
-
stroke-linecap="round"
|
|
1166
|
-
stroke-linejoin="round"
|
|
1167
|
-
stroke-width="2"
|
|
1168
|
-
d="M3 8l7.89 5.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z"
|
|
1169
|
-
/>
|
|
1170
|
-
</svg>
|
|
1171
|
-
<span class="ml-3">Support</span>
|
|
1172
|
-
</a>
|
|
1173
|
-
</div>
|
|
1174
|
-
</div>
|
|
1175
|
-
</button>
|
|
1176
|
-
</div>
|
|
1177
|
-
{/if}
|
|
1178
|
-
</header>
|