@loafmarkets/ui 0.1.361 → 0.1.362

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
@@ -17770,7 +17770,393 @@ function hasPendingActivity(data) {
17770
17770
  return s !== "FILLED" && s !== "ALLOCATED" && s !== "CONFIRMED" && s !== "CANCELLED" && s !== "CANCELED" && s !== "REJECTED";
17771
17771
  }) ?? false;
17772
17772
  }
17773
+ var Overlay4 = styled9.div`
17774
+ position: fixed;
17775
+ top: 0;
17776
+ left: 0;
17777
+ right: 0;
17778
+ bottom: 0;
17779
+ background-color: rgba(0, 0, 0, 0.8);
17780
+ backdrop-filter: blur(4px);
17781
+ display: flex;
17782
+ justify-content: center;
17783
+ align-items: center;
17784
+ z-index: 10000;
17785
+ animation: fadeIn 0.2s ease-in-out;
17786
+
17787
+ @keyframes fadeIn {
17788
+ from { opacity: 0; }
17789
+ to { opacity: 1; }
17790
+ }
17791
+ `;
17792
+ var PopupContainer2 = styled9.div`
17793
+ background-color: var(--color-background, #0a0a0a);
17794
+ border: 1px solid rgba(230, 198, 86, 0.3);
17795
+ border-radius: var(--border-radius, 12px);
17796
+ padding: 2.5rem;
17797
+ max-width: 440px;
17798
+ width: 90%;
17799
+ position: relative;
17800
+ animation: slideUp 0.3s ease-out;
17801
+ box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
17802
+
17803
+ @keyframes slideUp {
17804
+ from { transform: translateY(20px); opacity: 0; }
17805
+ to { transform: translateY(0); opacity: 1; }
17806
+ }
17807
+
17808
+ @media (max-width: 768px) {
17809
+ padding: 2rem;
17810
+ max-width: 90%;
17811
+ }
17812
+ `;
17813
+ var CloseButton3 = styled9.button`
17814
+ position: absolute;
17815
+ top: 1rem;
17816
+ right: 1rem;
17817
+ background: none;
17818
+ border: none;
17819
+ color: var(--color-text-secondary, #848e9c);
17820
+ font-size: 1.5rem;
17821
+ cursor: pointer;
17822
+ padding: 0.5rem;
17823
+ display: flex;
17824
+ align-items: center;
17825
+ justify-content: center;
17826
+ transition: color 0.2s ease;
17827
+
17828
+ &:hover { color: var(--color-accent, #E6C656); }
17829
+ `;
17830
+ var Title3 = styled9.h2`
17831
+ font-size: 1.75rem;
17832
+ font-weight: 600;
17833
+ color: var(--color-text, #fff);
17834
+ margin-bottom: 0.5rem;
17835
+ `;
17836
+ var Subtitle2 = styled9.p`
17837
+ color: var(--color-text-secondary, #848e9c);
17838
+ font-size: 0.9rem;
17839
+ line-height: 1.5;
17840
+ margin-bottom: 1.5rem;
17841
+ `;
17842
+ var EmailBox = styled9.div`
17843
+ display: flex;
17844
+ align-items: center;
17845
+ gap: 0.75rem;
17846
+ background: rgba(255, 255, 255, 0.04);
17847
+ border: 1px solid rgba(255, 255, 255, 0.1);
17848
+ border-radius: 8px;
17849
+ padding: 0.875rem 1rem;
17850
+ margin-bottom: 1rem;
17851
+ `;
17852
+ var EmailText = styled9.span`
17853
+ color: var(--color-accent, #f0b90b);
17854
+ font-size: 0.95rem;
17855
+ font-weight: 500;
17856
+ flex: 1;
17857
+ user-select: all;
17858
+ `;
17859
+ var CopyButton = styled9.button`
17860
+ background: ${(props) => props.$copied ? "rgba(14, 203, 129, 0.15)" : "rgba(240, 185, 11, 0.1)"};
17861
+ border: 1px solid ${(props) => props.$copied ? "rgba(14, 203, 129, 0.3)" : "rgba(240, 185, 11, 0.2)"};
17862
+ color: ${(props) => props.$copied ? "#0ecb81" : "var(--color-accent, #f0b90b)"};
17863
+ border-radius: 6px;
17864
+ padding: 0.5rem 1rem;
17865
+ font-size: 0.8rem;
17866
+ font-weight: 600;
17867
+ cursor: pointer;
17868
+ transition: all 0.2s ease;
17869
+ white-space: nowrap;
17870
+ `;
17871
+ var OpenMailButton = styled9.a`
17872
+ display: block;
17873
+ text-align: center;
17874
+ padding: 0.875rem;
17875
+ background-color: var(--color-accent, #f0b90b);
17876
+ color: #000;
17877
+ border-radius: 8px;
17878
+ font-weight: 600;
17879
+ font-size: 0.9rem;
17880
+ text-decoration: none;
17881
+ transition: all 0.2s ease;
17882
+
17883
+ &:hover {
17884
+ transform: translateY(-1px);
17885
+ box-shadow: 0 4px 12px rgba(240, 185, 11, 0.3);
17886
+ }
17887
+ `;
17888
+ var ContactPopup = ({ onClose }) => {
17889
+ const [copied, setCopied] = useState(false);
17890
+ const email = "Gavin@loafmarkets.com";
17891
+ const handleCopy = async () => {
17892
+ try {
17893
+ await navigator.clipboard.writeText(email);
17894
+ setCopied(true);
17895
+ setTimeout(() => setCopied(false), 2e3);
17896
+ } catch {
17897
+ const textArea = document.createElement("textarea");
17898
+ textArea.value = email;
17899
+ document.body.appendChild(textArea);
17900
+ textArea.select();
17901
+ document.execCommand("copy");
17902
+ document.body.removeChild(textArea);
17903
+ setCopied(true);
17904
+ setTimeout(() => setCopied(false), 2e3);
17905
+ }
17906
+ };
17907
+ return /* @__PURE__ */ jsx(Overlay4, { onClick: onClose, children: /* @__PURE__ */ jsxs(PopupContainer2, { onClick: (e) => e.stopPropagation(), children: [
17908
+ /* @__PURE__ */ jsx(CloseButton3, { onClick: onClose, children: "\u2715" }),
17909
+ /* @__PURE__ */ jsx(Title3, { children: "Contact Us" }),
17910
+ /* @__PURE__ */ jsx(Subtitle2, { children: "Have a question or want to get in touch? Send us an email and we'll get back to you as soon as possible." }),
17911
+ /* @__PURE__ */ jsxs(EmailBox, { children: [
17912
+ /* @__PURE__ */ jsx(EmailText, { children: email }),
17913
+ /* @__PURE__ */ jsx(CopyButton, { onClick: handleCopy, $copied: copied, children: copied ? "\u2713 Copied" : "Copy" })
17914
+ ] }),
17915
+ /* @__PURE__ */ jsx(OpenMailButton, { href: `mailto:${email}`, children: "Open in Email App" })
17916
+ ] }) });
17917
+ };
17918
+ var FooterContainer = styled9.footer`
17919
+ background-color: #0d1117;
17920
+ border-top: 1px solid var(--color-border, rgba(255, 255, 255, 0.08));
17921
+ padding: 3rem 2rem 1.5rem;
17922
+ margin-top: auto;
17923
+ margin-left: calc(-50vw + 50%);
17924
+ margin-right: calc(-50vw + 50%);
17925
+ width: 100vw;
17926
+ overflow-x: hidden;
17927
+
17928
+ @media (max-width: 768px) {
17929
+ margin-left: 0;
17930
+ margin-right: 0;
17931
+ width: 100%;
17932
+ padding-left: 1.25rem;
17933
+ padding-right: 1.25rem;
17934
+ }
17935
+ `;
17936
+ var FooterContent = styled9.div`
17937
+ max-width: 1400px;
17938
+ margin: 0 auto;
17939
+ `;
17940
+ var FooterTop = styled9.div`
17941
+ display: grid;
17942
+ grid-template-columns: 1.5fr repeat(4, 1fr);
17943
+ gap: 3rem;
17944
+ padding-bottom: 2.5rem;
17945
+ border-bottom: 1px solid var(--color-border, rgba(255, 255, 255, 0.08));
17946
+
17947
+ @media (max-width: 1024px) {
17948
+ grid-template-columns: repeat(3, 1fr);
17949
+ }
17950
+
17951
+ @media (max-width: 768px) {
17952
+ grid-template-columns: repeat(2, 1fr);
17953
+ gap: 2rem;
17954
+ }
17955
+
17956
+ @media (max-width: 480px) {
17957
+ grid-template-columns: 1fr;
17958
+ }
17959
+ `;
17960
+ var BrandColumn = styled9.div`
17961
+ @media (max-width: 1024px) {
17962
+ grid-column: span 3;
17963
+ margin-bottom: 1rem;
17964
+ }
17965
+
17966
+ @media (max-width: 768px) {
17967
+ grid-column: span 2;
17968
+ }
17969
+
17970
+ @media (max-width: 480px) {
17971
+ grid-column: span 1;
17972
+ }
17973
+ `;
17974
+ var Logo2 = styled9.div`
17975
+ margin-bottom: 1.25rem;
17976
+
17977
+ img {
17978
+ height: 32px;
17979
+ }
17980
+ `;
17981
+ var BrandDescription = styled9.p`
17982
+ color: var(--color-text-secondary, #B0B0B8);
17983
+ font-size: 0.875rem;
17984
+ line-height: 1.6;
17985
+ margin-bottom: 1rem;
17986
+ max-width: 280px;
17987
+ `;
17988
+ var SocialLinks = styled9.div`
17989
+ display: flex;
17990
+ gap: 0.75rem;
17991
+ flex-wrap: wrap;
17992
+ `;
17993
+ var SocialLink = styled9.a`
17994
+ display: flex;
17995
+ align-items: center;
17996
+ justify-content: center;
17997
+ width: 36px;
17998
+ height: 36px;
17999
+ border-radius: 50%;
18000
+ background-color: rgba(255, 255, 255, 0.05);
18001
+ color: var(--color-text-secondary, #B0B0B8);
18002
+ transition: all 0.2s ease;
18003
+
18004
+ &:hover {
18005
+ background-color: var(--color-accent, #E6C87E);
18006
+ color: var(--color-background, #0A0A0C);
18007
+ }
18008
+
18009
+ svg {
18010
+ width: 18px;
18011
+ height: 18px;
18012
+ }
18013
+ `;
18014
+ var FooterColumn = styled9.div``;
18015
+ var ColumnTitle = styled9.h4`
18016
+ color: var(--color-text, #FFFFFF);
18017
+ font-size: 0.875rem;
18018
+ font-weight: 600;
18019
+ margin-bottom: 1.25rem;
18020
+ text-transform: uppercase;
18021
+ letter-spacing: 0.5px;
18022
+ `;
18023
+ var FooterLinks = styled9.ul`
18024
+ list-style: none;
18025
+ padding: 0;
18026
+ margin: 0;
18027
+ `;
18028
+ var FooterLinkItem = styled9.li`
18029
+ margin-bottom: 0.75rem;
18030
+ `;
18031
+ var FooterLink = styled9.a`
18032
+ color: var(--color-text-secondary, #B0B0B8);
18033
+ font-size: 0.875rem;
18034
+ text-decoration: none;
18035
+ transition: color 0.2s ease;
18036
+ cursor: pointer;
18037
+
18038
+ &:hover {
18039
+ color: var(--color-accent, #E6C87E);
18040
+ }
18041
+ `;
18042
+ var ComingSoonLink = styled9.span`
18043
+ color: var(--color-text-secondary, #B0B0B8);
18044
+ font-size: 0.875rem;
18045
+ opacity: 0.4;
18046
+ cursor: default;
18047
+ user-select: none;
18048
+ `;
18049
+ var FooterBottom = styled9.div`
18050
+ display: flex;
18051
+ justify-content: space-between;
18052
+ align-items: center;
18053
+ padding-top: 1.5rem;
18054
+ flex-wrap: wrap;
18055
+ gap: 1rem;
18056
+
18057
+ @media (max-width: 768px) {
18058
+ flex-direction: column;
18059
+ text-align: center;
18060
+ }
18061
+ `;
18062
+ var Copyright = styled9.p`
18063
+ color: var(--color-text-secondary, #B0B0B8);
18064
+ font-size: 0.75rem;
18065
+ `;
18066
+ var LegalLinks = styled9.div`
18067
+ display: flex;
18068
+ gap: 1.5rem;
18069
+
18070
+ @media (max-width: 480px) {
18071
+ flex-direction: column;
18072
+ gap: 0.5rem;
18073
+ }
18074
+ `;
18075
+ var LegalLink = styled9.a`
18076
+ color: var(--color-text-secondary, #B0B0B8);
18077
+ font-size: 0.75rem;
18078
+ text-decoration: none;
18079
+ transition: color 0.2s ease;
18080
+
18081
+ &:hover {
18082
+ color: var(--color-accent, #E6C87E);
18083
+ }
18084
+ `;
18085
+ var Disclaimer2 = styled9.div`
18086
+ padding: 1.5rem 0 0;
18087
+ margin-top: 1.5rem;
18088
+ border-top: 1px solid var(--color-border, rgba(255, 255, 255, 0.08));
18089
+ `;
18090
+ var DisclaimerText = styled9.p`
18091
+ color: var(--color-text-secondary, #B0B0B8);
18092
+ font-size: 0.6875rem;
18093
+ line-height: 1.6;
18094
+ opacity: 0.7;
18095
+ max-width: 100%;
18096
+ `;
18097
+ var SiteFooter = () => {
18098
+ const [showContactPopup, setShowContactPopup] = useState(false);
18099
+ return /* @__PURE__ */ jsxs(Fragment, { children: [
18100
+ /* @__PURE__ */ jsx(FooterContainer, { children: /* @__PURE__ */ jsxs(FooterContent, { children: [
18101
+ /* @__PURE__ */ jsxs(FooterTop, { children: [
18102
+ /* @__PURE__ */ jsxs(BrandColumn, { children: [
18103
+ /* @__PURE__ */ jsx(Logo2, { children: /* @__PURE__ */ jsx("a", { href: "/", children: /* @__PURE__ */ jsx("img", { src: "/Loaf-logo-Banner.png", alt: "Loaf" }) }) }),
18104
+ /* @__PURE__ */ jsx(BrandDescription, { children: "Trade the world's most exclusive properties. Unprecedented liquidity, heralding a new era for the worlds most desirable assets." }),
18105
+ /* @__PURE__ */ jsxs(SocialLinks, { children: [
18106
+ /* @__PURE__ */ jsx(SocialLink, { href: "https://x.com/loafmarkets", target: "_blank", rel: "noopener noreferrer", "aria-label": "X", children: /* @__PURE__ */ jsx("svg", { viewBox: "0 0 24 24", fill: "currentColor", children: /* @__PURE__ */ jsx("path", { d: "M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z" }) }) }),
18107
+ /* @__PURE__ */ jsx(SocialLink, { href: "https://www.linkedin.com/company/loafmarkets", target: "_blank", rel: "noopener noreferrer", "aria-label": "LinkedIn", children: /* @__PURE__ */ jsx("svg", { viewBox: "0 0 24 24", fill: "currentColor", children: /* @__PURE__ */ jsx("path", { d: "M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433c-1.144 0-2.063-.926-2.063-2.065 0-1.138.92-2.063 2.063-2.063 1.14 0 2.064.925 2.064 2.063 0 1.139-.925 2.065-2.064 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z" }) }) }),
18108
+ /* @__PURE__ */ jsx(SocialLink, { href: "https://www.instagram.com/loafmarkets", target: "_blank", rel: "noopener noreferrer", "aria-label": "Instagram", children: /* @__PURE__ */ jsx("svg", { viewBox: "0 0 24 24", fill: "currentColor", children: /* @__PURE__ */ jsx("path", { d: "M12 0C8.74 0 8.333.015 7.053.072 5.775.132 4.905.333 4.14.63c-.789.306-1.459.717-2.126 1.384S.935 3.35.63 4.14C.333 4.905.131 5.775.072 7.053.012 8.333 0 8.74 0 12s.015 3.667.072 4.947c.06 1.277.261 2.148.558 2.913.306.788.717 1.459 1.384 2.126.667.666 1.336 1.079 2.126 1.384.766.296 1.636.499 2.913.558C8.333 23.988 8.74 24 12 24s3.667-.015 4.947-.072c1.277-.06 2.148-.262 2.913-.558.788-.306 1.459-.718 2.126-1.384.666-.667 1.079-1.335 1.384-2.126.296-.765.499-1.636.558-2.913.06-1.28.072-1.687.072-4.947s-.015-3.667-.072-4.947c-.06-1.277-.262-2.149-.558-2.913-.306-.789-.718-1.459-1.384-2.126C21.319 1.347 20.651.935 19.86.63c-.765-.297-1.636-.499-2.913-.558C15.667.012 15.26 0 12 0zm0 2.16c3.203 0 3.585.016 4.85.071 1.17.055 1.805.249 2.227.415.562.217.96.477 1.382.896.419.42.679.819.896 1.381.164.422.36 1.057.413 2.227.057 1.266.07 1.646.07 4.85s-.015 3.585-.074 4.85c-.061 1.17-.256 1.805-.421 2.227-.224.562-.479.96-.899 1.382-.419.419-.824.679-1.38.896-.42.164-1.065.36-2.235.413-1.274.057-1.649.07-4.859.07-3.211 0-3.586-.015-4.859-.074-1.171-.061-1.816-.256-2.236-.421-.569-.224-.96-.479-1.379-.899-.421-.419-.69-.824-.9-1.38-.165-.42-.359-1.065-.42-2.235-.045-1.26-.061-1.649-.061-4.844 0-3.196.016-3.586.061-4.861.061-1.17.255-1.814.42-2.234.21-.57.479-.96.9-1.381.419-.419.81-.689 1.379-.898.42-.166 1.051-.361 2.221-.421 1.275-.045 1.65-.06 4.859-.06l.045.03zm0 3.678c-3.405 0-6.162 2.76-6.162 6.162 0 3.405 2.76 6.162 6.162 6.162 3.405 0 6.162-2.76 6.162-6.162 0-3.405-2.757-6.162-6.162-6.162zM12 16c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm7.846-10.405c0 .795-.646 1.44-1.44 1.44-.795 0-1.44-.646-1.44-1.44 0-.794.646-1.439 1.44-1.439.793-.001 1.44.645 1.44 1.439z" }) }) })
18109
+ ] })
18110
+ ] }),
18111
+ /* @__PURE__ */ jsxs(FooterColumn, { children: [
18112
+ /* @__PURE__ */ jsx(ColumnTitle, { children: "Platform" }),
18113
+ /* @__PURE__ */ jsxs(FooterLinks, { children: [
18114
+ /* @__PURE__ */ jsx(FooterLinkItem, { children: /* @__PURE__ */ jsx(FooterLink, { href: "/trade", children: "Trade" }) }),
18115
+ /* @__PURE__ */ jsx(FooterLinkItem, { children: /* @__PURE__ */ jsx(FooterLink, { href: "/offerings", children: "Initial Offerings" }) }),
18116
+ /* @__PURE__ */ jsx(FooterLinkItem, { children: /* @__PURE__ */ jsx(FooterLink, { href: "/map", children: "Property Map" }) }),
18117
+ /* @__PURE__ */ jsx(FooterLinkItem, { children: /* @__PURE__ */ jsx(FooterLink, { href: "/loaf-liquidity", children: "Loaf Liquidity" }) })
18118
+ ] })
18119
+ ] }),
18120
+ /* @__PURE__ */ jsxs(FooterColumn, { children: [
18121
+ /* @__PURE__ */ jsx(ColumnTitle, { children: "Learn About Loaf" }),
18122
+ /* @__PURE__ */ jsxs(FooterLinks, { children: [
18123
+ /* @__PURE__ */ jsx(FooterLinkItem, { children: /* @__PURE__ */ jsx(FooterLink, { href: "/learn", children: "Learn" }) }),
18124
+ /* @__PURE__ */ jsx(FooterLinkItem, { children: /* @__PURE__ */ jsx(FooterLink, { href: "/about", children: "About" }) })
18125
+ ] })
18126
+ ] }),
18127
+ /* @__PURE__ */ jsxs(FooterColumn, { children: [
18128
+ /* @__PURE__ */ jsx(ColumnTitle, { children: "Company" }),
18129
+ /* @__PURE__ */ jsxs(FooterLinks, { children: [
18130
+ /* @__PURE__ */ jsx(FooterLinkItem, { children: /* @__PURE__ */ jsx(FooterLink, { as: "span", onClick: () => setShowContactPopup(true), children: "Contact" }) }),
18131
+ /* @__PURE__ */ jsx(FooterLinkItem, { children: /* @__PURE__ */ jsx(ComingSoonLink, { children: "Investors" }) }),
18132
+ /* @__PURE__ */ jsx(FooterLinkItem, { children: /* @__PURE__ */ jsx(FooterLink, { href: "/recruitment", children: "Careers" }) })
18133
+ ] })
18134
+ ] }),
18135
+ /* @__PURE__ */ jsxs(FooterColumn, { children: [
18136
+ /* @__PURE__ */ jsx(ColumnTitle, { children: "Support" }),
18137
+ /* @__PURE__ */ jsxs(FooterLinks, { children: [
18138
+ /* @__PURE__ */ jsx(FooterLinkItem, { children: /* @__PURE__ */ jsx(ComingSoonLink, { children: "Help Centre" }) }),
18139
+ /* @__PURE__ */ jsx(FooterLinkItem, { children: /* @__PURE__ */ jsx(ComingSoonLink, { children: "FAQs" }) }),
18140
+ /* @__PURE__ */ jsx(FooterLinkItem, { children: /* @__PURE__ */ jsx(ComingSoonLink, { children: "API Documentation" }) }),
18141
+ /* @__PURE__ */ jsx(FooterLinkItem, { children: /* @__PURE__ */ jsx(ComingSoonLink, { children: "Status" }) })
18142
+ ] })
18143
+ ] })
18144
+ ] }),
18145
+ /* @__PURE__ */ jsxs(FooterBottom, { children: [
18146
+ /* @__PURE__ */ jsx(Copyright, { children: "\xA9 2026 Loaf Markets. All rights reserved." }),
18147
+ /* @__PURE__ */ jsxs(LegalLinks, { children: [
18148
+ /* @__PURE__ */ jsx(LegalLink, { href: "/privacy", children: "Privacy Policy" }),
18149
+ /* @__PURE__ */ jsx(LegalLink, { href: "/terms", children: "Terms of Use" }),
18150
+ /* @__PURE__ */ jsx(LegalLink, { href: "/cookies", children: "Cookie Policy" }),
18151
+ /* @__PURE__ */ jsx(LegalLink, { href: "/risk", children: "Risk Warning" })
18152
+ ] })
18153
+ ] }),
18154
+ /* @__PURE__ */ jsx(Disclaimer2, { children: /* @__PURE__ */ jsx(DisclaimerText, { children: "Warning: Digital asset prices can be volatile. The value of your investment can go down or up and you may not get back the amount invested. Past gains are not indicative of future returns. You are solely responsible for your investment decisions and Loaf is not liable for any losses you may incur. The information here should not be regarded as financial or investment advice. For more information, see our Terms of Use and Risk Warning." }) })
18155
+ ] }) }),
18156
+ showContactPopup && /* @__PURE__ */ jsx(ContactPopup, { onClose: () => setShowContactPopup(false) })
18157
+ ] });
18158
+ };
17773
18159
 
