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

@@ -42,7 +42,6 @@ const mobile = findImage("mobile");
const tablet = findImage("tablet");
const desktop = findImage("desktop");
// Generujemy prawdziwe srcsety (a nie pojedynczy URL)
const mobileSet = mobile
? await getImage({ src: mobile, widths: [480, 640], format: "webp" })
: null;
@@ -51,7 +50,6 @@ const tabletSet = tablet
? await getImage({ src: tablet, widths: [768, 1024], format: "webp" })
: null;
// Fallback (największy, eager)
const desktopImg = desktop
? await getImage({ src: desktop, widths: [1280, 1440, 1920], format: "webp" })
: null;

View File

@@ -15,11 +15,11 @@ const footer = yaml.load(
{footer.company.address.line1}<br />
{footer.company.address.line2}
</p>
<a href="/polityka-prywatnosci" title="Polityka prywatności">Polityka prywatności</a>
<a href="/dokumenty/polityka-prywatnosci" title="Polityka prywatności">Polityka prywatności</a>
</div>
<div class="f-footer-col">
<h4>Kontakt</h4>
<h4>{footer.contact.title}</h4>
{
footer.contact.phones.map((phone: string) => (
<p>

View File

@@ -14,17 +14,14 @@ const section = props.section ?? {};
<TvChannelsSearch client:load />
{section.button && (
<div class="f-section-nav">
<a
href={section.button.url}
class="btn btn-primary"
title={section.button.title}
>
{section.button.text}
</a>
</div>
)}
<div class="flex justify-center gap-4 flex-wrap">
<a href="/files/EVIO TV.pdf" download class="btn btn-primary"
>Pobierz listę kanałów (SMART OPTIMUM PLATINUM)
</a>
<a href="/files/JAMBOX TV.pdf" download class="btn btn-primary"
>Pobierz listę kanałów (PODSTAWOWY KORZYSTNY BOGATY)
</a>
</div>
</div>
</div>
</section>