import React from “react”;
import {
CloudSun,
Wind,
Droplets,
Gauge,
Mountain,
Sunrise,
Snowflake,
MapPin,
Camera,
Thermometer,
AlertTriangle,
Navigation,
Eye,
} from “lucide-react”;
export default function MeteoSirinoHomepage() {
const webcamUrl = “https://stazionemeteomontepapa.altervista.org/laudemio19/webcam.php”;
return (
);
}
function Header() {
return (
Meteo montagna Basilicata
);
}
function WebcamPanel({ webcamUrl }) {
return (
);
}
function LiveStatus() {
return (
);
}
function WeatherDataBar() {
return (
} label=”Temperatura” value=”8.6°C” />
} label=”Umidità” value=”74%” />
} label=”Vento” value=”12 km/h” />
} label=”Pressione” value=”1014 hPa” />
} label=”Quota neve” value=”1800 m” />
);
}
function WeatherBox({ icon, label, value }) {
return (
);
}
function ForecastCard() {
return (
}>
);
}
function TrekkingCard() {
return (
}>
}>
);
}
function AlertCard() {
return (
);
}
function Card({ title, icon, children }) {
return (
);
}
function ForecastRow({ hour, weather, temp }) {
return (
Meteo Sirino
Webcam live, dati meteo, vento in quota e aggiornamenti per Monte Sirino, Lago Laudemio e area montana lucana.
A cura di
Antonio Cirigliano
Meteo Sirino • Lucania Trekking
LIVE WEBCAM
Monte Sirino
Lago Laudemio in tempo reale
Immagine webcam integrata direttamente dal link ufficiale.
{icon}
{label}
{value}
Condizioni favorevoli per camminate brevi. Attenzione al vento sulle creste e all’escursione termica serale.
Indice trekking: favorevole
);
}
function PlacesCard() {
return (
- • Lago Laudemio
- • Monte Papa
- • Monte Sirino
- • Santuario Madonna del Sirino
- • Comprensorio montano lucano
Alba e tramonto
Alba
05:42
Tramonto
20:18
Avviso Meteo Sirino
Aggiornamenti live su webcam, vento in quota, temperatura percepita e consigli per chi frequenta la montagna.
{icon}
{children}
{title}
{hour}
{weather}
{temp}
);
}
function Footer() {
return (
);
}
