Started progress on svelte OpenBirch
This commit is contained in:
parent
7c5e96b921
commit
4eff399404
Binary file not shown.
After Width: | Height: | Size: 64 KiB |
Binary file not shown.
After Width: | Height: | Size: 78 KiB |
|
@ -1,4 +1,4 @@
|
||||||
<script>
|
<script lang="ts">
|
||||||
import Counter from './Counter.svelte';
|
import Counter from './Counter.svelte';
|
||||||
import welcome from '$lib/images/svelte-welcome.webp';
|
import welcome from '$lib/images/svelte-welcome.webp';
|
||||||
import welcome_fallback from '$lib/images/svelte-welcome.png';
|
import welcome_fallback from '$lib/images/svelte-welcome.png';
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
<script>
|
<script>
|
||||||
import { page } from '$app/stores';
|
import { page } from '$app/stores';
|
||||||
import logo from '$lib/images/svelte-logo.svg';
|
import goku from '$lib/images/goku.webp';
|
||||||
import github from '$lib/images/github.svg';
|
|
||||||
import "tailwindcss/tailwind.css";
|
import "tailwindcss/tailwind.css";
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
@ -10,7 +9,7 @@
|
||||||
<div class="w-10 rounded-full">
|
<div class="w-10 rounded-full">
|
||||||
<img
|
<img
|
||||||
alt="Tailwind CSS Navbar component"
|
alt="Tailwind CSS Navbar component"
|
||||||
src="https://img.daisyui.com/images/stock/photo-1534528741775-53994a69daeb.jpg" />
|
src={goku} />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="flex-1"/>
|
<div class="flex-1"/>
|
||||||
|
|
Loading…
Reference in New Issue