From a2a0335b7d33f436ac9a6c19ea9065f545f1fe3e Mon Sep 17 00:00:00 2001 From: muken Date: Mon, 29 Jun 2026 20:21:28 -0500 Subject: [PATCH] moved icos --- src/app/user/page.tsx | 2 +- src/components/LanguageSwitcher.tsx | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/user/page.tsx b/src/app/user/page.tsx index cab07c1..e0c57ca 100644 --- a/src/app/user/page.tsx +++ b/src/app/user/page.tsx @@ -135,7 +135,7 @@ export default function UserPage() { {/* Weather Widget - Always visible below navbar */} {data.weather && ( -
+
{data.weather.current.weathercode <= 1 ? '☀️' : data.weather.current.weathercode === 2 ? '⛅' : data.weather.current.weathercode === 3 ? '☁️' : data.weather.current.weathercode >= 51 && data.weather.current.weathercode <= 55 ? '🌧️' : data.weather.current.weathercode >= 61 ? '🌧️' : '☀️'} diff --git a/src/components/LanguageSwitcher.tsx b/src/components/LanguageSwitcher.tsx index 621c4e2..65c3f74 100644 --- a/src/components/LanguageSwitcher.tsx +++ b/src/components/LanguageSwitcher.tsx @@ -37,8 +37,8 @@ export default function LanguageSwitcher() { onClick={toggleLanguage} style={{ position: 'fixed', - top: '3.5rem', - right: '1rem', + top: '0.5rem', + right: '7rem', zIndex: 1000, background: 'rgba(255, 255, 255, 0.9)', border: '1px solid #ddd',