tecitheme 0.3.1 → 0.3.2
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/README.md +1 -1
- package/components/PricingTable.svelte +25 -17
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -63,22 +63,30 @@
|
|
|
63
63
|
{/if}
|
|
64
64
|
{/each}
|
|
65
65
|
</div>
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
">
|
|
78
|
-
{cta.text}
|
|
79
|
-
<span class="hidden sm:inline {(cta.color == "white" ? "text-gray-600" : "text-white")}" aria-hidden="true">→</span>
|
|
80
|
-
</a>
|
|
81
|
-
{/each}
|
|
82
|
-
</div>
|
|
66
|
+
{#if data.footer}
|
|
67
|
+
<div class="mt-8">
|
|
68
|
+
{#if data.footer.heading}
|
|
69
|
+
<div class="text-xl mb-4 text-gray-500 sm:text-center">
|
|
70
|
+
<p>{data.footer.heading}</p>
|
|
71
|
+
</div>
|
|
72
|
+
{/if}
|
|
73
|
+
{#if data.footer.text}
|
|
74
|
+
<div class="text-md mb-4 max-w-4xl mx-auto text-gray-500 sm:text-center">
|
|
75
|
+
<p>{@html data.footer.text}</p>
|
|
76
|
+
</div>
|
|
83
77
|
{/if}
|
|
78
|
+
{#if data.footer.ctas}
|
|
79
|
+
<div class="flex gap-x-8 py-2 sm:justify-center">
|
|
80
|
+
{#each data.footer.ctas as cta}
|
|
81
|
+
<a href={cta.url} class="inline-block whitespace-nowrap px-4 py-1.5 text-base font-semibold leading-7 shadow-sm ring-1 ring-gray-900/10 hover:ring-gray-900/20 hover:bg-teci-blue-dark
|
|
82
|
+
{(cta.color == "pyrosim" ? "bg-pyrosim text-white" : (cta.color == "pathfinder" ? "bg-pathfinder text-white" : (cta.color == "white" ? "bg-white text-gray-600 hover:text-white" : "bg-teci-blue-dark text-white")))}
|
|
83
|
+
">
|
|
84
|
+
{cta.text}
|
|
85
|
+
<span class="hidden sm:inline {(cta.color == "white" ? "text-gray-600" : "text-white")}" aria-hidden="true">→</span>
|
|
86
|
+
</a>
|
|
87
|
+
{/each}
|
|
88
|
+
</div>
|
|
89
|
+
{/if}
|
|
90
|
+
</div>
|
|
91
|
+
{/if}
|
|
84
92
|
</section>
|