lang changes, new pages, data changes

This commit is contained in:
Henri
2026-02-12 05:27:53 +02:00
parent 1504844f0b
commit 9d13b57d2e
268 changed files with 3310 additions and 1541 deletions

View File

@@ -1,6 +1,7 @@
<script>
export let onClick = () => {};
export let buttonHoverStyle = "";
export let style = "";
let isHovered = false;
</script>
@@ -10,7 +11,7 @@
on:mouseenter={() => (isHovered = true)}
on:mouseleave={() => (isHovered = false)}
class={`btn border-[1.5px] px-5 py-2.5 font-medium cursor-pointer flex items-center gap-2 whitespace-nowrap ${$$restProps.class}`}
style={isHovered && buttonHoverStyle ? buttonHoverStyle : null}
style={isHovered && buttonHoverStyle ? buttonHoverStyle : style}
>
<slot />
</button>