Skip to content
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
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
16 changes: 16 additions & 0 deletions apps/insights/src/components/PriceFeeds/index.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -86,4 +86,20 @@
@include theme.max-width;
}
}

.trademarkDisclaimerCard {
margin-top: theme.spacing(6);
width: 100%;

@include theme.max-width;

.trademarkDisclaimerContent {
padding: theme.spacing(4);
display: flex;
flex-flow: column nowrap;
gap: theme.spacing(4);
color: theme.color("foreground");
font-size: theme.font-size("sm");
}
}
}
29 changes: 29 additions & 0 deletions apps/insights/src/components/PriceFeeds/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,35 @@ export const PriceFeeds = async () => {
/>
</UnstyledTabPanel>
</UnstyledTabs>
<Card
className={styles.trademarkDisclaimerCard}
title="Trademark Disclaimer"
>
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This does not look good as a card, so let's remove the Card component wrapping this.

Instead, please add a header that says "Trademark Disclaimer" inside the div with the trademarkDisclaimerContent class. Give the header text a bit larger size, and some space between it and the paragraph.

<div className={styles.trademarkDisclaimerContent}>
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please rename this class to trademarkDisclaimer

<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, &quot;Association&quot;) 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>
</Card>
</div>
);
};
Expand Down
6 changes: 6 additions & 0 deletions apps/insights/src/components/Root/footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,12 @@ export const Footer = () => (
<Link href="https://www.pyth.network/terms-of-use" target="_blank">
Terms of Use
</Link>
<Link
href="https://www.pyth.network/trademark-disclaimer"
target="_blank"
>
Trademark Disclaimer
</Link>
</div>
</div>
</footer>
Expand Down
Loading