thedruid831 commited on
Commit
4ada87d
·
verified ·
1 Parent(s): 76a0452

Upload components/SettlementDetails.js with huggingface_hub

Browse files
Files changed (1) hide show
  1. components/SettlementDetails.js +25 -0
components/SettlementDetails.js ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ export default function SettlementDetails() {
2
+ return (
3
+ <div className="bg-white rounded-lg shadow p-6">
4
+ <h2 className="text-xl font-semibold mb-4">Settlement Details</h2>
5
+ <div className="grid grid-cols-1 md:grid-cols-2 gap-6">
6
+ <div>
7
+ <h3 className="font-medium text-gray-700 mb-2">Principal</h3>
8
+ <p className="text-gray-900">Andrew Nicholas Bolton</p>
9
+ </div>
10
+ <div>
11
+ <h3 className="font-medium text-gray-700 mb-2">Settlement Amount</h3>
12
+ <p className="text-gray-900">$450,000.00</p>
13
+ </div>
14
+ <div>
15
+ <h3 className="font-medium text-gray-700 mb-2">UETR Tracking</h3>
16
+ <p className="text-gray-900">0e3efb2a-1010-474c-a503-616efb9d4a0e</p>
17
+ </div>
18
+ <div>
19
+ <h3 className="font-medium text-gray-700 mb-2">Institutional Node</h3>
20
+ <p className="text-gray-900">FIN-MIP-RTGS-01</p>
21
+ </div>
22
+ </div>
23
+ </div>
24
+ )
25
+ }