@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.mjs CHANGED
@@ -8594,12 +8594,32 @@ function PropertyOverview({
8594
8594
  /* @__PURE__ */ jsx(PrimaryBtn, { onClick: onTradeClick, children: tradeButtonLabel })
8595
8595
  ] })
8596
8596
  ] }),
8597
- /* @__PURE__ */ jsxs(TokenDetailsCard, { children: [
8598
- /* @__PURE__ */ jsx(TokenDetailsTitle, { children: "Token Details" }),
8599
- tokenDetailsItems.map((item) => /* @__PURE__ */ jsxs(TokenDetailRow, { children: [
8600
- /* @__PURE__ */ jsx(TokenDetailLabel, { children: item.label }),
8601
- /* @__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 })
8602
- ] }, item.label))
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, filter: "brightness(0) invert(1)", opacity: 0.8 } }) }),
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: 16, filter: "brightness(0) invert(1)", opacity: 0.8 } }) }),
8618
+ /* @__PURE__ */ jsx(TrustBadgeLabel, { children: "Independent Valuation" })
8619
+ ] })
8620
+ ] }),
8621
+ /* @__PURE__ */ jsx(TrustBadgeNote, { children: "AFSL 454350 \xB7 ASIC Regulated" })
8622
+ ] })
8603
8623
  ] })
8604
8624
  ] })
8605
8625
  ] }),
@@ -9153,6 +9173,7 @@ var AboutGrid = styled9.div`
9153
9173
  display: grid;
9154
9174
  grid-template-columns: 1fr 340px;
9155
9175
  gap: 2rem;
9176
+ align-items: start;
9156
9177
  @media (max-width: 900px) { grid-template-columns: 1fr; }
9157
9178
  `;
9158
9179
  var AboutLeft = styled9.div`
@@ -9207,6 +9228,11 @@ var PrimaryBtn = styled9.button`
9207
9228
  transition: background 0.15s;
9208
9229
  &:hover { background: #d4b86a; }
9209
9230
  `;
9231
+ var AboutRight = styled9.div`
9232
+ display: flex;
9233
+ flex-direction: column;
9234
+ gap: 0.75rem;
9235
+ `;
9210
9236
  var TokenDetailsCard = styled9.div`
9211
9237
  background: rgba(255,255,255,0.025);
9212
9238
  border: 1px solid rgba(255,255,255,0.06);
@@ -9243,6 +9269,50 @@ var TokenDetailValue = styled9.span`
9243
9269
  font-weight: 500;
9244
9270
  font-family: ${(p) => p.$mono ? "'SF Mono', 'Fira Code', monospace" : "inherit"};
9245
9271
  `;
9272
+ var TrustBadgesCard = styled9.div`
9273
+ background: rgba(255,255,255,0.025);
9274
+ border: 1px solid rgba(255,255,255,0.06);
9275
+ border-radius: 10px;
9276
+ padding: 1rem 1.25rem;
9277
+ `;
9278
+ var TrustBadgesTitle = styled9.div`
9279
+ font-size: 0.6rem;
9280
+ color: rgba(255,255,255,0.3);
9281
+ text-transform: uppercase;
9282
+ letter-spacing: 0.1em;
9283
+ font-weight: 500;
9284
+ margin-bottom: 0.85rem;
9285
+ `;
9286
+ var TrustBadgesRow = styled9.div`
9287
+ display: flex;
9288
+ flex-direction: column;
9289
+ gap: 0.65rem;
9290
+ `;
9291
+ var TrustBadge = styled9.div`
9292
+ display: flex;
9293
+ align-items: center;
9294
+ gap: 0.75rem;
9295
+ `;
9296
+ var TrustBadgeLogoWrap = styled9.div`
9297
+ width: 90px;
9298
+ display: flex;
9299
+ align-items: center;
9300
+ justify-content: flex-start;
9301
+ flex-shrink: 0;
9302
+ `;
9303
+ var TrustBadgeLabel = styled9.span`
9304
+ font-size: 0.75rem;
9305
+ color: rgba(255,255,255,0.45);
9306
+ font-weight: 400;
9307
+ `;
9308
+ var TrustBadgeNote = styled9.div`
9309
+ margin-top: 0.85rem;
9310
+ padding-top: 0.65rem;
9311
+ border-top: 1px solid rgba(255,255,255,0.04);
9312
+ font-size: 0.65rem;
9313
+ color: rgba(255,255,255,0.25);
9314
+ letter-spacing: 0.03em;
9315
+ `;
9246
9316
  var ChainLogos = styled9.span`
9247
9317
  display: inline-flex;
9248
9318
  align-items: center;