@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 CHANGED
@@ -8620,12 +8620,31 @@ function PropertyOverview({
8620
8620
  /* @__PURE__ */ jsxRuntime.jsx(PrimaryBtn, { onClick: onTradeClick, children: tradeButtonLabel })
8621
8621
  ] })
8622
8622
  ] }),
8623
- /* @__PURE__ */ jsxRuntime.jsxs(TokenDetailsCard, { children: [
8624
- /* @__PURE__ */ jsxRuntime.jsx(TokenDetailsTitle, { children: "Token Details" }),
8625
- tokenDetailsItems.map((item) => /* @__PURE__ */ jsxRuntime.jsxs(TokenDetailRow, { children: [
8626
- /* @__PURE__ */ jsxRuntime.jsx(TokenDetailLabel, { children: item.label }),
8627
- /* @__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 })
8628
- ] }, item.label))
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, opacity: 0.85 } }) }),
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: 18, borderRadius: 3, opacity: 0.85 } }) }),
8644
+ /* @__PURE__ */ jsxRuntime.jsx(TrustBadgeLabel, { children: "Independent Valuation" })
8645
+ ] })
8646
+ ] })
8647
+ ] })
8629
8648
  ] })
8630
8649
  ] })
8631
8650
  ] }),
@@ -9179,6 +9198,7 @@ var AboutGrid = styled9__default.default.div`
9179
9198
  display: grid;
9180
9199
  grid-template-columns: 1fr 340px;
9181
9200
  gap: 2rem;
9201
+ align-items: start;
9182
9202
  @media (max-width: 900px) { grid-template-columns: 1fr; }
9183
9203
  `;
9184
9204
  var AboutLeft = styled9__default.default.div`
@@ -9233,6 +9253,11 @@ var PrimaryBtn = styled9__default.default.button`
9233
9253
  transition: background 0.15s;
9234
9254
  &:hover { background: #d4b86a; }
9235
9255
  `;
9256
+ var AboutRight = styled9__default.default.div`
9257
+ display: flex;
9258
+ flex-direction: column;
9259
+ gap: 0.75rem;
9260
+ `;
9236
9261
  var TokenDetailsCard = styled9__default.default.div`
9237
9262
  background: rgba(255,255,255,0.025);
9238
9263
  border: 1px solid rgba(255,255,255,0.06);
@@ -9269,6 +9294,42 @@ var TokenDetailValue = styled9__default.default.span`
9269
9294
  font-weight: 500;
9270
9295
  font-family: ${(p) => p.$mono ? "'SF Mono', 'Fira Code', monospace" : "inherit"};
9271
9296
  `;
9297
+ var TrustBadgesCard = styled9__default.default.div`
9298
+ background: rgba(255,255,255,0.025);
9299
+ border: 1px solid rgba(255,255,255,0.06);
9300
+ border-radius: 10px;
9301
+ padding: 1rem 1.25rem;
9302
+ `;
9303
+ var TrustBadgesTitle = styled9__default.default.div`
9304
+ font-size: 0.6rem;
9305
+ color: rgba(255,255,255,0.3);
9306
+ text-transform: uppercase;
9307
+ letter-spacing: 0.1em;
9308
+ font-weight: 500;
9309
+ margin-bottom: 0.85rem;
9310
+ `;
9311
+ var TrustBadgesRow = styled9__default.default.div`
9312
+ display: flex;
9313
+ flex-direction: column;
9314
+ gap: 0.65rem;
9315
+ `;
9316
+ var TrustBadge = styled9__default.default.div`
9317
+ display: flex;
9318
+ align-items: center;
9319
+ gap: 0.75rem;
9320
+ `;
9321
+ var TrustBadgeLogoWrap = styled9__default.default.div`
9322
+ width: 90px;
9323
+ display: flex;
9324
+ align-items: center;
9325
+ justify-content: flex-start;
9326
+ flex-shrink: 0;
9327
+ `;
9328
+ var TrustBadgeLabel = styled9__default.default.span`
9329
+ font-size: 0.75rem;
9330
+ color: rgba(255,255,255,0.45);
9331
+ font-weight: 400;
9332
+ `;
9272
9333
  var ChainLogos = styled9__default.default.span`
9273
9334
  display: inline-flex;
9274
9335
  align-items: center;