+
+
+
Wetter
+
+
+
+ {getWeatherIcon(weather.weatherCode)}
+
+
+
{weather.temperature}°C
+
{getWeatherText(weather.weatherCode)}
+
+
+
+
+ {weather.city}
+
+
+ {weather.windSpeed} km/h
+ {weather.humidity}%
+
+
+ );
+}
diff --git a/client/src/pages/home.tsx b/client/src/pages/home.tsx
index 22d35e6..b3e1cd1 100644
--- a/client/src/pages/home.tsx
+++ b/client/src/pages/home.tsx
@@ -12,6 +12,7 @@ import { PhotoGalleryWidget } from "@/components/photo-gallery";
import { HoroscopeWidget } from "@/components/horoscope-widget";
import { RecipeWidget } from "@/components/recipe-widget";
import { NewsWidget } from "@/components/news-widget";
+import { WeatherWidget } from "@/components/weather-widget";
import { useState, useEffect, useCallback, useRef } from "react";
function useFocalPoints() {
@@ -408,6 +409,16 @@ export default function Home() {