Add CTA section to homepage

with box ctas
This commit is contained in:
2021-09-30 18:48:50 +02:00
parent 0cde65c0b1
commit 4df4b0dfa0
5 changed files with 46 additions and 2 deletions

View File

@@ -7,6 +7,7 @@
import PhotoCard from '$components/molecules/PhotoCard.svelte'
import Newsletter from '$components/organisms/Newsletter.svelte'
import Shop from '$components/organisms/Shop.svelte'
import BoxCTA from '$components/atoms/BoxCTA.svelte'
export let photos: any
@@ -36,7 +37,15 @@
</div>
</section>
<p>Discover {count.photos} homes from {count.locations} cities of {count.countries} countries</p>
<div class="homepage__ctas">
<p>Discover <strong>{count.photos} homes<br /></strong> from <strong>{count.locations} cities</strong> of <strong>{count.countries} countries</strong></p>
<div class="cards">
<BoxCTA text="explore the globe" image="/images/icons/explore.svg" url="#" />
<BoxCTA text="discover the locations" image="/images/icons/pin.svg" url="#" />
<BoxCTA text="shop the prints" image="/images/icons/pin.svg" url="#" />
</div>
</div>
<Locations
locations={location}