Szablon witryny, docker i workflow gitea

This commit is contained in:
dm
2025-11-20 21:22:37 +01:00
commit 1e5f2bc38a
30 changed files with 601 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
---
const nav = [
{ href: "/", label: "Strona główna" },
{ href: "/internet", label: "Internet" },
{ href: "/telewizja", label: "Telewizja" },
{ href: "/internet-telewizja", label: "Internet + TV" },
{ href: "/mapa-zasiegu", label: "Mapa zasięgu" },
{ href: "/kontakt", label: "Kontakt" }
];
---
<header class="fuz-header">
<div class="fuz-container flex items-center justify-between py-3">
<a href="/" class="flex items-center gap-2 font-semibold">
<span class="inline-flex h-8 w-8 items-center justify-center rounded-full bg-sky-500 text-white text-sm font-bold">
F
</span>
<span>FUZ</span>
</a>
<nav class="hidden md:flex items-center gap-6 text-sm">
{nav.map((item) => (
<a href={item.href} class="hover:text-sky-600 dark:hover:text-sky-400">
{item.label}
</a>
))}
</nav>
</div>
</header>