feat: add dynamic weather hero effects

This commit is contained in:
zv
2026-06-01 19:15:12 +02:00
parent 0632c67beb
commit 6346a3cda9
5 changed files with 88 additions and 11 deletions

View File

@@ -1,9 +1,9 @@
import { CloudRain, CloudSun, MoonStar, Snowflake, Sun, Wind } from "lucide-react";
import { CloudRain, CloudSun, MoonStar, Snowflake, ThermometerSun, Wind } from "lucide-react";
import type { WeatherMood } from "@/types/imgw";
export function WeatherIcon({ mood, className = "" }: { mood: WeatherMood; className?: string }) {
const Icon = {
clear: Sun,
warm: ThermometerSun,
rain: CloudRain,
wind: Wind,
cold: Snowflake,