This commit is contained in:
2026-05-19 23:36:58 +12:00
parent 5172588488
commit a7f8a619b1
68 changed files with 4486 additions and 1430 deletions
+10 -1
View File
@@ -10,6 +10,7 @@
mobileOrder: number;
};
export let variant: 'pricing' | 'service' = 'service';
export let hideCtaOnMobile = false;
$: featured = plan.isPopular;
const ctaLabel = 'Book a Meet & Greet';
@@ -48,7 +49,11 @@
{/each}
</ul>
<a class="btn btn-yellow plan-card__cta" href="#newlead">
<a
class="btn btn-yellow plan-card__cta"
class:plan-card__cta--mobile-hidden={hideCtaOnMobile}
href="#newlead"
>
{ctaLabel}
<Icon name="fas fa-arrow-right" />
</a>
@@ -380,5 +385,9 @@
width: 100%;
min-width: 0;
}
.plan-card__cta--mobile-hidden {
display: none;
}
}
</style>