search pages with filters in process

This commit is contained in:
2025-04-23 17:26:28 +05:00
parent dfab85a424
commit f0a06a9053
29 changed files with 602 additions and 39 deletions
+3 -3
View File
@@ -18,20 +18,20 @@ export default function WeatherWidget({
const formattedTime = `${hours}:${minutes}`;
return (
<div className="absolute left-[1.667vw] top-[1.667vw] rounded-2xl space-y-4 min-w-50 w-[8.333vw] p-4 font-medium text-white bg-black/40 pointer-events-none max-[1440px]:hidden backdrop-blur-2xl">
<div className="absolute left-[2.222vw] top-[2.222vw] rounded-2xl space-y-4 min-w-50 w-[8.333vw] p-4 font-medium text-white bg-black/40 pointer-events-none max-[1440px]:hidden backdrop-blur-2xl">
<div>
<div className="flex justify-between">
<p>{day}</p>
<p>{formattedTime}</p>
</div>
<div className="flex justify-between opacity-60">
<div className="opacity-60 flex justify-between">
<p>
{date.getDate()} {month}
</p>
<p>{dayPart}</p>
</div>
</div>
<hr className="border-white -mx-4" />
<hr className="-mx-4 border-white" />
<p className="text-[32px]">{temperature}°C</p>
</div>
);