Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion apps/web/src/components/Hero.astro
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,8 @@ const ctaSubtext = `${m.days_free_trial({}, { locale: Astro.locals.locale })}. $
<h1 class="font-pj text-4xl leading-tight font-bold tracking-tight sm:text-5xl sm:leading-tight lg:text-6xl lg:leading-tight xl:text-7xl">
{m.instant_updates_for_your({}, { locale: Astro.locals.locale })}
<br />
<span class="text-azure-500">&lt;CapacitorJS app/&gt;</span>
<span class="hero-capacitor-target text-azure-500" aria-hidden="true"></span>
<span class="sr-only">CapacitorJS app</span>
</h1>
<p class="font-inter mx-auto mt-6 max-w-3xl text-lg leading-8 text-gray-400 sm:text-xl">
{m.hero_subtitle_part1({}, { locale: Astro.locals.locale })}
Expand Down Expand Up @@ -356,3 +357,9 @@ const ctaSubtext = `${m.days_free_trial({}, { locale: Astro.locals.locale })}. $
</div>
</div>
</section>

<style>
.hero-capacitor-target::before {
content: '<CapacitorJS app/>';
}
</style>
Loading