Kolejne zmiany,

This commit is contained in:
dm
2025-12-15 11:28:53 +01:00
parent c0b9d5a584
commit 6b5a913666
48 changed files with 1630 additions and 868 deletions

View File

@@ -15,18 +15,19 @@ const html = marked.parse(doc.content);
---
<DefaultLayout title={doc.title}>
<section class="max-w-4xl mx-auto px-4 py-10">
<a href="/dokumenty" class="text-sm opacity-70 hover:opacity-100">
← Wróć do dokumentów
</a>
<section class="f-section">
<div class="f-section-grid-single">
<a href="/dokumenty" class="text-sm opacity-70 hover:opacity-100">
← Wróć do dokumentów
</a>
<h1 class="mt-4 text-4xl md:text-5xl font-bold text-[--f-header]">
{doc.title}
</h1>
<h1 class="f-section-title">
{doc.title}
</h1>
<article class="mt-8 prose max-w-none">
<div class="fuz-markdown max-w-none">
<Markdown text={html} />
<!-- <div set:html={html} /> -->
</article>
</div>
</div>
</section>
</DefaultLayout>