DoneAuthContext

This commit is contained in:
fullofempt
2025-12-13 18:30:48 +05:00
parent 48d4db0e77
commit b1cab4a2ab
7 changed files with 560 additions and 50 deletions

View File

@@ -109,7 +109,7 @@ const MainVolunteerPage = () => {
<div className="w-8 h-8 rounded-full border border-white flex items-center justify-center">
<FaUser className="text-white text-sm" />
</div>
<p className="font-montserrat font-extrabold text-[11px] leading-[11px] text-white">
<p className="font-montserrat font-extrabold text-[20px] leading-[11px] text-white">
Александр
</p>
</div>
@@ -121,7 +121,7 @@ const MainVolunteerPage = () => {
</button>
</header>
<h1 className="font-montserrat font-extrabold text-[16px] leading-[20px] text-white mb-2">
<h1 className="font-montserrat font-extrabold text-[20px] leading-[20px] text-white mb-2">
Кому нужна помощь
</h1>
@@ -161,14 +161,14 @@ const MainVolunteerPage = () => {
className="bg-white rounded-xl px-3 py-2 flex flex-col gap-1"
onClick={() => openPopup(req)}
>
<p className="font-montserrat font-semibold text-[12px] leading-[14px] text-black">
<p className="font-montserrat font-semibold text-[15px] leading-[14px] text-black">
{req.title}
</p>
<p className="font-montserrat text-[10px] text-black">
<p className="font-montserrat text-[15px] text-black">
{req.address}
</p>
{req.distance && (
<p className="font-montserrat text-[9px] text-gray-500">
<p className="font-montserrat text-[12px] text-gray-500">
Расстояние: {req.distance}
</p>
)}