tecitheme 0.7.4 → 0.7.6

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.
@@ -11,9 +11,9 @@
11
11
  <section {id} class="bg-gray-50">
12
12
  <div class="mx-auto max-w-7xl p-6 lg:p-8">
13
13
  <div class="mx-auto max-w-4xl text-center">
14
- <h2 class="text-3xl font-bold tracking-tight text-gray-900 sm:text-4xl">{data.heading}</h2>
14
+ <h2 class="text-3xl font-bold tracking-tight text-gray-900 sm:text-4xl">{@html data.heading}</h2>
15
15
  {#if data.subheading}
16
- <p class="mt-3 text-xl text-gray-500 sm:mt-4">{data.subheading}</p>
16
+ <p class="mt-3 text-xl text-gray-500 sm:mt-4">{@html data.subheading}</p>
17
17
  {/if}
18
18
  </div>
19
19
  </div>
@@ -146,7 +146,7 @@ import Icon from './Icon.svelte'
146
146
  </div>
147
147
  {#if quote.url}
148
148
  <div class="sm:pl-4 pb-2 lg:pb-0 pt-4">
149
- <Button text="Read More" url={quote.url} justify="right" fullwidth=true color="ventus" />
149
+ <Button text={quote.link_text || "Read More"} url={quote.url} justify="right" fullwidth=true color={data.color} />
150
150
  </div>
151
151
  {/if}
152
152
  </div>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tecitheme",
3
- "version": "0.7.4",
3
+ "version": "0.7.6",
4
4
  "license": "MIT",
5
5
  "scripts": {
6
6
  "dev": "vite dev",