17774
- export { AssetSelectorBar, Badge, Button, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Header, HousePositionSlider, HousePositionSliderMobile, LoafLiquidityBadge, LoafLiquidityLogo, LoginPopup, MobileTradeNav, OfferingProgressCard, Orderbook, owner_booking_default as OwnerBooking, PaymentPopup, PortfolioActivityPanel, PortfolioSummary, PriceChart, PropertyBuy, PropertyCompareBar, PropertyDocuments, PropertyHeroHeader, PropertyHistory, PropertyInspectionTimes, PropertyMediaRow, PropertyNewsUpdates, PropertyOffers, PropertyOverview, PropertyPhotoGallery, PropertySubheader, PropertyTour, PropertyValuation, Skeleton, SlideDigit, ToastProvider, TradeConfirmationModal, TradingSlider, YourOrders, badgeVariants, buttonVariants, hasPendingActivity, useAdaptivePolling, useToast };
18160
+ export { AssetSelectorBar, Badge, Button, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, ContactPopup, Header, HousePositionSlider, HousePositionSliderMobile, LoafLiquidityBadge, LoafLiquidityLogo, LoginPopup, MobileTradeNav, OfferingProgressCard, Orderbook, owner_booking_default as OwnerBooking, PaymentPopup, PortfolioActivityPanel, PortfolioSummary, PriceChart, PropertyBuy, PropertyCompareBar, PropertyDocuments, PropertyHeroHeader, PropertyHistory, PropertyInspectionTimes, PropertyMediaRow, PropertyNewsUpdates, PropertyOffers, PropertyOverview, PropertyPhotoGallery, PropertySubheader, PropertyTour, PropertyValuation, SiteFooter, Skeleton, SlideDigit, ToastProvider, TradeConfirmationModal, TradingSlider, YourOrders, badgeVariants, buttonVariants, hasPendingActivity, useAdaptivePolling, useToast };
17775
18161
  //# sourceMappingURL=index.mjs.map
17776
18162
  //# sourceMappingURL=index.mjs.map