feat: remove widgets from page

This commit is contained in:
Ilia Mashkov
2026-04-16 15:58:33 +03:00
parent b12dc6257d
commit 33e589f041

View File

@@ -3,10 +3,7 @@
Description: The main page component of the application. Description: The main page component of the application.
--> -->
<script lang="ts"> <script lang="ts">
import { scrollBreadcrumbsStore } from '$entities/Breadcrumb';
import { ComparisonView } from '$widgets/ComparisonView'; import { ComparisonView } from '$widgets/ComparisonView';
import { FontSearchSection } from '$widgets/FontSearch';
import { SampleListSection } from '$widgets/SampleList';
import { cubicIn } from 'svelte/easing'; import { cubicIn } from 'svelte/easing';
import { fade } from 'svelte/transition'; import { fade } from 'svelte/transition';
</script> </script>
@@ -18,8 +15,4 @@ import { fade } from 'svelte/transition';
<section class="w-auto"> <section class="w-auto">
<ComparisonView /> <ComparisonView />
</section> </section>
<main class="w-full pt-0 pb-10 sm:px-6 sm:pt-16 sm:pb-12 md:px-8 md:pt-32 md:pb-16 lg:px-10 lg:pt-48 lg:pb-20 xl:px-16">
<FontSearchSection />
<SampleListSection index={1} />
</main>
</div> </div>