{weather.city}
{new Date().toLocaleDateString("de-DE", { weekday: "short", day: "numeric", month: "short" })}
{getWeatherIcon(weather.weatherCode)}
{weather.temperature}°
{getWeatherText(weather.weatherCode)}
{weather.windSpeed} km/h
{weather.humidity}%
{forecast.length > 0 && (
{forecast.map((f) => (
{f.day}
{getWeatherIcon(f.code)}
{f.high}°
{f.low}°
))}
)}
);
}