first commit

This commit is contained in:
brusnitsyn
2026-06-24 17:20:43 +09:00
commit 43499acf1c
165 changed files with 25929 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
<script setup lang="ts">
withDefaults(defineProps<{ opacity?: number }>(), {
opacity: 0.014,
});
</script>
<template>
<div
class="pointer-events-none fixed inset-0 z-[9999] size-full"
:style="{
backgroundImage: 'url(/assets/noise.png)',
opacity,
}"
/>
</template>