fix tax log

This commit is contained in:
2026-02-19 16:05:59 +03:00
parent 197647d97a
commit b40649b9ed
36 changed files with 4414 additions and 40 deletions

View File

@@ -0,0 +1,27 @@
<!-- [DEF:PageHeader:Component] -->
<!--
@TIER: TRIVIAL
@SEMANTICS: page-header, layout-atom
@PURPOSE: Standardized page header with title and action area.
@LAYER: Atom
-->
<script lang="ts">
// [SECTION: PROPS]
export let title: string = "";
// [/SECTION: PROPS]
</script>
<!-- [SECTION: TEMPLATE] -->
<header class="flex items-center justify-between mb-8">
<div class="space-y-1">
<h1 class="text-3xl font-bold tracking-tight text-gray-900">{title}</h1>
<slot name="subtitle" />
</div>
<div class="flex items-center gap-4">
<slot name="actions" />
</div>
</header>
<!-- [/SECTION: TEMPLATE] -->
<!-- [/DEF:PageHeader:Component] -->