Blog auto listing
Some checks failed
Deploy / deploy (push) Blocked by required conditions
Deploy / build-and-publish (push) Has been cancelled

This commit is contained in:
2024-09-30 01:10:30 +03:00
parent 1d6da125f1
commit 27044c9711
9 changed files with 537 additions and 39 deletions

View File

@@ -0,0 +1,11 @@
<script lang="ts">
export let data;
</script>
<section class="px-2 md:px-8 mb-16 max-w-[1280px] mx-auto">
{#each data.pages as page}
<a href={page.path}>
<h2 class="text-3xl mb-4 md:text-4xl">{page.title}</h2>
</a>
{/each}
</section>