We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee5dfac commit 5a0e110Copy full SHA for 5a0e110
src/components/Homepage.svelte
@@ -4,6 +4,7 @@
4
import { itemStore } from '../stores/itemStore.js'
5
import { get } from 'svelte/store'
6
7
+ import iconSvg from '/icon.svg'
8
const dispatch = createEventDispatcher()
9
10
async function handleOpen() {
@@ -35,7 +36,7 @@
35
36
<div class="homepage">
37
<div class="content">
38
<div class="logo-section">
- <img src="/icon.svg" alt="SvelteFlowy" class="logo" />
39
+ <img src={iconSvg} alt="SvelteFlowy" class="logo" />
40
<h1 class="title">SvelteFlowy</h1>
41
</div>
42
0 commit comments