loom serve bootstrap

This commit is contained in:
EatThePooh 2025-10-06 14:19:00 +07:00
parent 677c22d3a6
commit 30e97f5b8e
7 changed files with 470 additions and 50 deletions

View file

@ -6,42 +6,16 @@
<main>
<div>
<a href="https://vite.dev" target="_blank" rel="noreferrer">
<img src={viteLogo} class="logo" alt="Vite Logo" />
</a>
<a href="https://svelte.dev" target="_blank" rel="noreferrer">
<img src={svelteLogo} class="logo svelte" alt="Svelte Logo" />
<a href="https://grimu-r.voleum.cc" target="_blank" rel="noreferrer">
<h1>Grimu-R Loom</h1>
</a>
</div>
<h1>Vite + Svelte</h1>
<div class="card">
<Counter />
</div>
<p>
Check out <a href="https://github.com/sveltejs/kit#readme" target="_blank" rel="noreferrer">SvelteKit</a>, the official Svelte app framework powered by Vite!
</p>
<p class="read-the-docs">
Click on the Vite and Svelte logos to learn more
</p>
</main>
<style>
.logo {
height: 6em;
padding: 1.5em;
will-change: filter;
transition: filter 300ms;
}
.logo:hover {
filter: drop-shadow(0 0 2em #646cffaa);
}
.logo.svelte:hover {
filter: drop-shadow(0 0 2em #ff3e00aa);
}
.read-the-docs {
color: #888;
}
</style>

View file

@ -6,5 +6,6 @@
</script>
<button onclick={increment}>
count is {count}
Count is {count}
</button>