chore: add documentation for svelte components

This commit is contained in:
Ilia Mashkov
2026-01-02 21:15:40 +03:00
parent bf36f8e642
commit 1bb699ea2d
6 changed files with 85 additions and 12 deletions

View File

@@ -1,4 +1,14 @@
<script lang="ts">
/**
* App Component
*
* Application entry point component. Wraps the main page route within the shared
* layout shell. This is the root component mounted by the application.
*
* Structure:
* - Layout provides sidebar, header/footer, and page container
* - Page renders the current route content
*/
import Page from '$routes/Page.svelte';
import Layout from './ui/Layout.svelte';
</script>