- Replaced @TIER: TRIVIAL with @COMPLEXITY: 1 - Replaced @TIER: STANDARD with @COMPLEXITY: 3 - Replaced @TIER: CRITICAL with @COMPLEXITY: 5 - Manually elevated specific critical/complex components to levels 2 and 4 - Ignored legacy, specs, and node_modules directories - Updated generated semantic map
12 lines
355 B
Svelte
12 lines
355 B
Svelte
<!-- [DEF:Footer:Component] -->
|
|
<!--
|
|
@COMPLEXITY: 1
|
|
@SEMANTICS: footer, layout, copyright
|
|
@PURPOSE: Displays the application footer with copyright information.
|
|
@LAYER: UI
|
|
-->
|
|
<footer class="bg-white border-t p-4 mt-8 text-center text-gray-500 text-sm">
|
|
© 2025 Superset Tools. All rights reserved.
|
|
</footer>
|
|
<!-- [/DEF:Footer:Component] -->
|