diff --git a/app/page.tsx b/app/page.tsx index 5ab0ecb..67ffc0a 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -334,7 +334,7 @@ function HomeTab({ weather, sensors }: { weather: WeatherData | null; sensors: S {weather.forecast && weather.forecast.length > 0 && (
- {weather.forecast.slice(0, 3).map(day => { + {weather.forecast.map(day => { const d = new Date(day.date) return (
@@ -549,6 +549,19 @@ function SettingsTab({ city, onCityChange, onLogout, theme, onThemeChange }: { c )}
+ {/* Lock screen */} + + {/* Logout */}