2026-01-30 17:46:21 +03:00
|
|
|
<!--
|
|
|
|
|
Component: Page
|
|
|
|
|
Description: The main page component of the application.
|
|
|
|
|
-->
|
2026-01-12 08:51:36 +03:00
|
|
|
<script lang="ts">
|
2026-03-02 22:21:19 +03:00
|
|
|
import { ComparisonView } from '$widgets/ComparisonView';
|
2026-02-10 13:09:09 +03:00
|
|
|
import { cubicIn } from 'svelte/easing';
|
|
|
|
|
import { fade } from 'svelte/transition';
|
2025-12-30 18:57:58 +03:00
|
|
|
</script>
|
|
|
|
|
|
2026-02-10 13:09:09 +03:00
|
|
|
<div
|
2026-03-02 22:21:19 +03:00
|
|
|
class="h-full flex flex-col gap-3 sm:gap-4"
|
2026-02-10 13:09:09 +03:00
|
|
|
in:fade={{ duration: 500, delay: 150, easing: cubicIn }}
|
|
|
|
|
>
|
2026-04-19 19:15:03 +03:00
|
|
|
<main class="w-auto">
|
2026-03-02 22:21:19 +03:00
|
|
|
<ComparisonView />
|
2026-04-19 19:15:03 +03:00
|
|
|
</main>
|
2026-01-18 15:01:19 +03:00
|
|
|
</div>
|