Create homepage
Photo-card layout, button, typography
This commit is contained in:
10
src/components/molecules/PhotoCard.svelte
Normal file
10
src/components/molecules/PhotoCard.svelte
Normal 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>
|
||||
Reference in New Issue
Block a user