--- import WeatherCard from '@components/cards/WeatherCard.astro'; import { getFiveDayForecast } from '@support/weather'; const { latitude = "44.95", longitude = "-93.09", cityName = "St. Paul, Minnesota", timezone = "America/Chicago" } = Astro.props; const { forecastDays, error } = await getFiveDayForecast(latitude, longitude, timezone); ---

Weather in my Area

Five day forecast for {cityName}
{error ? (
Sorry, {error.toLowerCase}
) : (
{forecastDays.map((forecastDay, index) => (
= 4 ? "hidden min-[1100px]:block" : ""}>
))}
)}