-
Notifications
You must be signed in to change notification settings - Fork 301
feat: add trademark disclaimer link to footer and disclaimer card to price feeds page #2451
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
Merged
Merged
Changes from 7 commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
7750fa2
feat: add trademark disclaimer link to footer and disclaimer card to …
devin-ai-integration[bot] 08ec7f5
fix: address PR feedback on trademark disclaimer implementation
devin-ai-integration[bot] f3b10c9
fix: fix formatting issues in PriceFeeds/index.tsx
devin-ai-integration[bot] e420467
fix: address additional PR feedback on trademark disclaimer
devin-ai-integration[bot] 7f58cd0
fix: escape quotes in trademark disclaimer text to fix ESLint errors
devin-ai-integration[bot] 656ca8c
fix: fix formatting issues in PriceFeeds/index.tsx
devin-ai-integration[bot] 5cb502b
fix: replace Card with div and add header for trademark disclaimer
devin-ai-integration[bot] 1b38c59
fix: rename class to trademarkDisclaimer and remove wrapper div
devin-ai-integration[bot] File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -124,6 +124,35 @@ export const PriceFeeds = async () => { | |
/> | ||
</UnstyledTabPanel> | ||
</UnstyledTabs> | ||
<div className={styles.trademarkDisclaimerCard}> | ||
<div className={styles.trademarkDisclaimerContent}> | ||
|
||
<h3 className={styles.trademarkDisclaimerHeader}> | ||
Trademark Disclaimer | ||
</h3> | ||
<p> | ||
This website may display ticker symbols, product names, and other | ||
identifiers that are trademarks, service marks or trade names of | ||
third parties. Such display is for informational purposes only and | ||
does not constitute any claim of ownership thereof by Pyth Data | ||
Association or any of its subsidiaries and other affiliates | ||
(collectively, "Association") or any sponsorship or | ||
endorsement by Association of any associated products or services, | ||
and should not be construed as indicating any affiliation, | ||
sponsorship or other connection between Association and the | ||
third-party owners of such identifiers. Any such third-party | ||
identifiers associated with financial data are made solely to | ||
identify the relevant financial products for which price data is | ||
made available via the website. All trademarks, service marks, | ||
logos, product names, trade names and company names mentioned on the | ||
website are the property of their respective owners and are | ||
protected by trademark and other intellectual property laws. | ||
Association makes no representations or warranties with respect to | ||
any such identifiers or any data or other information associated | ||
therewith and reserves the right to modify or remove any such | ||
displays at its discretion. | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
}; | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We don't need this wrapper div, please remove it.