Create Shop component and add to homepage

This commit is contained in:
2021-09-29 23:38:34 +02:00
parent 0ba0ab1f60
commit 3ec6dbda16
10 changed files with 151 additions and 25 deletions

View File

@@ -6,6 +6,7 @@
import Metas from '$components/Metas.svelte'
import PhotoCard from '$components/molecules/PhotoCard.svelte'
import Newsletter from '$components/organisms/Newsletter.svelte'
import Shop from '$components/organisms/Shop.svelte'
export let photos: any
@@ -35,12 +36,20 @@
</div>
</section>
<!-- <p>Discover {count.photos} homes from {count.locations} cities of {count.countries} countries</p> -->
<p>Discover {count.photos} homes from {count.locations} cities of {count.countries} countries</p>
<Locations
locations={location}
/>
<Newsletter />
<div class="grid-modules">
<div class="container grid">
<div class="wrap">
<Shop />
<Newsletter />
</div>
</div>
</div>
</main>