Make newsletter form a reusable component

This commit is contained in:
2021-10-16 13:24:16 +02:00
parent e9e838ae1a
commit 8b07352431
7 changed files with 197 additions and 132 deletions

View File

@@ -4,6 +4,8 @@
import Metas from '$components/Metas.svelte'
import Image from '$components/atoms/Image.svelte'
import Heading from '$components/molecules/Heading.svelte'
import InteractiveGlobe from '$components/organisms/InteractiveGlobe.svelte';
import EmailForm from '$components/molecules/EmailForm.svelte';
export let issues: any
</script>
@@ -19,6 +21,8 @@
text="If you wish to be pinged when new photos are added to and limited prints become available on our shop, sign up below."
/>
<EmailForm />
<section class="subscribe__issues">
<h2 class="title-small">Past Issues</h2>
<ul>
@@ -38,6 +42,8 @@
{/each}
</ul>
</section>
<InteractiveGlobe type="cropped" />
</main>