fix: update project details in projects.html and projects.json with new client names, descriptions, and layout adjustments for improved clarity

This commit is contained in:
George Birikorang 2025-09-16 11:17:51 -07:00
parent 4a54d42ec9
commit eac98fd99b
2 changed files with 108 additions and 98 deletions

View file

@ -696,46 +696,39 @@
PROJECT DETAILS
</h3>
<div class="space-y-3">
<div class="flex justify-between">
<div class="flex justify-between gap-4">
<span class="text-white/60 text-sm">Client:</span>
<span
id="modalClient"
class="text-white text-sm font-medium"
class="text-white text-sm font-medium text-right max-w-[60%]"
></span>
</div>
<div class="flex justify-between">
<div class="flex justify-between gap-4">
<span class="text-white/60 text-sm">Type of Work:</span>
<span
id="modalTypeOfWork"
class="text-white text-sm font-medium"
class="text-white text-sm font-medium text-right max-w-[60%]"
></span>
</div>
<div class="flex justify-between">
<div class="flex justify-between gap-4">
<span class="text-white/60 text-sm">Size:</span>
<span
id="modalSize"
class="text-white text-sm font-medium"
class="text-white text-sm font-medium text-right max-w-[60%]"
></span>
</div>
<div class="flex justify-between">
<span class="text-white/60 text-sm">Duration:</span>
<span
id="modalDuration"
class="text-white text-sm font-medium"
></span>
</div>
<div class="flex justify-between">
<div class="flex justify-between gap-4">
<span class="text-white/60 text-sm">Completion:</span>
<span
id="modalCompletionDate"
class="text-white text-sm font-medium"
class="text-white text-sm font-medium text-right max-w-[60%]"
></span>
</div>
<div class="flex justify-between">
<div class="flex justify-between gap-4">
<span class="text-white/60 text-sm">Location:</span>
<span
id="modalLocation"
class="text-white text-sm font-medium"
class="text-white text-sm font-medium text-right max-w-[60%]"
></span>
</div>
</div>
@ -1387,7 +1380,6 @@
document.getElementById("modalTypeOfWork").textContent =
project.typeOfWork;
document.getElementById("modalSize").textContent = project.size;
document.getElementById("modalDuration").textContent = project.duration;
document.getElementById("modalCompletionDate").textContent =
project.completionDate;
document.getElementById("modalLocation").textContent = project.location;