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,243 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Button from './Button.svelte'
|
|
3
|
+
|
|
4
|
+
let d = new Date();
|
|
5
|
+
</script>
|
|
6
|
+
|
|
7
|
+
<footer id="bottom" class="bg-gray-800" aria-labelledby="footerHeading">
|
|
8
|
+
<h2 id="footerHeading" class="sr-only">Footer</h2>
|
|
9
|
+
<div class="mx-auto max-w-7xl py-12 px-4 sm:px-6 lg:py-16 lg:px-8">
|
|
10
|
+
<div class="xl:grid xl:grid-cols-3 xl:gap-8">
|
|
11
|
+
<div class="grid grid-cols-2 gap-8 xl:col-span-2">
|
|
12
|
+
<div class="md:grid md:grid-cols-2 md:gap-8">
|
|
13
|
+
<div>
|
|
14
|
+
<h3
|
|
15
|
+
class="text-sm font-bold uppercase tracking-wider text-gray-300"
|
|
16
|
+
>
|
|
17
|
+
Products
|
|
18
|
+
</h3>
|
|
19
|
+
<ul class="mt-4 space-y-4">
|
|
20
|
+
<li>
|
|
21
|
+
<a
|
|
22
|
+
href="https://www.thunderheadeng.com/pyrosim"
|
|
23
|
+
class="text-base text-gray-100 hover:text-white"
|
|
24
|
+
>
|
|
25
|
+
PyroSim
|
|
26
|
+
</a>
|
|
27
|
+
</li>
|
|
28
|
+
<li>
|
|
29
|
+
<a
|
|
30
|
+
href="https://www.thunderheadeng.com/pathfinder"
|
|
31
|
+
class="text-base text-gray-100 hover:text-white"
|
|
32
|
+
>
|
|
33
|
+
Pathfinder
|
|
34
|
+
</a>
|
|
35
|
+
</li>
|
|
36
|
+
<li>
|
|
37
|
+
<a
|
|
38
|
+
href="https://www.thunderheadeng.com/ventus"
|
|
39
|
+
class="text-base text-gray-100 hover:text-white"
|
|
40
|
+
>
|
|
41
|
+
Ventus
|
|
42
|
+
</a>
|
|
43
|
+
</li>
|
|
44
|
+
<li>
|
|
45
|
+
<a
|
|
46
|
+
href="https://www.thunderheadeng.com/other"
|
|
47
|
+
class="text-base text-gray-100 hover:text-white"
|
|
48
|
+
>
|
|
49
|
+
Other Tools
|
|
50
|
+
</a>
|
|
51
|
+
</li>
|
|
52
|
+
</ul>
|
|
53
|
+
</div>
|
|
54
|
+
<div class="mt-12 md:mt-0">
|
|
55
|
+
<h3
|
|
56
|
+
class="text-sm font-bold uppercase tracking-wider text-gray-300"
|
|
57
|
+
>
|
|
58
|
+
Support
|
|
59
|
+
</h3>
|
|
60
|
+
<ul class="mt-4 space-y-4">
|
|
61
|
+
<li>
|
|
62
|
+
<a
|
|
63
|
+
href="https://support.thunderheadeng.com/docs"
|
|
64
|
+
class="text-base text-gray-100 hover:text-white"
|
|
65
|
+
>
|
|
66
|
+
Documentation
|
|
67
|
+
</a>
|
|
68
|
+
</li>
|
|
69
|
+
<li>
|
|
70
|
+
<a
|
|
71
|
+
href="https://support.thunderheadeng.com/tutorials"
|
|
72
|
+
class="text-base text-gray-100 hover:text-white"
|
|
73
|
+
>
|
|
74
|
+
Tutorials
|
|
75
|
+
</a>
|
|
76
|
+
</li>
|
|
77
|
+
<li>
|
|
78
|
+
<a
|
|
79
|
+
href="https://support.thunderheadeng.com/release-notes"
|
|
80
|
+
class="text-base text-gray-100 hover:text-white"
|
|
81
|
+
>
|
|
82
|
+
Release Notes
|
|
83
|
+
</a>
|
|
84
|
+
</li>
|
|
85
|
+
<li>
|
|
86
|
+
<a
|
|
87
|
+
href="https://help.thunderheadeng.com/support/home"
|
|
88
|
+
class="text-base text-gray-100 hover:text-white"
|
|
89
|
+
>
|
|
90
|
+
Help Portal
|
|
91
|
+
</a>
|
|
92
|
+
</li>
|
|
93
|
+
</ul>
|
|
94
|
+
</div>
|
|
95
|
+
</div>
|
|
96
|
+
<div class="md:grid md:grid-cols-2 md:gap-8">
|
|
97
|
+
<div>
|
|
98
|
+
<h3
|
|
99
|
+
class="text-sm font-bold uppercase tracking-wider text-gray-300"
|
|
100
|
+
>
|
|
101
|
+
Events
|
|
102
|
+
</h3>
|
|
103
|
+
<ul class="mt-4 space-y-4">
|
|
104
|
+
<li>
|
|
105
|
+
<a
|
|
106
|
+
href="https://training.thunderheadeng.com"
|
|
107
|
+
class="text-base text-gray-100 hover:text-white"
|
|
108
|
+
>
|
|
109
|
+
Training
|
|
110
|
+
</a>
|
|
111
|
+
</li>
|
|
112
|
+
<li>
|
|
113
|
+
<a
|
|
114
|
+
href="https://www.femtc.com"
|
|
115
|
+
class="text-base text-gray-100 hover:text-white"
|
|
116
|
+
>
|
|
117
|
+
FEMTC
|
|
118
|
+
</a>
|
|
119
|
+
</li>
|
|
120
|
+
</ul>
|
|
121
|
+
</div>
|
|
122
|
+
<div class="mt-12 md:mt-0">
|
|
123
|
+
<h3
|
|
124
|
+
class="text-sm font-bold uppercase tracking-wider text-gray-300"
|
|
125
|
+
>
|
|
126
|
+
Company
|
|
127
|
+
</h3>
|
|
128
|
+
<ul class="mt-4 space-y-4">
|
|
129
|
+
<li>
|
|
130
|
+
<a
|
|
131
|
+
href="https://www.thunderheadeng.com/about"
|
|
132
|
+
class="text-base text-gray-100 hover:text-white"
|
|
133
|
+
>
|
|
134
|
+
About
|
|
135
|
+
</a>
|
|
136
|
+
</li>
|
|
137
|
+
<li>
|
|
138
|
+
<a
|
|
139
|
+
href="https://www.thunderheadeng.com/news"
|
|
140
|
+
class="text-base text-gray-100 hover:text-white"
|
|
141
|
+
>
|
|
142
|
+
News
|
|
143
|
+
</a>
|
|
144
|
+
</li>
|
|
145
|
+
<li>
|
|
146
|
+
<a
|
|
147
|
+
href="https://www.thunderheadeng.com/job-openings"
|
|
148
|
+
class="text-base text-gray-100 hover:text-white"
|
|
149
|
+
>
|
|
150
|
+
Jobs
|
|
151
|
+
</a>
|
|
152
|
+
</li>
|
|
153
|
+
<li>
|
|
154
|
+
<a
|
|
155
|
+
href="https://www.thunderheadeng.com/partners"
|
|
156
|
+
class="text-base text-gray-100 hover:text-white"
|
|
157
|
+
>
|
|
158
|
+
Partners
|
|
159
|
+
</a>
|
|
160
|
+
</li>
|
|
161
|
+
</ul>
|
|
162
|
+
</div>
|
|
163
|
+
</div>
|
|
164
|
+
</div>
|
|
165
|
+
<div class="mt-8 flex flex-col justify-between space-y-4 md:items-end xl:mt-0">
|
|
166
|
+
<h3 class="text-right text-sm font-bold uppercase tracking-wider text-gray-300">
|
|
167
|
+
Subscribe to Updates
|
|
168
|
+
</h3>
|
|
169
|
+
<p class="xxl:text-lg text-right text-base leading-6 text-gray-300">
|
|
170
|
+
Receive information about new software releases, tutorials and major
|
|
171
|
+
announcements.
|
|
172
|
+
</p>
|
|
173
|
+
<Button
|
|
174
|
+
url="https://www.thunderheadeng.com/subscribe"
|
|
175
|
+
text="Subscribe"
|
|
176
|
+
color="teci"
|
|
177
|
+
justify="right"
|
|
178
|
+
/>
|
|
179
|
+
</div>
|
|
180
|
+
</div>
|
|
181
|
+
<div
|
|
182
|
+
class="mt-8 border-t border-gray-700 pt-8 md:flex md:items-center md:justify-between"
|
|
183
|
+
>
|
|
184
|
+
<div class="flex space-x-6 md:order-3">
|
|
185
|
+
<a href="https://www.linkedin.com/company/thunderheadeng"
|
|
186
|
+
class="text-gray-300 hover:text-gray-300"
|
|
187
|
+
>
|
|
188
|
+
<span class="sr-only">LinkedIn</span>
|
|
189
|
+
<svg
|
|
190
|
+
class="h-6 w-6"
|
|
191
|
+
fill="currentColor"
|
|
192
|
+
viewBox="0 0 24 24"
|
|
193
|
+
aria-hidden="true"
|
|
194
|
+
>
|
|
195
|
+
<path
|
|
196
|
+
fill-rule="evenodd"
|
|
197
|
+
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"
|
|
198
|
+
/>
|
|
199
|
+
</svg>
|
|
200
|
+
</a>
|
|
201
|
+
|
|
202
|
+
<a
|
|
203
|
+
href="https://www.facebook.com/thunderheadeng"
|
|
204
|
+
class="text-gray-300 hover:text-gray-300"
|
|
205
|
+
>
|
|
206
|
+
<span class="sr-only">Facebook</span>
|
|
207
|
+
<svg
|
|
208
|
+
class="h-6 w-6"
|
|
209
|
+
fill="currentColor"
|
|
210
|
+
viewBox="0 0 24 24"
|
|
211
|
+
aria-hidden="true"
|
|
212
|
+
>
|
|
213
|
+
<path
|
|
214
|
+
fill-rule="evenodd"
|
|
215
|
+
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"
|
|
216
|
+
clip-rule="evenodd"
|
|
217
|
+
/>
|
|
218
|
+
</svg>
|
|
219
|
+
</a>
|
|
220
|
+
|
|
221
|
+
<a
|
|
222
|
+
href="https://twitter.com/thunderheadeng"
|
|
223
|
+
class="text-gray-300 hover:text-gray-300"
|
|
224
|
+
>
|
|
225
|
+
<span class="sr-only">Twitter</span>
|
|
226
|
+
<svg
|
|
227
|
+
class="h-6 w-6"
|
|
228
|
+
fill="currentColor"
|
|
229
|
+
viewBox="0 0 24 24"
|
|
230
|
+
aria-hidden="true"
|
|
231
|
+
>
|
|
232
|
+
<path
|
|
233
|
+
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"
|
|
234
|
+
/>
|
|
235
|
+
</svg>
|
|
236
|
+
</a>
|
|
237
|
+
</div>
|
|
238
|
+
<p class="mt-8 text-sm text-gray-300 md:order-1 md:mt-0">
|
|
239
|
+
© 1998 - {d.getFullYear()} Thunderhead Engineering, All rights reserved.
|
|
240
|
+
</p>
|
|
241
|
+
</div>
|
|
242
|
+
</div>
|
|
243
|
+
</footer>
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/** @typedef {typeof __propDef.props} FooterProps */
|
|
2
|
+
/** @typedef {typeof __propDef.events} FooterEvents */
|
|
3
|
+
/** @typedef {typeof __propDef.slots} FooterSlots */
|
|
4
|
+
export default class Footer extends SvelteComponent<{
|
|
5
|
+
[x: string]: never;
|
|
6
|
+
}, {
|
|
7
|
+
[evt: string]: CustomEvent<any>;
|
|
8
|
+
}, {}> {
|
|
9
|
+
}
|
|
10
|
+
export type FooterProps = typeof __propDef.props;
|
|
11
|
+
export type FooterEvents = typeof __propDef.events;
|
|
12
|
+
export type FooterSlots = typeof __propDef.slots;
|
|
13
|
+
import { SvelteComponent } from "svelte";
|
|
14
|
+
declare const __propDef: {
|
|
15
|
+
props: {
|
|
16
|
+
[x: string]: never;
|
|
17
|
+
};
|
|
18
|
+
events: {
|
|
19
|
+
[evt: string]: CustomEvent<any>;
|
|
20
|
+
};
|
|
21
|
+
slots: {};
|
|
22
|
+
};
|
|
23
|
+
export {};
|