@loafmarkets/ui 0.1.182 → 0.1.183
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 +76 -6
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +76 -6
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -8620,12 +8620,32 @@ function PropertyOverview({
|
|
|
8620
8620
|
/* @__PURE__ */ jsxRuntime.jsx(PrimaryBtn, { onClick: onTradeClick, children: tradeButtonLabel })
|
|
8621
8621
|
] })
|
|
8622
8622
|
] }),
|
|
8623
|
-
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
8624
|
-
/* @__PURE__ */ jsxRuntime.
|
|
8625
|
-
|
|
8626
|
-
/* @__PURE__ */ jsxRuntime.
|
|
8627
|
-
|
|
8628
|
-
|
|
8623
|
+
/* @__PURE__ */ jsxRuntime.jsxs(AboutRight, { children: [
|
|
8624
|
+
/* @__PURE__ */ jsxRuntime.jsxs(TokenDetailsCard, { children: [
|
|
8625
|
+
/* @__PURE__ */ jsxRuntime.jsx(TokenDetailsTitle, { children: "Token Details" }),
|
|
8626
|
+
tokenDetailsItems.map((item) => /* @__PURE__ */ jsxRuntime.jsxs(TokenDetailRow, { children: [
|
|
8627
|
+
/* @__PURE__ */ jsxRuntime.jsx(TokenDetailLabel, { children: item.label }),
|
|
8628
|
+
/* @__PURE__ */ jsxRuntime.jsx(TokenDetailValue, { $mono: !!item.mono, children: item.link ? /* @__PURE__ */ jsxRuntime.jsx("a", { href: item.link, target: "_blank", rel: "noopener noreferrer", style: { color: "#3380FF", textDecoration: "none" }, children: item.value }) : item.value })
|
|
8629
|
+
] }, item.label))
|
|
8630
|
+
] }),
|
|
8631
|
+
/* @__PURE__ */ jsxRuntime.jsxs(TrustBadgesCard, { children: [
|
|
8632
|
+
/* @__PURE__ */ jsxRuntime.jsx(TrustBadgesTitle, { children: "Structured & Secured By" }),
|
|
8633
|
+
/* @__PURE__ */ jsxRuntime.jsxs(TrustBadgesRow, { children: [
|
|
8634
|
+
/* @__PURE__ */ jsxRuntime.jsxs(TrustBadge, { children: [
|
|
8635
|
+
/* @__PURE__ */ jsxRuntime.jsx(TrustBadgeLogoWrap, { children: /* @__PURE__ */ jsxRuntime.jsx("img", { src: "/Baker_McKenzie.png", alt: "Baker McKenzie", style: { height: 18, filter: "brightness(0) invert(1)", opacity: 0.8 } }) }),
|
|
8636
|
+
/* @__PURE__ */ jsxRuntime.jsx(TrustBadgeLabel, { children: "Legal Structuring" })
|
|
8637
|
+
] }),
|
|
8638
|
+
/* @__PURE__ */ jsxRuntime.jsxs(TrustBadge, { children: [
|
|
8639
|
+
/* @__PURE__ */ jsxRuntime.jsx(TrustBadgeLogoWrap, { children: /* @__PURE__ */ jsxRuntime.jsx("img", { src: "/NSW_registry.png", alt: "NSW Land Registry", style: { height: 20, filter: "brightness(0) invert(1)", opacity: 0.8 } }) }),
|
|
8640
|
+
/* @__PURE__ */ jsxRuntime.jsx(TrustBadgeLabel, { children: "Land Title Secured" })
|
|
8641
|
+
] }),
|
|
8642
|
+
/* @__PURE__ */ jsxRuntime.jsxs(TrustBadge, { children: [
|
|
8643
|
+
/* @__PURE__ */ jsxRuntime.jsx(TrustBadgeLogoWrap, { children: /* @__PURE__ */ jsxRuntime.jsx("img", { src: "/savills.png", alt: "Savills", style: { height: 16, filter: "brightness(0) invert(1)", opacity: 0.8 } }) }),
|
|
8644
|
+
/* @__PURE__ */ jsxRuntime.jsx(TrustBadgeLabel, { children: "Independent Valuation" })
|
|
8645
|
+
] })
|
|
8646
|
+
] }),
|
|
8647
|
+
/* @__PURE__ */ jsxRuntime.jsx(TrustBadgeNote, { children: "AFSL 454350 \xB7 ASIC Regulated" })
|
|
8648
|
+
] })
|
|
8629
8649
|
] })
|
|
8630
8650
|
] })
|
|
8631
8651
|
] }),
|
|
@@ -9179,6 +9199,7 @@ var AboutGrid = styled9__default.default.div`
|
|
|
9179
9199
|
display: grid;
|
|
9180
9200
|
grid-template-columns: 1fr 340px;
|
|
9181
9201
|
gap: 2rem;
|
|
9202
|
+
align-items: start;
|
|
9182
9203
|
@media (max-width: 900px) { grid-template-columns: 1fr; }
|
|
9183
9204
|
`;
|
|
9184
9205
|
var AboutLeft = styled9__default.default.div`
|
|
@@ -9233,6 +9254,11 @@ var PrimaryBtn = styled9__default.default.button`
|
|
|
9233
9254
|
transition: background 0.15s;
|
|
9234
9255
|
&:hover { background: #d4b86a; }
|
|
9235
9256
|
`;
|
|
9257
|
+
var AboutRight = styled9__default.default.div`
|
|
9258
|
+
display: flex;
|
|
9259
|
+
flex-direction: column;
|
|
9260
|
+
gap: 0.75rem;
|
|
9261
|
+
`;
|
|
9236
9262
|
var TokenDetailsCard = styled9__default.default.div`
|
|
9237
9263
|
background: rgba(255,255,255,0.025);
|
|
9238
9264
|
border: 1px solid rgba(255,255,255,0.06);
|
|
@@ -9269,6 +9295,50 @@ var TokenDetailValue = styled9__default.default.span`
|
|
|
9269
9295
|
font-weight: 500;
|
|
9270
9296
|
font-family: ${(p) => p.$mono ? "'SF Mono', 'Fira Code', monospace" : "inherit"};
|
|
9271
9297
|
`;
|
|
9298
|
+
var TrustBadgesCard = styled9__default.default.div`
|
|
9299
|
+
background: rgba(255,255,255,0.025);
|
|
9300
|
+
border: 1px solid rgba(255,255,255,0.06);
|
|
9301
|
+
border-radius: 10px;
|
|
9302
|
+
padding: 1rem 1.25rem;
|
|
9303
|
+
`;
|
|
9304
|
+
var TrustBadgesTitle = styled9__default.default.div`
|
|
9305
|
+
font-size: 0.6rem;
|
|
9306
|
+
color: rgba(255,255,255,0.3);
|
|
9307
|
+
text-transform: uppercase;
|
|
9308
|
+
letter-spacing: 0.1em;
|
|
9309
|
+
font-weight: 500;
|
|
9310
|
+
margin-bottom: 0.85rem;
|
|
9311
|
+
`;
|
|
9312
|
+
var TrustBadgesRow = styled9__default.default.div`
|
|
9313
|
+
display: flex;
|
|
9314
|
+
flex-direction: column;
|
|
9315
|
+
gap: 0.65rem;
|
|
9316
|
+
`;
|
|
9317
|
+
var TrustBadge = styled9__default.default.div`
|
|
9318
|
+
display: flex;
|
|
9319
|
+
align-items: center;
|
|
9320
|
+
gap: 0.75rem;
|
|
9321
|
+
`;
|
|
9322
|
+
var TrustBadgeLogoWrap = styled9__default.default.div`
|
|
9323
|
+
width: 90px;
|
|
9324
|
+
display: flex;
|
|
9325
|
+
align-items: center;
|
|
9326
|
+
justify-content: flex-start;
|
|
9327
|
+
flex-shrink: 0;
|
|
9328
|
+
`;
|
|
9329
|
+
var TrustBadgeLabel = styled9__default.default.span`
|
|
9330
|
+
font-size: 0.75rem;
|
|
9331
|
+
color: rgba(255,255,255,0.45);
|
|
9332
|
+
font-weight: 400;
|
|
9333
|
+
`;
|
|
9334
|
+
var TrustBadgeNote = styled9__default.default.div`
|
|
9335
|
+
margin-top: 0.85rem;
|
|
9336
|
+
padding-top: 0.65rem;
|
|
9337
|
+
border-top: 1px solid rgba(255,255,255,0.04);
|
|
9338
|
+
font-size: 0.65rem;
|
|
9339
|
+
color: rgba(255,255,255,0.25);
|
|
9340
|
+
letter-spacing: 0.03em;
|
|
9341
|
+
`;
|
|
9272
9342
|
var ChainLogos = styled9__default.default.span`
|
|
9273
9343
|
display: inline-flex;
|
|
9274
9344
|
align-items: center;
|