tecitheme 0.8.1 → 0.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/TECi_logo.svelte +177 -0
- package/dist/assets/TECi_logo.svelte.d.ts +23 -0
- package/dist/assets/js/store.d.ts +3 -0
- package/dist/assets/js/store.js +4 -0
- package/dist/components/Accordion.svelte +74 -0
- package/dist/components/Accordion.svelte.d.ts +27 -0
- package/dist/components/Banner.svelte +91 -0
- package/dist/components/Banner.svelte.d.ts +33 -0
- package/dist/components/Button.svelte +21 -0
- package/dist/components/Button.svelte.d.ts +37 -0
- package/dist/components/CTA.svelte +51 -0
- package/dist/components/CTA.svelte.d.ts +23 -0
- package/dist/components/CTASplitImage.svelte +34 -0
- package/dist/components/CTASplitImage.svelte.d.ts +23 -0
- package/dist/components/Card.svelte +91 -0
- package/dist/components/Card.svelte.d.ts +25 -0
- package/dist/components/CognitoForm.svelte +24 -0
- package/dist/components/CognitoForm.svelte.d.ts +27 -0
- package/dist/components/ContentTwoColumns.svelte +54 -0
- package/dist/components/ContentTwoColumns.svelte.d.ts +23 -0
- package/dist/components/CountrySelector.svelte +167 -0
- package/dist/components/CountrySelector.svelte.d.ts +27 -0
- package/dist/components/FeatureGrid.svelte +44 -0
- package/dist/components/FeatureGrid.svelte.d.ts +23 -0
- package/dist/components/Figure.svelte +40 -0
- package/dist/components/Figure.svelte.d.ts +29 -0
- package/dist/components/Footer.svelte +243 -0
- package/dist/components/Footer.svelte.d.ts +23 -0
- package/dist/components/Header.svelte +888 -0
- package/dist/components/Header.svelte.d.ts +30 -0
- package/dist/components/HeadingCentered.svelte +38 -0
- package/dist/components/HeadingCentered.svelte.d.ts +23 -0
- package/dist/components/Hero.svelte +82 -0
- package/dist/components/Hero.svelte.d.ts +23 -0
- package/dist/components/Icon.svelte +162 -0
- package/dist/components/Icon.svelte.d.ts +25 -0
- package/dist/components/LogoCloud.svelte +25 -0
- package/dist/components/LogoCloud.svelte.d.ts +23 -0
- package/dist/components/Math.svelte +24 -0
- package/dist/components/Math.svelte.d.ts +25 -0
- package/dist/components/MediaFeature.svelte +76 -0
- package/dist/components/MediaFeature.svelte.d.ts +23 -0
- package/dist/components/Modal.svelte +69 -0
- package/dist/components/Modal.svelte.d.ts +29 -0
- package/dist/components/NewsGrid.svelte +196 -0
- package/dist/components/NewsGrid.svelte.d.ts +23 -0
- package/dist/components/PageNav.svelte +243 -0
- package/dist/components/PageNav.svelte.d.ts +32 -0
- package/dist/components/PricingTable.svelte +100 -0
- package/dist/components/PricingTable.svelte.d.ts +23 -0
- package/dist/components/SidebarContent.svelte +124 -0
- package/dist/components/SidebarContent.svelte.d.ts +33 -0
- package/dist/components/Stats.svelte +40 -0
- package/dist/components/Stats.svelte.d.ts +23 -0
- package/dist/components/Testimonial.svelte +168 -0
- package/dist/components/Testimonial.svelte.d.ts +23 -0
- package/dist/components/ThreeColumn.svelte +20 -0
- package/dist/components/ThreeColumn.svelte.d.ts +23 -0
- package/dist/components/TrialForm.svelte +296 -0
- package/dist/components/TrialForm.svelte.d.ts +14 -0
- package/dist/components/Video.svelte +125 -0
- package/dist/components/Video.svelte.d.ts +27 -0
- package/dist/components/Wrap.svelte +12 -0
- package/dist/components/Wrap.svelte.d.ts +31 -0
- package/dist/get-content.d.ts +9 -0
- package/dist/get-content.js +98 -0
- package/dist/index.d.ts +31 -0
- package/dist/index.js +31 -0
- package/dist/layouts/blocks.svelte +108 -0
- package/dist/layouts/blocks.svelte.d.ts +47 -0
- package/dist/req_utils.d.ts +3 -0
- package/dist/req_utils.js +63 -0
- package/dist/site_config.json +13 -0
- package/dist/utils.d.ts +5 -0
- package/dist/utils.js +162 -0
- package/dist/variables.d.ts +1 -0
- package/dist/variables.js +2 -0
- package/package.json +1 -1
|
@@ -0,0 +1,888 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from "./Icon.svelte";
|
|
3
|
+
import { fade, 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-50 shadow"
|
|
38
|
+
/>
|
|
39
|
+
<div
|
|
40
|
+
class="relative mx-auto flex max-w-7xl items-center justify-between px-2 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-shrink-0 md:items-center md:justify-between">
|
|
52
|
+
<nav class="flex md:space-x-6 lg:space-x-10">
|
|
53
|
+
|
|
54
|
+
<!-- Products -->
|
|
55
|
+
<div id="products">
|
|
56
|
+
<button
|
|
57
|
+
type="button"
|
|
58
|
+
on:click={() =>
|
|
59
|
+
openMenu == "products"
|
|
60
|
+
? (openMenu = "")
|
|
61
|
+
: (openMenu = "products")}
|
|
62
|
+
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"
|
|
63
|
+
aria-expanded={openMenu == "products"}
|
|
64
|
+
>
|
|
65
|
+
<span class:text-gray-900={openMenu == "products"}>Products</span>
|
|
66
|
+
<svg
|
|
67
|
+
class="ml-2 h-5 w-5 group-hover:text-gray-900 {openMenu ==
|
|
68
|
+
'products'
|
|
69
|
+
? 'rotate-180 text-gray-900'
|
|
70
|
+
: 'text-gray-400'}"
|
|
71
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
72
|
+
viewBox="0 0 20 20"
|
|
73
|
+
fill="currentColor"
|
|
74
|
+
aria-hidden="true"
|
|
75
|
+
>
|
|
76
|
+
<path
|
|
77
|
+
fill-rule="evenodd"
|
|
78
|
+
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"
|
|
79
|
+
clip-rule="evenodd"
|
|
80
|
+
/>
|
|
81
|
+
</svg>
|
|
82
|
+
</button>
|
|
83
|
+
|
|
84
|
+
<!-- Flyout menu -->
|
|
85
|
+
{#if openMenu == "products"}
|
|
86
|
+
<div
|
|
87
|
+
class="absolute inset-x-0 top-full z-50 transform bg-white text-left shadow-lg"
|
|
88
|
+
use:clickOutside
|
|
89
|
+
on:outclick={() => (openMenu = "")}
|
|
90
|
+
in:slide={{ duration: 250, easing: cubicOut }}
|
|
91
|
+
out:slide={{ duration: 150, easing: cubicIn }}
|
|
92
|
+
>
|
|
93
|
+
<button
|
|
94
|
+
on:click={() => (openMenu = "")}
|
|
95
|
+
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"
|
|
96
|
+
>
|
|
97
|
+
<!-- PyroSim -->
|
|
98
|
+
<a
|
|
99
|
+
href="https://www.thunderheadeng.com/pyrosim"
|
|
100
|
+
class="-m-3 flex flex-col justify-between p-3 hover:bg-gray-50"
|
|
101
|
+
>
|
|
102
|
+
<div class="flex md:h-full lg:flex-col">
|
|
103
|
+
<div class="flex-shrink-0">
|
|
104
|
+
<Icon classes="h-12 w-auto" icon="pyrosim" />
|
|
105
|
+
</div>
|
|
106
|
+
<div
|
|
107
|
+
class="ml-4 md:flex md:flex-1 md:flex-col md:justify-between lg:ml-0 lg:mt-4"
|
|
108
|
+
>
|
|
109
|
+
<!-- Main Card -->
|
|
110
|
+
<div>
|
|
111
|
+
<p class="text-base font-medium text-gray-900">
|
|
112
|
+
PyroSim
|
|
113
|
+
</p>
|
|
114
|
+
<p class="mt-1 text-sm">
|
|
115
|
+
Analyze fire control and smoke dissipation in various
|
|
116
|
+
structures for fire protection and safety or
|
|
117
|
+
investigation.
|
|
118
|
+
</p>
|
|
119
|
+
</div>
|
|
120
|
+
|
|
121
|
+
<!-- Links -->
|
|
122
|
+
<div class="mt-2 lg:mt-4 grid grid-cols-2 justify-end gap-y-2">
|
|
123
|
+
|
|
124
|
+
<a href="https://support.thunderheadeng.com/docs/pyrosim/latest" class="text-teci-blue-light hover:text-teci-blue-dark font-medium">
|
|
125
|
+
Documentation <span aria-hidden="true">→</span>
|
|
126
|
+
</a>
|
|
127
|
+
|
|
128
|
+
<a href="https://support.thunderheadeng.com/tutorials/pyrosim" class="text-teci-blue-light hover:text-teci-blue-dark font-medium">
|
|
129
|
+
Tutorials <span aria-hidden="true">→</span>
|
|
130
|
+
</a>
|
|
131
|
+
|
|
132
|
+
<a href="https://support.thunderheadeng.com/release-notes/pyrosim/latest" class="text-teci-blue-light hover:text-teci-blue-dark font-medium">
|
|
133
|
+
Download <span aria-hidden="true">→</span>
|
|
134
|
+
</a>
|
|
135
|
+
|
|
136
|
+
<a href="https://training.thunderheadeng.com/courses/pyrosim-fundamentals" class="text-teci-blue-light hover:text-teci-blue-dark font-medium">
|
|
137
|
+
Courses <span aria-hidden="true">→</span>
|
|
138
|
+
</a>
|
|
139
|
+
|
|
140
|
+
</div>
|
|
141
|
+
|
|
142
|
+
</div>
|
|
143
|
+
</div>
|
|
144
|
+
</a>
|
|
145
|
+
|
|
146
|
+
<!-- Pathfinder -->
|
|
147
|
+
<a
|
|
148
|
+
href="https://www.thunderheadeng.com/pathfinder"
|
|
149
|
+
class="-m-3 flex flex-col justify-between p-3 hover:bg-gray-50"
|
|
150
|
+
>
|
|
151
|
+
<div class="flex md:h-full lg:flex-col">
|
|
152
|
+
<div class="flex-shrink-0">
|
|
153
|
+
<Icon classes="h-12 w-auto" icon="pathfinder" />
|
|
154
|
+
</div>
|
|
155
|
+
<div
|
|
156
|
+
class="ml-4 md:flex md:flex-1 md:flex-col md:justify-between lg:ml-0 lg:mt-4"
|
|
157
|
+
>
|
|
158
|
+
<!-- Main Card -->
|
|
159
|
+
<div>
|
|
160
|
+
<p class="text-base font-medium text-gray-900">
|
|
161
|
+
Pathfinder
|
|
162
|
+
</p>
|
|
163
|
+
<p class="mt-1 text-sm">
|
|
164
|
+
Understand pedestrian egress and congestion hazards
|
|
165
|
+
for fire protection and safety or urban planning.
|
|
166
|
+
</p>
|
|
167
|
+
</div>
|
|
168
|
+
|
|
169
|
+
<!-- Links -->
|
|
170
|
+
<div class="mt-2 lg:mt-4 grid grid-cols-2 justify-end gap-y-2">
|
|
171
|
+
|
|
172
|
+
<a href="https://support.thunderheadeng.com/docs/pathfinder/latest" class="text-teci-blue-light hover:text-teci-blue-dark font-medium">
|
|
173
|
+
Documentation <span aria-hidden="true">→</span>
|
|
174
|
+
</a>
|
|
175
|
+
|
|
176
|
+
<a href="https://support.thunderheadeng.com/tutorials/pathfinder" class="text-teci-blue-light hover:text-teci-blue-dark font-medium">
|
|
177
|
+
Tutorials <span aria-hidden="true">→</span>
|
|
178
|
+
</a>
|
|
179
|
+
|
|
180
|
+
<a href="https://support.thunderheadeng.com/release-notes/pathfinder/latest" class="text-teci-blue-light hover:text-teci-blue-dark font-medium">
|
|
181
|
+
Download <span aria-hidden="true">→</span>
|
|
182
|
+
</a>
|
|
183
|
+
|
|
184
|
+
<a href="https://training.thunderheadeng.com/courses/pathfinder-fundamentals" class="text-teci-blue-light hover:text-teci-blue-dark font-medium">
|
|
185
|
+
Courses <span aria-hidden="true">→</span>
|
|
186
|
+
</a>
|
|
187
|
+
|
|
188
|
+
</div>
|
|
189
|
+
</div>
|
|
190
|
+
</div>
|
|
191
|
+
</a>
|
|
192
|
+
|
|
193
|
+
<!-- Ventus -->
|
|
194
|
+
<a
|
|
195
|
+
href="https://www.thunderheadeng.com/ventus"
|
|
196
|
+
class="-m-3 flex flex-col justify-between p-3 hover:bg-gray-50"
|
|
197
|
+
>
|
|
198
|
+
<div class="flex md:h-full lg:flex-col">
|
|
199
|
+
<div class="flex-shrink-0">
|
|
200
|
+
<Icon classes="h-12 w-auto" icon="ventus" />
|
|
201
|
+
</div>
|
|
202
|
+
<div
|
|
203
|
+
class="ml-4 md:flex md:flex-1 md:flex-col md:justify-between lg:ml-0 lg:mt-4"
|
|
204
|
+
>
|
|
205
|
+
<!-- Main Card -->
|
|
206
|
+
<div>
|
|
207
|
+
<p class="text-base font-medium text-gray-900">
|
|
208
|
+
Ventus
|
|
209
|
+
</p>
|
|
210
|
+
<p class="mt-1 text-sm">
|
|
211
|
+
Create 3D pressurization models of smoke control solutions for stairwells, atria, and underground spaces.
|
|
212
|
+
</p>
|
|
213
|
+
</div>
|
|
214
|
+
|
|
215
|
+
<!-- Links -->
|
|
216
|
+
<div class="mt-2 lg:mt-4 grid grid-cols-2 justify-end gap-y-2">
|
|
217
|
+
|
|
218
|
+
<a href="https://support.thunderheadeng.com/docs/ventus/latest" class="text-teci-blue-light hover:text-teci-blue-dark font-medium">
|
|
219
|
+
Documentation <span aria-hidden="true">→</span>
|
|
220
|
+
</a>
|
|
221
|
+
|
|
222
|
+
<a href="https://support.thunderheadeng.com/tutorials/ventus" class="text-teci-blue-light hover:text-teci-blue-dark font-medium">
|
|
223
|
+
Tutorials <span aria-hidden="true">→</span>
|
|
224
|
+
</a>
|
|
225
|
+
|
|
226
|
+
<a href="https://support.thunderheadeng.com/release-notes/ventus/latest" class="text-teci-blue-light hover:text-teci-blue-dark font-medium">
|
|
227
|
+
Download <span aria-hidden="true">→</span>
|
|
228
|
+
</a>
|
|
229
|
+
|
|
230
|
+
<a href="https://training.thunderheadeng.com/courses/ventus-fundamentals" class="text-teci-blue-light hover:text-teci-blue-dark font-medium">
|
|
231
|
+
Courses <span aria-hidden="true">→</span>
|
|
232
|
+
</a>
|
|
233
|
+
|
|
234
|
+
</div>
|
|
235
|
+
|
|
236
|
+
</div>
|
|
237
|
+
</div>
|
|
238
|
+
</a>
|
|
239
|
+
</button>
|
|
240
|
+
|
|
241
|
+
<!-- Action Buttons -->
|
|
242
|
+
<div class="relative bg-gray-50 text-left">
|
|
243
|
+
<button
|
|
244
|
+
on:click={() => (openMenu = "")}
|
|
245
|
+
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"
|
|
246
|
+
>
|
|
247
|
+
|
|
248
|
+
<!-- Order Online -->
|
|
249
|
+
<div class="flow-root">
|
|
250
|
+
<a
|
|
251
|
+
href="https://store2.thunderheadeng.com/cart"
|
|
252
|
+
class="-m-3 flex items-center p-3 text-base font-medium text-gray-900 hover:bg-gray-100"
|
|
253
|
+
>
|
|
254
|
+
<svg
|
|
255
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
256
|
+
class="h-6 w-6 flex-shrink-0 text-gray-400"
|
|
257
|
+
fill="none"
|
|
258
|
+
viewBox="0 0 24 24"
|
|
259
|
+
stroke="currentColor"
|
|
260
|
+
>
|
|
261
|
+
<path
|
|
262
|
+
stroke-linecap="round"
|
|
263
|
+
stroke-linejoin="round"
|
|
264
|
+
stroke-width="2"
|
|
265
|
+
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"
|
|
266
|
+
/>
|
|
267
|
+
</svg>
|
|
268
|
+
<span class="ml-3">Order Online</span>
|
|
269
|
+
</a>
|
|
270
|
+
</div>
|
|
271
|
+
|
|
272
|
+
<!-- 30-Day Trial -->
|
|
273
|
+
<div class="flow-root">
|
|
274
|
+
<a
|
|
275
|
+
href="https://store2.thunderheadeng.com/trial"
|
|
276
|
+
class="-m-3 flex items-center p-3 text-base font-medium text-gray-900 hover:bg-gray-100"
|
|
277
|
+
>
|
|
278
|
+
<svg
|
|
279
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
280
|
+
class="h-6 w-6 flex-shrink-0 text-gray-400"
|
|
281
|
+
fill="none"
|
|
282
|
+
viewBox="0 0 24 24"
|
|
283
|
+
stroke="currentColor"
|
|
284
|
+
>
|
|
285
|
+
<path
|
|
286
|
+
stroke-linecap="round"
|
|
287
|
+
stroke-linejoin="round"
|
|
288
|
+
stroke-width="2"
|
|
289
|
+
d="M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z"
|
|
290
|
+
/>
|
|
291
|
+
</svg>
|
|
292
|
+
<span class="ml-3">30-day Trial</span>
|
|
293
|
+
</a>
|
|
294
|
+
</div>
|
|
295
|
+
|
|
296
|
+
<!-- Get Help -->
|
|
297
|
+
<div class="flow-root">
|
|
298
|
+
<a
|
|
299
|
+
href="https://help.thunderheadeng.com/support/tickets/new"
|
|
300
|
+
class="-m-3 flex items-center p-3 text-base font-medium text-gray-900 hover:bg-gray-100"
|
|
301
|
+
>
|
|
302
|
+
<svg
|
|
303
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
304
|
+
height="24"
|
|
305
|
+
viewBox="0 -960 960 960"
|
|
306
|
+
width="24"
|
|
307
|
+
fill="currentColor"
|
|
308
|
+
class="h-6 w-6 flex-shrink-0 text-gray-400"
|
|
309
|
+
>
|
|
310
|
+
<path
|
|
311
|
+
d="M440-120v-80h320v-284q0-117-81.5-198.5T480-764q-117 0-198.5 81.5T200-484v244h-40q-33 0-56.5-23.5T80-320v-80q0-21 10.5-39.5T120-469l3-53q8-68 39.5-126t79-101q47.5-43 109-67T480-840q68 0 129 24t109 66.5Q766-707 797-649t40 126l3 52q19 9 29.5 27t10.5 38v92q0 20-10.5 38T840-249v49q0 33-23.5 56.5T760-120H440Zm-80-280q-17 0-28.5-11.5T320-440q0-17 11.5-28.5T360-480q17 0 28.5 11.5T400-440q0 17-11.5 28.5T360-400Zm240 0q-17 0-28.5-11.5T560-440q0-17 11.5-28.5T600-480q17 0 28.5 11.5T640-440q0 17-11.5 28.5T600-400Zm-359-62q-7-106 64-182t177-76q89 0 156.5 56.5T720-519q-91-1-167.5-49T435-698q-16 80-67.5 142.5T241-462Z"
|
|
312
|
+
/>
|
|
313
|
+
</svg>
|
|
314
|
+
<span class="ml-3">Get Help</span>
|
|
315
|
+
</a>
|
|
316
|
+
</div>
|
|
317
|
+
</button>
|
|
318
|
+
</div>
|
|
319
|
+
</div>
|
|
320
|
+
{/if}
|
|
321
|
+
</div>
|
|
322
|
+
|
|
323
|
+
<!-- Company -->
|
|
324
|
+
<div id="company" class="relative">
|
|
325
|
+
<button
|
|
326
|
+
type="button"
|
|
327
|
+
on:click={() =>
|
|
328
|
+
openMenu == "company" ? (openMenu = "") : (openMenu = "company")}
|
|
329
|
+
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"
|
|
330
|
+
aria-expanded={openMenu == "company"}
|
|
331
|
+
>
|
|
332
|
+
<span class:text-gray-900={openMenu == "company"}>Company</span>
|
|
333
|
+
<svg
|
|
334
|
+
class="ml-2 h-5 w-5 group-hover:text-gray-900 {openMenu ===
|
|
335
|
+
'company'
|
|
336
|
+
? 'rotate-180 text-gray-900'
|
|
337
|
+
: 'text-gray-400'}"
|
|
338
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
339
|
+
viewBox="0 0 20 20"
|
|
340
|
+
fill="currentColor"
|
|
341
|
+
aria-hidden="true"
|
|
342
|
+
>
|
|
343
|
+
<path
|
|
344
|
+
fill-rule="evenodd"
|
|
345
|
+
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"
|
|
346
|
+
clip-rule="evenodd"
|
|
347
|
+
/>
|
|
348
|
+
</svg>
|
|
349
|
+
</button>
|
|
350
|
+
|
|
351
|
+
{#if openMenu == "company"}
|
|
352
|
+
<div
|
|
353
|
+
class="absolute left-1/2 z-50 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"
|
|
354
|
+
use:clickOutside
|
|
355
|
+
on:outclick={() => (openMenu = "")}
|
|
356
|
+
in:slide={{ duration: 250, easing: cubicOut }}
|
|
357
|
+
out:slide={{ duration: 150, easing: cubicIn }}
|
|
358
|
+
>
|
|
359
|
+
<button
|
|
360
|
+
on:click={() => (openMenu = "")}
|
|
361
|
+
class="relative grid w-full gap-6 bg-white px-5 py-6 text-left sm:gap-8 sm:p-8"
|
|
362
|
+
>
|
|
363
|
+
<a
|
|
364
|
+
href="https://www.thunderheadeng.com/about"
|
|
365
|
+
class="-m-3 flex items-start p-3 transition duration-150 ease-in-out hover:bg-gray-50"
|
|
366
|
+
>
|
|
367
|
+
<svg
|
|
368
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
369
|
+
class="h-6 w-6 text-teci-blue-light"
|
|
370
|
+
fill="none"
|
|
371
|
+
viewBox="0 0 24 24"
|
|
372
|
+
stroke="currentColor"
|
|
373
|
+
>
|
|
374
|
+
<path
|
|
375
|
+
stroke-linecap="round"
|
|
376
|
+
stroke-linejoin="round"
|
|
377
|
+
stroke-width="2"
|
|
378
|
+
d="M13 16h-1v-4h-1m1-4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z"
|
|
379
|
+
/>
|
|
380
|
+
</svg>
|
|
381
|
+
<div class="ml-4">
|
|
382
|
+
<p class="text-base font-medium text-gray-900">About</p>
|
|
383
|
+
<p class="mt-1 text-sm">
|
|
384
|
+
Learn more about Thunderhead Engineering
|
|
385
|
+
</p>
|
|
386
|
+
</div>
|
|
387
|
+
</a>
|
|
388
|
+
|
|
389
|
+
<a
|
|
390
|
+
href="https://www.thunderheadeng.com/news"
|
|
391
|
+
class="-m-3 flex items-start p-3 transition duration-150 ease-in-out hover:bg-gray-50"
|
|
392
|
+
>
|
|
393
|
+
<svg
|
|
394
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
395
|
+
class="h-6 w-6 flex-shrink-0 text-teci-blue-light"
|
|
396
|
+
fill="none"
|
|
397
|
+
viewBox="0 0 24 24"
|
|
398
|
+
stroke="currentColor"
|
|
399
|
+
>
|
|
400
|
+
<path
|
|
401
|
+
stroke-linecap="round"
|
|
402
|
+
stroke-linejoin="round"
|
|
403
|
+
stroke-width="2"
|
|
404
|
+
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"
|
|
405
|
+
/>
|
|
406
|
+
</svg>
|
|
407
|
+
<div class="ml-4">
|
|
408
|
+
<p class="text-base font-medium text-gray-900">News</p>
|
|
409
|
+
<p class="mt-1 text-sm">
|
|
410
|
+
Announcements for our products and services
|
|
411
|
+
</p>
|
|
412
|
+
</div>
|
|
413
|
+
</a>
|
|
414
|
+
|
|
415
|
+
<a
|
|
416
|
+
href="https://www.thunderheadeng.com/job-openings"
|
|
417
|
+
class="-m-3 flex items-start p-3 transition duration-150 ease-in-out hover:bg-gray-50"
|
|
418
|
+
>
|
|
419
|
+
<svg
|
|
420
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
421
|
+
class="h-6 w-6 flex-shrink-0 text-teci-blue-light"
|
|
422
|
+
fill="none"
|
|
423
|
+
viewBox="0 0 24 24"
|
|
424
|
+
stroke="currentColor"
|
|
425
|
+
>
|
|
426
|
+
<path
|
|
427
|
+
stroke-linecap="round"
|
|
428
|
+
stroke-linejoin="round"
|
|
429
|
+
stroke-width="2"
|
|
430
|
+
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"
|
|
431
|
+
/>
|
|
432
|
+
</svg>
|
|
433
|
+
<div class="ml-4">
|
|
434
|
+
<p class="text-base font-medium text-gray-900">Jobs</p>
|
|
435
|
+
<p class="mt-1 text-sm">
|
|
436
|
+
Become a part of the Thunderhead team
|
|
437
|
+
</p>
|
|
438
|
+
</div>
|
|
439
|
+
</a>
|
|
440
|
+
|
|
441
|
+
<a
|
|
442
|
+
href="https://www.thunderheadeng.com/partners"
|
|
443
|
+
class="-m-3 flex items-start p-3 transition duration-150 ease-in-out hover:bg-gray-50"
|
|
444
|
+
>
|
|
445
|
+
<svg
|
|
446
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
447
|
+
class="h-6 w-6 flex-shrink-0 text-teci-blue-light"
|
|
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="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"
|
|
457
|
+
/>
|
|
458
|
+
</svg>
|
|
459
|
+
<div class="ml-4">
|
|
460
|
+
<p class="text-base font-medium text-gray-900">Partners</p>
|
|
461
|
+
<p class="mt-1 text-sm">
|
|
462
|
+
International reseller and distributor network
|
|
463
|
+
</p>
|
|
464
|
+
</div>
|
|
465
|
+
</a>
|
|
466
|
+
</button>
|
|
467
|
+
</div>
|
|
468
|
+
{/if}
|
|
469
|
+
</div>
|
|
470
|
+
|
|
471
|
+
<a href="https://femtc.com/events/2024" class="text-base font-medium hover:text-gray-900">FEMTC 2024</a>
|
|
472
|
+
</nav>
|
|
473
|
+
</div>
|
|
474
|
+
|
|
475
|
+
<!-- Search -->
|
|
476
|
+
<div
|
|
477
|
+
class="ml-2 flex flex-1 items-center justify-center md:ml-0 md:px-0 lg:justify-end"
|
|
478
|
+
>
|
|
479
|
+
<div class="w-full max-w-lg lg:max-w-xs">
|
|
480
|
+
<form
|
|
481
|
+
class="m-0"
|
|
482
|
+
action="https://support.thunderheadeng.com/search"
|
|
483
|
+
method="get"
|
|
484
|
+
>
|
|
485
|
+
<label for="search" class="sr-only">Search</label>
|
|
486
|
+
<div class="relative">
|
|
487
|
+
<div
|
|
488
|
+
class="pointer-events-none absolute inset-y-0 left-0 flex items-center pl-3"
|
|
489
|
+
>
|
|
490
|
+
<svg
|
|
491
|
+
class="h-5 w-5 text-gray-400"
|
|
492
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
493
|
+
viewBox="0 0 20 20"
|
|
494
|
+
fill="currentColor"
|
|
495
|
+
aria-hidden="true"
|
|
496
|
+
>
|
|
497
|
+
<path
|
|
498
|
+
fill-rule="evenodd"
|
|
499
|
+
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"
|
|
500
|
+
clip-rule="evenodd"
|
|
501
|
+
/>
|
|
502
|
+
</svg>
|
|
503
|
+
</div>
|
|
504
|
+
<input
|
|
505
|
+
id="search"
|
|
506
|
+
name="teci-search[query]"
|
|
507
|
+
placeholder="Search"
|
|
508
|
+
type="search"
|
|
509
|
+
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"
|
|
510
|
+
/>
|
|
511
|
+
</div>
|
|
512
|
+
</form>
|
|
513
|
+
</div>
|
|
514
|
+
</div>
|
|
515
|
+
|
|
516
|
+
<!-- Application Buttons -->
|
|
517
|
+
<div class="px-2">
|
|
518
|
+
<div class="flex items-center justify-between">
|
|
519
|
+
<div class="mr-2 md:mr-4">
|
|
520
|
+
<a
|
|
521
|
+
href="https://cart.thunderheadeng.com/cgi-bin/UCEditor?merchantId=THENG"
|
|
522
|
+
title="Shopping Cart"
|
|
523
|
+
>
|
|
524
|
+
<svg
|
|
525
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
526
|
+
class="h-6 w-6 flex-shrink-0 md:h-8 md:w-8"
|
|
527
|
+
fill="none"
|
|
528
|
+
viewBox="0 0 24 24"
|
|
529
|
+
stroke="currentColor"
|
|
530
|
+
>
|
|
531
|
+
<path
|
|
532
|
+
stroke-linecap="round"
|
|
533
|
+
stroke-linejoin="round"
|
|
534
|
+
stroke-width="2"
|
|
535
|
+
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"
|
|
536
|
+
/>
|
|
537
|
+
</svg>
|
|
538
|
+
</a>
|
|
539
|
+
</div>
|
|
540
|
+
<div>
|
|
541
|
+
<a
|
|
542
|
+
href="https://cart.thunderheadeng.com/cgi-bin/UCMyAccount"
|
|
543
|
+
title="My Account"
|
|
544
|
+
>
|
|
545
|
+
<svg
|
|
546
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
547
|
+
class="h-6 w-6 flex-shrink-0 md:h-8 md:w-8"
|
|
548
|
+
fill="none"
|
|
549
|
+
viewBox="0 0 24 24"
|
|
550
|
+
stroke="currentColor"
|
|
551
|
+
>
|
|
552
|
+
<path
|
|
553
|
+
stroke-linecap="round"
|
|
554
|
+
stroke-linejoin="round"
|
|
555
|
+
stroke-width="2"
|
|
556
|
+
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"
|
|
557
|
+
/>
|
|
558
|
+
</svg>
|
|
559
|
+
</a>
|
|
560
|
+
</div>
|
|
561
|
+
</div>
|
|
562
|
+
</div>
|
|
563
|
+
|
|
564
|
+
<!-- Mobile Menu Button-->
|
|
565
|
+
<div class="md:hidden">
|
|
566
|
+
<button
|
|
567
|
+
type="button"
|
|
568
|
+
on:click={() => (openMenu = "mobile")}
|
|
569
|
+
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"
|
|
570
|
+
aria-expanded={openMenu == "mobile"}
|
|
571
|
+
>
|
|
572
|
+
<span class="sr-only">Open mobile menu</span>
|
|
573
|
+
|
|
574
|
+
<svg
|
|
575
|
+
class="h-6 w-6"
|
|
576
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
577
|
+
fill="none"
|
|
578
|
+
viewBox="0 0 24 24"
|
|
579
|
+
stroke="currentColor"
|
|
580
|
+
aria-hidden="true"
|
|
581
|
+
>
|
|
582
|
+
<path
|
|
583
|
+
stroke-linecap="round"
|
|
584
|
+
stroke-linejoin="round"
|
|
585
|
+
stroke-width="2"
|
|
586
|
+
d="M4 6h16M4 12h16M4 18h16"
|
|
587
|
+
/>
|
|
588
|
+
</svg>
|
|
589
|
+
</button>
|
|
590
|
+
</div>
|
|
591
|
+
</div>
|
|
592
|
+
|
|
593
|
+
<!-- Mobile menu, show/hide based on mobile menu state.-->
|
|
594
|
+
{#if openMenu == "mobile"}
|
|
595
|
+
<div
|
|
596
|
+
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"
|
|
597
|
+
use:clickOutside
|
|
598
|
+
on:outclick={() => (openMenu = "")}
|
|
599
|
+
in:fade={{ duration: 250, easing: cubicOut }}
|
|
600
|
+
out:fade={{ duration: 150, easing: cubicIn }}
|
|
601
|
+
>
|
|
602
|
+
<div class="px-2 pt-5 pb-6">
|
|
603
|
+
<!-- Top Bar -->
|
|
604
|
+
<div class="flex items-center justify-between">
|
|
605
|
+
|
|
606
|
+
<!-- Logo -->
|
|
607
|
+
<a
|
|
608
|
+
on:click={() => (openMenu = "")}
|
|
609
|
+
class="block"
|
|
610
|
+
href="https://www.thunderheadeng.com"
|
|
611
|
+
>
|
|
612
|
+
<img
|
|
613
|
+
class="h-10 w-auto"
|
|
614
|
+
src="https://files.thunderheadeng.com/www/images/teci_logo.svg"
|
|
615
|
+
alt="Thunderhead Engineering"
|
|
616
|
+
/>
|
|
617
|
+
</a>
|
|
618
|
+
|
|
619
|
+
<!-- Close Button -->
|
|
620
|
+
<button
|
|
621
|
+
type="button"
|
|
622
|
+
on:click={() => (openMenu = "")}
|
|
623
|
+
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"
|
|
624
|
+
>
|
|
625
|
+
<span class="sr-only">Close menu</span>
|
|
626
|
+
|
|
627
|
+
<svg
|
|
628
|
+
class="h-6 w-6"
|
|
629
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
630
|
+
fill="none"
|
|
631
|
+
viewBox="0 0 24 24"
|
|
632
|
+
stroke="currentColor"
|
|
633
|
+
aria-hidden="true"
|
|
634
|
+
>
|
|
635
|
+
<path
|
|
636
|
+
stroke-linecap="round"
|
|
637
|
+
stroke-linejoin="round"
|
|
638
|
+
stroke-width="2"
|
|
639
|
+
d="M6 18L18 6M6 6l12 12"
|
|
640
|
+
/>
|
|
641
|
+
</svg>
|
|
642
|
+
</button>
|
|
643
|
+
|
|
644
|
+
</div>
|
|
645
|
+
|
|
646
|
+
<!-- Menu -->
|
|
647
|
+
<button on:click={() => (openMenu = "")} class="mt-6 w-full sm:mt-8">
|
|
648
|
+
<nav>
|
|
649
|
+
<div class="grid gap-7 sm:grid-cols-2 sm:gap-y-8 sm:gap-x-4">
|
|
650
|
+
|
|
651
|
+
<!-- Products -->
|
|
652
|
+
<a href="https://www.thunderheadeng.com/" class="-m-3 flex items-center p-3 hover:bg-gray-50">
|
|
653
|
+
<div
|
|
654
|
+
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"
|
|
655
|
+
>
|
|
656
|
+
<svg
|
|
657
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
658
|
+
class="h-6 w-6"
|
|
659
|
+
fill="none"
|
|
660
|
+
viewBox="0 0 24 24"
|
|
661
|
+
stroke="currentColor"
|
|
662
|
+
>
|
|
663
|
+
<path
|
|
664
|
+
stroke-linecap="round"
|
|
665
|
+
stroke-linejoin="round"
|
|
666
|
+
stroke-width="2"
|
|
667
|
+
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"
|
|
668
|
+
/>
|
|
669
|
+
</svg>
|
|
670
|
+
</div>
|
|
671
|
+
<div class="ml-4 text-base font-medium text-gray-900">
|
|
672
|
+
Products
|
|
673
|
+
</div>
|
|
674
|
+
</a>
|
|
675
|
+
|
|
676
|
+
<!-- Company -->
|
|
677
|
+
<a
|
|
678
|
+
href="https://www.thunderheadeng.com/about"
|
|
679
|
+
class="-m-3 flex items-center p-3 hover:bg-gray-50"
|
|
680
|
+
>
|
|
681
|
+
<div
|
|
682
|
+
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"
|
|
683
|
+
>
|
|
684
|
+
<svg
|
|
685
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
686
|
+
class="h-6 w-6"
|
|
687
|
+
fill="none"
|
|
688
|
+
viewBox="0 0 24 24"
|
|
689
|
+
stroke="currentColor"
|
|
690
|
+
>
|
|
691
|
+
<path
|
|
692
|
+
stroke-linecap="round"
|
|
693
|
+
stroke-linejoin="round"
|
|
694
|
+
stroke-width="2"
|
|
695
|
+
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"
|
|
696
|
+
/>
|
|
697
|
+
</svg>
|
|
698
|
+
</div>
|
|
699
|
+
<div class="ml-4 text-base font-medium text-gray-900">
|
|
700
|
+
Company
|
|
701
|
+
</div>
|
|
702
|
+
</a>
|
|
703
|
+
|
|
704
|
+
<!-- FEMTC -->
|
|
705
|
+
<a
|
|
706
|
+
href="https://www.femtc.com/events/2024"
|
|
707
|
+
class="-m-3 flex items-center p-3 hover:bg-gray-50"
|
|
708
|
+
>
|
|
709
|
+
<div
|
|
710
|
+
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"
|
|
711
|
+
>
|
|
712
|
+
<svg
|
|
713
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
714
|
+
class="h-6 w-6"
|
|
715
|
+
fill="none"
|
|
716
|
+
viewBox="0 0 24 24"
|
|
717
|
+
stroke="currentColor"
|
|
718
|
+
><path
|
|
719
|
+
stroke-linecap="round"
|
|
720
|
+
stroke-linejoin="round"
|
|
721
|
+
stroke-width="2"
|
|
722
|
+
d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
|
|
723
|
+
/></svg
|
|
724
|
+
>
|
|
725
|
+
</div>
|
|
726
|
+
<div class="ml-4 text-base font-medium text-gray-900">
|
|
727
|
+
FEMTC 2024
|
|
728
|
+
</div>
|
|
729
|
+
</a>
|
|
730
|
+
|
|
731
|
+
</div>
|
|
732
|
+
</nav>
|
|
733
|
+
</button>
|
|
734
|
+
</div>
|
|
735
|
+
|
|
736
|
+
<!-- Bottom Buttons -->
|
|
737
|
+
<button type="button" on:click={() => (openMenu = "")}
|
|
738
|
+
class="w-full py-6 px-2 text-left"
|
|
739
|
+
>
|
|
740
|
+
<div class="grid grid-cols-2 gap-4">
|
|
741
|
+
|
|
742
|
+
|
|
743
|
+
<!-- Order Online -->
|
|
744
|
+
<div class="flow-root">
|
|
745
|
+
<a
|
|
746
|
+
href="https://store2.thunderheadeng.com/cart"
|
|
747
|
+
class="-m-3 flex items-start p-3 text-base font-medium text-gray-900 hover:bg-gray-100"
|
|
748
|
+
>
|
|
749
|
+
<svg
|
|
750
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
751
|
+
class="h-6 w-6 flex-shrink-0 text-gray-400"
|
|
752
|
+
fill="none"
|
|
753
|
+
viewBox="0 0 24 24"
|
|
754
|
+
stroke="currentColor"
|
|
755
|
+
>
|
|
756
|
+
<path
|
|
757
|
+
stroke-linecap="round"
|
|
758
|
+
stroke-linejoin="round"
|
|
759
|
+
stroke-width="2"
|
|
760
|
+
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"
|
|
761
|
+
/>
|
|
762
|
+
</svg>
|
|
763
|
+
<span class="ml-3">Order Online</span>
|
|
764
|
+
</a>
|
|
765
|
+
</div>
|
|
766
|
+
|
|
767
|
+
<!-- 30-day Trial -->
|
|
768
|
+
<div class="flow-root">
|
|
769
|
+
<a
|
|
770
|
+
href="https://store2.thunderheadeng.com/trial/"
|
|
771
|
+
class="-m-3 flex items-start p-3 text-base font-medium text-gray-900 hover:bg-gray-100"
|
|
772
|
+
>
|
|
773
|
+
<svg
|
|
774
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
775
|
+
class="h-6 w-6 flex-shrink-0 text-gray-400"
|
|
776
|
+
fill="none"
|
|
777
|
+
viewBox="0 0 24 24"
|
|
778
|
+
stroke="currentColor"
|
|
779
|
+
>
|
|
780
|
+
<path
|
|
781
|
+
stroke-linecap="round"
|
|
782
|
+
stroke-linejoin="round"
|
|
783
|
+
stroke-width="2"
|
|
784
|
+
d="M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z"
|
|
785
|
+
/>
|
|
786
|
+
</svg>
|
|
787
|
+
<span class="ml-3">30-day Trial</span>
|
|
788
|
+
</a>
|
|
789
|
+
</div>
|
|
790
|
+
|
|
791
|
+
<!-- News -->
|
|
792
|
+
<div class="flow-root">
|
|
793
|
+
<a
|
|
794
|
+
href="https://www.thunderheadeng.com/news"
|
|
795
|
+
class="-m-3 flex items-start p-3 text-base font-medium text-gray-900 hover:bg-gray-100"
|
|
796
|
+
>
|
|
797
|
+
<svg
|
|
798
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
799
|
+
class="h-6 w-6 flex-shrink-0 text-gray-400"
|
|
800
|
+
fill="none"
|
|
801
|
+
viewBox="0 0 24 24"
|
|
802
|
+
stroke="currentColor"
|
|
803
|
+
>
|
|
804
|
+
<path
|
|
805
|
+
stroke-linecap="round"
|
|
806
|
+
stroke-linejoin="round"
|
|
807
|
+
stroke-width="2"
|
|
808
|
+
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"
|
|
809
|
+
/>
|
|
810
|
+
</svg>
|
|
811
|
+
<span class="ml-3">News</span>
|
|
812
|
+
</a>
|
|
813
|
+
</div>
|
|
814
|
+
|
|
815
|
+
<!-- Releases -->
|
|
816
|
+
<div class="flow-root">
|
|
817
|
+
<a
|
|
818
|
+
href="https://support.thunderheadeng.com/release-notes"
|
|
819
|
+
class="-m-3 flex items-start p-3 text-base font-medium text-gray-900 hover:bg-gray-100"
|
|
820
|
+
>
|
|
821
|
+
<svg
|
|
822
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
823
|
+
class="h-6 w-6 flex-shrink-0 text-gray-400"
|
|
824
|
+
fill="none"
|
|
825
|
+
viewBox="0 0 24 24"
|
|
826
|
+
stroke="currentColor"
|
|
827
|
+
>
|
|
828
|
+
<path
|
|
829
|
+
stroke-linecap="round"
|
|
830
|
+
stroke-linejoin="round"
|
|
831
|
+
stroke-width="2"
|
|
832
|
+
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"
|
|
833
|
+
/>
|
|
834
|
+
</svg>
|
|
835
|
+
<span class="ml-3">Releases</span>
|
|
836
|
+
</a>
|
|
837
|
+
</div>
|
|
838
|
+
|
|
839
|
+
<!-- Documentation -->
|
|
840
|
+
<div class="flow-root">
|
|
841
|
+
<a
|
|
842
|
+
href="https://support.thunderheadeng.com/docs"
|
|
843
|
+
class="-m-3 flex items-start p-3 text-base font-medium text-gray-900 hover:bg-gray-100"
|
|
844
|
+
>
|
|
845
|
+
<svg
|
|
846
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
847
|
+
class="h-6 w-6 flex-shrink-0 text-gray-400"
|
|
848
|
+
fill="none"
|
|
849
|
+
viewBox="0 0 24 24"
|
|
850
|
+
stroke="currentColor"
|
|
851
|
+
>
|
|
852
|
+
<path
|
|
853
|
+
stroke-linecap="round"
|
|
854
|
+
stroke-linejoin="round"
|
|
855
|
+
stroke-width="2"
|
|
856
|
+
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"
|
|
857
|
+
/>
|
|
858
|
+
</svg>
|
|
859
|
+
<span class="ml-3">Documentation</span>
|
|
860
|
+
</a>
|
|
861
|
+
</div>
|
|
862
|
+
|
|
863
|
+
<!-- Get Help-->
|
|
864
|
+
<div class="flow-root">
|
|
865
|
+
<a
|
|
866
|
+
href="https://help.thunderheadeng.com/support/tickets/new"
|
|
867
|
+
class="-m-3 flex items-start p-3 text-base font-medium text-gray-900 hover:bg-gray-100"
|
|
868
|
+
>
|
|
869
|
+
<svg
|
|
870
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
871
|
+
height="24"
|
|
872
|
+
viewBox="0 -960 960 960"
|
|
873
|
+
width="24"
|
|
874
|
+
fill="currentColor"
|
|
875
|
+
class="h-6 w-6 flex-shrink-0 text-gray-400"
|
|
876
|
+
>
|
|
877
|
+
<path
|
|
878
|
+
d="M440-120v-80h320v-284q0-117-81.5-198.5T480-764q-117 0-198.5 81.5T200-484v244h-40q-33 0-56.5-23.5T80-320v-80q0-21 10.5-39.5T120-469l3-53q8-68 39.5-126t79-101q47.5-43 109-67T480-840q68 0 129 24t109 66.5Q766-707 797-649t40 126l3 52q19 9 29.5 27t10.5 38v92q0 20-10.5 38T840-249v49q0 33-23.5 56.5T760-120H440Zm-80-280q-17 0-28.5-11.5T320-440q0-17 11.5-28.5T360-480q17 0 28.5 11.5T400-440q0 17-11.5 28.5T360-400Zm240 0q-17 0-28.5-11.5T560-440q0-17 11.5-28.5T600-480q17 0 28.5 11.5T640-440q0 17-11.5 28.5T600-400Zm-359-62q-7-106 64-182t177-76q89 0 156.5 56.5T720-519q-91-1-167.5-49T435-698q-16 80-67.5 142.5T241-462Z"
|
|
879
|
+
/>
|
|
880
|
+
</svg>
|
|
881
|
+
<span class="ml-3">Get Help</span>
|
|
882
|
+
</a>
|
|
883
|
+
</div>
|
|
884
|
+
</div>
|
|
885
|
+
</button>
|
|
886
|
+
</div>
|
|
887
|
+
{/if}
|
|
888
|
+
</header>
|