mirror of
https://github.com/Hestia-Homes/assessment-model.git
synced 2026-06-30 12:55:02 +00:00
moving location of timeline
This commit is contained in:
parent
dda2980cac
commit
a754f9a7a3
1 changed files with 7 additions and 36 deletions
|
|
@ -205,14 +205,6 @@ export default function DealPage({
|
|||
</div>
|
||||
</div>
|
||||
|
||||
{/* Timeline */}
|
||||
<div>
|
||||
<p className="text-xs font-bold uppercase tracking-wider text-gray-400 mb-3">
|
||||
Project Timeline
|
||||
</p>
|
||||
<MilestoneTimeline deal={deal} />
|
||||
</div>
|
||||
|
||||
{deal.uprn && (
|
||||
<p className="text-xs text-gray-400 font-mono">UPRN: {deal.uprn}</p>
|
||||
)}
|
||||
|
|
@ -537,34 +529,13 @@ export default function DealPage({
|
|||
</button>
|
||||
</div>
|
||||
|
||||
{/* Links */}
|
||||
{(deal.pashubLink || deal.sharepointLink) && (
|
||||
<div className="bg-white rounded-xl border border-gray-200 shadow-sm p-4 space-y-2">
|
||||
<p className="text-xs font-bold uppercase tracking-wider text-gray-400 mb-2">
|
||||
Links
|
||||
</p>
|
||||
{deal.pashubLink && (
|
||||
<a
|
||||
href={deal.pashubLink}
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
className="flex items-center gap-2 text-sm text-brandblue hover:underline"
|
||||
>
|
||||
PAS Hub
|
||||
</a>
|
||||
)}
|
||||
{deal.sharepointLink && (
|
||||
<a
|
||||
href={deal.sharepointLink}
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
className="flex items-center gap-2 text-sm text-brandblue hover:underline"
|
||||
>
|
||||
SharePoint
|
||||
</a>
|
||||
)}
|
||||
</div>
|
||||
)}
|
||||
{/* Timeline */}
|
||||
<div className="bg-white rounded-xl border border-gray-200 shadow-sm p-4">
|
||||
<p className="text-xs font-bold uppercase tracking-wider text-gray-400 mb-3">
|
||||
Project Timeline
|
||||
</p>
|
||||
<MilestoneTimeline deal={deal} />
|
||||
</div>
|
||||
</aside>
|
||||
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue