Files
frontend-svelte/src/routes/Page.svelte
T

19 lines
455 B
Svelte
Raw Normal View History

<!--
Component: Page
Description: The main page component of the application.
-->
<script lang="ts">
import { ComparisonView } from '$widgets/ComparisonView';
import { cubicIn } from 'svelte/easing';
import { fade } from 'svelte/transition';
</script>
<div
class="h-full flex flex-col gap-3 sm:gap-4"
in:fade={{ duration: 500, delay: 150, easing: cubicIn }}
>
<section class="w-auto">
<ComparisonView />
</section>
2026-01-18 15:01:19 +03:00
</div>