Create homepage

Photo-card layout, button, typography
This commit is contained in:
2021-09-27 23:23:16 +02:00
parent 9b50723183
commit bd89e28e15
10 changed files with 269 additions and 9 deletions

View File

@@ -0,0 +1,10 @@
<script lang="ts">
import Image from '$components/atoms/Image.svelte'
export let id: string
export let alt: string
</script>
<div class="photo-card">
<Image id={id} alt={alt} width={864} height={576} />
</div>