Poprawki w url na serwerze dla api

This commit is contained in:
dm
2025-11-24 08:59:04 +01:00
parent 28d3f68b1b
commit df4ba952f8
3 changed files with 7 additions and 7 deletions

View File

@@ -5,8 +5,8 @@ const { cities = [] } = Astro.props;
const sorted = cities.sort((a: string, b: any) => a.localeCompare(b, "pl"));
---
<div class="fuz-">
<h4 class="fuz-cities-title">Miejscowości w zasięgu sieci światłowodowej lub radiowej</h4>
<div class="fuz-cities-box">
<h4 class="fuz-cities-title">Miejscowości w zasięgu sieci światłowodowej i radiowej</h4>
<div class="fuz-cities-grid">
{sorted.map((city: unknown) => (
@@ -17,13 +17,12 @@ const sorted = cities.sort((a: string, b: any) => a.localeCompare(b, "pl"));
<style>
.fuz-cities-box {
margin-top: 20px;
background: var(--fuz-bg);
color: var(--fuz-text);
border: 1px solid var(--fuz-border, #ddd);
padding: 16px;
border-radius: 12px;
box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.fuz-cities-title {