Skip to content

Commit 96d429d

Browse files
committed
chore: update homepage
1 parent 2b2e6a2 commit 96d429d

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/routes/+page.svelte

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
});
2828
2929
const gridMenu = [
30-
["Bahasa Pemograman", "languages"],
30+
["Bahasa", "languages"],
3131
["Alat-alat", "tools"],
3232
["Kerangka Kerja & Pustaka", "frameworkLibrary"],
3333
];
@@ -85,12 +85,12 @@
8585
</div>
8686
</div>
8787
<div>
88-
{#each gridMenu as menu}
88+
{#each gridMenu as menu (menu)}
8989
<section>
9090
<h2>{menu[0]}</h2>
9191
<div class="grid gap-2 min-[375px]:grid-cols-2 sm:grid-cols-3 md:grid-cols-4">
9292
{#each data[menu[1]] as { name, icon, color } (name)}
93-
<!-- svelte-ignore a11y_no_static_element_interactions -- how to fix it? -->
93+
<!-- svelte-ignore a11y_no_static_element_interactions -->
9494
<div
9595
class="group flex cursor-pointer gap-2 rounded-xl border-2 border-neutral-300 p-4 hover:scale-90"
9696
onmouseenter={applyStyle(`color: ${color}; border-color: ${color};`)}

0 commit comments

Comments
 (0)