Skip to content

Commit 5a0e110

Browse files
Fix icon URL
1 parent ee5dfac commit 5a0e110

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/components/Homepage.svelte

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
import { itemStore } from '../stores/itemStore.js'
55
import { get } from 'svelte/store'
66
7+
import iconSvg from '/icon.svg'
78
const dispatch = createEventDispatcher()
89
910
async function handleOpen() {
@@ -35,7 +36,7 @@
3536
<div class="homepage">
3637
<div class="content">
3738
<div class="logo-section">
38-
<img src="/icon.svg" alt="SvelteFlowy" class="logo" />
39+
<img src={iconSvg} alt="SvelteFlowy" class="logo" />
3940
<h1 class="title">SvelteFlowy</h1>
4041
</div>
4142

0 commit comments

Comments
 (0)