More Weather Icons

This commit is contained in:
SDCore 2026-07-04 18:18:31 -05:00
parent ec63142ca3
commit 217a21b092
3 changed files with 6 additions and 2 deletions

View file

@ -7,7 +7,7 @@ export const metadata = {
export default function RootLayout({ children }) {
return (
<html lang="en">
<html lang="en" suppressHydrationWarning>
<body>{children}</body>
</html>
);

View file

@ -161,7 +161,7 @@ export default function WeatherPage() {
src={weatherIcon}
width={175}
height={175}
unoptimized
loading="eager"
/>
</span>
</span>

View file

@ -10,8 +10,12 @@ export function getWeatherIcon(icon) {
return `partlycloudynight`;
case "partly-cloudy-day":
return `partlycloudyday`;
case "mostly-cloudy-day":
return `mostlycloudyday`;
case "breezy":
return `windy`;
case "cloudy":
return `cloudy`;
case "drizzle":
return `drizzle`;
case "light-rain":