tecitheme 0.0.10 → 0.0.11
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/components/CTA.svelte
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
<!-- This example requires Tailwind CSS v2.0+ -->
|
|
15
15
|
<section class="bg-white mb-12">
|
|
16
16
|
<div class="mx-auto text-center px-4 sm:px-6 lg:px-8">
|
|
17
|
-
<h2 class="text-3xl font-
|
|
17
|
+
<h2 class="text-3xl font-bold tracking-tight text-gray-900 sm:text-4xl">
|
|
18
18
|
<span class="block">{data.title}</span>
|
|
19
19
|
</h2>
|
|
20
20
|
<div class="mt-8 flex justify-center">
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
<div class="relative mx-auto w-full divide-y-2 divide-gray-200">
|
|
7
7
|
<div>
|
|
8
|
-
<h2 class="text-3xl font-
|
|
8
|
+
<h2 class="text-3xl font-bold tracking-tight text-gray-900 sm:text-4xl">
|
|
9
9
|
{data.title}
|
|
10
10
|
</h2>
|
|
11
11
|
<div class="mt-3 sm:mt-4 lg:grid lg:grid-cols-2 lg:items-center lg:gap-5">
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
{data.toptext}
|
|
16
16
|
</h2>
|
|
17
17
|
{/if}
|
|
18
|
-
<p class="mt-1 text-4xl font-
|
|
18
|
+
<p class="mt-1 text-4xl font-bold text-gray-900 sm:text-5xl sm:tracking-tight lg:text-6xl">
|
|
19
19
|
{data.title}
|
|
20
20
|
</p>
|
|
21
21
|
{#if data.subtitle}
|