11 lines
340 B
Svelte
11 lines
340 B
Svelte
<!-- [DEF:Footer:Component] -->
|
|
<!--
|
|
@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] -->
|