@loafmarkets/ui 0.1.182 → 0.1.184
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +67 -6
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +67 -6
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -8594,12 +8594,31 @@ function PropertyOverview({
|
|
|
8594
8594
|
/* @__PURE__ */ jsx(PrimaryBtn, { onClick: onTradeClick, children: tradeButtonLabel })
|
|
8595
8595
|
] })
|
|
8596
8596
|
] }),
|
|
8597
|
-
/* @__PURE__ */ jsxs(
|
|
8598
|
-
/* @__PURE__ */
|
|
8599
|
-
|
|
8600
|
-
/* @__PURE__ */
|
|
8601
|
-
|
|
8602
|
-
|
|
8597
|
+
/* @__PURE__ */ jsxs(AboutRight, { children: [
|
|
8598
|
+
/* @__PURE__ */ jsxs(TokenDetailsCard, { children: [
|
|
8599
|
+
/* @__PURE__ */ jsx(TokenDetailsTitle, { children: "Token Details" }),
|
|
8600
|
+
tokenDetailsItems.map((item) => /* @__PURE__ */ jsxs(TokenDetailRow, { children: [
|
|
8601
|
+
/* @__PURE__ */ jsx(TokenDetailLabel, { children: item.label }),
|
|
8602
|
+
/* @__PURE__ */ jsx(TokenDetailValue, { $mono: !!item.mono, children: item.link ? /* @__PURE__ */ jsx("a", { href: item.link, target: "_blank", rel: "noopener noreferrer", style: { color: "#3380FF", textDecoration: "none" }, children: item.value }) : item.value })
|
|
8603
|
+
] }, item.label))
|
|
8604
|
+
] }),
|
|
8605
|
+
/* @__PURE__ */ jsxs(TrustBadgesCard, { children: [
|
|
8606
|
+
/* @__PURE__ */ jsx(TrustBadgesTitle, { children: "Structured & Secured By" }),
|
|
8607
|
+
/* @__PURE__ */ jsxs(TrustBadgesRow, { children: [
|
|
8608
|
+
/* @__PURE__ */ jsxs(TrustBadge, { children: [
|
|
8609
|
+
/* @__PURE__ */ jsx(TrustBadgeLogoWrap, { children: /* @__PURE__ */ jsx("img", { src: "/Baker_McKenzie.png", alt: "Baker McKenzie", style: { height: 18, filter: "brightness(0) invert(1)", opacity: 0.8 } }) }),
|
|
8610
|
+
/* @__PURE__ */ jsx(TrustBadgeLabel, { children: "Legal Structuring" })
|
|
8611
|
+
] }),
|
|
8612
|
+
/* @__PURE__ */ jsxs(TrustBadge, { children: [
|
|
8613
|
+
/* @__PURE__ */ jsx(TrustBadgeLogoWrap, { children: /* @__PURE__ */ jsx("img", { src: "/NSW_registry.png", alt: "NSW Land Registry", style: { height: 20, opacity: 0.85 } }) }),
|
|
8614
|
+
/* @__PURE__ */ jsx(TrustBadgeLabel, { children: "Land Title Secured" })
|
|
8615
|
+
] }),
|
|
8616
|
+
/* @__PURE__ */ jsxs(TrustBadge, { children: [
|
|
8617
|
+
/* @__PURE__ */ jsx(TrustBadgeLogoWrap, { children: /* @__PURE__ */ jsx("img", { src: "/savills.png", alt: "Savills", style: { height: 18, borderRadius: 3, opacity: 0.85 } }) }),
|
|
8618
|
+
/* @__PURE__ */ jsx(TrustBadgeLabel, { children: "Independent Valuation" })
|
|
8619
|
+
] })
|
|
8620
|
+
] })
|
|
8621
|
+
] })
|
|
8603
8622
|
] })
|
|
8604
8623
|
] })
|
|
8605
8624
|
] }),
|
|
@@ -9153,6 +9172,7 @@ var AboutGrid = styled9.div`
|
|
|
9153
9172
|
display: grid;
|
|
9154
9173
|
grid-template-columns: 1fr 340px;
|
|
9155
9174
|
gap: 2rem;
|
|
9175
|
+
align-items: start;
|
|
9156
9176
|
@media (max-width: 900px) { grid-template-columns: 1fr; }
|
|
9157
9177
|
`;
|
|
9158
9178
|
var AboutLeft = styled9.div`
|
|
@@ -9207,6 +9227,11 @@ var PrimaryBtn = styled9.button`
|
|
|
9207
9227
|
transition: background 0.15s;
|
|
9208
9228
|
&:hover { background: #d4b86a; }
|
|
9209
9229
|
`;
|
|
9230
|
+
var AboutRight = styled9.div`
|
|
9231
|
+
display: flex;
|
|
9232
|
+
flex-direction: column;
|
|
9233
|
+
gap: 0.75rem;
|
|
9234
|
+
`;
|
|
9210
9235
|
var TokenDetailsCard = styled9.div`
|
|
9211
9236
|
background: rgba(255,255,255,0.025);
|
|
9212
9237
|
border: 1px solid rgba(255,255,255,0.06);
|
|
@@ -9243,6 +9268,42 @@ var TokenDetailValue = styled9.span`
|
|
|
9243
9268
|
font-weight: 500;
|
|
9244
9269
|
font-family: ${(p) => p.$mono ? "'SF Mono', 'Fira Code', monospace" : "inherit"};
|
|
9245
9270
|
`;
|
|
9271
|
+
var TrustBadgesCard = styled9.div`
|
|
9272
|
+
background: rgba(255,255,255,0.025);
|
|
9273
|
+
border: 1px solid rgba(255,255,255,0.06);
|
|
9274
|
+
border-radius: 10px;
|
|
9275
|
+
padding: 1rem 1.25rem;
|
|
9276
|
+
`;
|
|
9277
|
+
var TrustBadgesTitle = styled9.div`
|
|
9278
|
+
font-size: 0.6rem;
|
|
9279
|
+
color: rgba(255,255,255,0.3);
|
|
9280
|
+
text-transform: uppercase;
|
|
9281
|
+
letter-spacing: 0.1em;
|
|
9282
|
+
font-weight: 500;
|
|
9283
|
+
margin-bottom: 0.85rem;
|
|
9284
|
+
`;
|
|
9285
|
+
var TrustBadgesRow = styled9.div`
|
|
9286
|
+
display: flex;
|
|
9287
|
+
flex-direction: column;
|
|
9288
|
+
gap: 0.65rem;
|
|
9289
|
+
`;
|
|
9290
|
+
var TrustBadge = styled9.div`
|
|
9291
|
+
display: flex;
|
|
9292
|
+
align-items: center;
|
|
9293
|
+
gap: 0.75rem;
|
|
9294
|
+
`;
|
|
9295
|
+
var TrustBadgeLogoWrap = styled9.div`
|
|
9296
|
+
width: 90px;
|
|
9297
|
+
display: flex;
|
|
9298
|
+
align-items: center;
|
|
9299
|
+
justify-content: flex-start;
|
|
9300
|
+
flex-shrink: 0;
|
|
9301
|
+
`;
|
|
9302
|
+
var TrustBadgeLabel = styled9.span`
|
|
9303
|
+
font-size: 0.75rem;
|
|
9304
|
+
color: rgba(255,255,255,0.45);
|
|
9305
|
+
font-weight: 400;
|
|
9306
|
+
`;
|
|
9246
9307
|
var ChainLogos = styled9.span`
|
|
9247
9308
|
display: inline-flex;
|
|
9248
9309
|
align-items: center;
|