Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added settings page, account selection menu styling, #243

Merged
merged 22 commits into from
Oct 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
b6c9c46
added settings page, account selection menu styling,
fabiofederici Oct 12, 2024
fddd8c1
re-enabled detail links, removed outline from tabs, disabled tabs on …
fabiofederici Oct 12, 2024
03f1fcc
styling chages, typo fix, capitalization of key facts
fabiofederici Oct 13, 2024
2549711
combined settings + cluster page, ability to add custom endpoint, dat…
fabiofederici Oct 13, 2024
64f3f13
beta warning styling and mobile fix
fabiofederici Oct 13, 2024
39c2eae
detail page styling
fabiofederici Oct 13, 2024
53d06d4
sparkle sizing, added redirect if invalid pubkey
fabiofederici Oct 13, 2024
9d60125
sparkle sizing, added redirect if invalid pubkey
fabiofederici Oct 13, 2024
3f032aa
fixed content height no detail page, fixed button menu
fabiofederici Oct 13, 2024
a6347ad
resolve conflicts
fabiofederici Oct 14, 2024
c8aca93
add space
fabiofederici Oct 13, 2024
6aa1ed9
resolve conflicts
fabiofederici Oct 14, 2024
4c1ed65
truncate account name
fabiofederici Oct 13, 2024
9f646ae
fixed market order type input fields, added slippage input
fabiofederici Oct 13, 2024
1bb7ff1
resolve conflicts
fabiofederici Oct 14, 2024
c7a7e54
action button styling in light mode
fabiofederici Oct 14, 2024
38d35b0
changed drift account link to icon
fabiofederici Oct 14, 2024
7ca0c9f
updated sparkle address to show share class id on product detail page
fabiofederici Oct 14, 2024
5354a94
connected helius api to display holder data on detail page
fabiofederici Oct 14, 2024
36e1caa
moved url and api key to the fetch
fabiofederici Oct 14, 2024
bf9b707
display call to action in account menu on first connection
fabiofederici Oct 14, 2024
d1fe1d1
added not investment advice to disclaimer
fabiofederici Oct 14, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion playground/next-env.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
/// <reference types="next/image-types/global" />

// NOTE: This file should not be edited
// see https://nextjs.org/docs/app/building-your-application/configuring/typescript for more information.
// see https://nextjs.org/docs/basic-features/typescript for more information.
37 changes: 37 additions & 0 deletions playground/src/app/disclaimer/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,43 @@ const DisclaimerPage: React.FC = () => {
We may update this disclaimer from time to time. <strong>Continued use</strong> of GLAM GUI constitutes your acceptance of any changes. Please review this disclaimer periodically for updates.
</p>
</section>

<section className="mb-6">
<h2 className="text-lg font-semibold mb-2">12. Additional Information and Disclaimers</h2>

<h3 className="text-md font-semibold mb-2">Nature of Information</h3>
<ul className="list-disc pl-6 mb-4">
<li>All content available on GLAM GUI is <span className="font-semibold">general in nature</span> and <span className="font-semibold">not tailored to any particular person</span></li>
<li>Information is provided for <span className="font-semibold">informational purposes only</span></li>
<li>Content should <span className="font-semibold">not be considered investment advice</span> or a recommendation to transact in any cryptoassets</li>
</ul>

<h3 className="text-md font-semibold mb-2">Informational Purposes</h3>
<p className="mb-4">
While GLAM GUI provides information about cryptoassets and related technologies, users should not rely solely on this information for making investment decisions. We encourage users to conduct their own research and seek professional advice when necessary.
</p>

<h3 className="text-md font-semibold mb-2">Performance Information</h3>
<p className="mb-4">
Any performance information or historical data presented on GLAM GUI must be considered in conjunction with applicable disclosures. <span className="font-semibold">Past performance is not indicative of future results.</span> The cryptoasset market is highly volatile and unpredictable.
</p>

<h3 className="text-md font-semibold mb-2">Third-Party Content</h3>
<p className="mb-4">
GLAM GUI may include content from third-party sources. While we strive to provide accurate and up-to-date information, we do not endorse or guarantee the accuracy, completeness, or reliability of any third-party content. Users should exercise caution and critical thinking when interpreting such information.
</p>

<h3 className="text-md font-semibold mb-2">Regulatory Compliance</h3>
<p className="mb-4">
Users are responsible for ensuring their use of GLAM GUI complies with all applicable laws and regulations in their jurisdiction. Cryptoasset regulations vary by country and are subject to change. GLAM does not guarantee the legality of its services in all jurisdictions.
</p>

<h3 className="text-md font-semibold mb-2">Consultation Recommendation</h3>
<p className="mb-4">
Given the complex nature of cryptoassets and the potential risks involved, we strongly recommend that users consult with qualified professionals, including legal and tax advisors, before making any decisions based on the information provided by GLAM GUI.
</p>
</section>

</div>
</PageContentWrapper>);
};
Expand Down
Loading