Skip to content

Commit 4ab8195

Browse files
authored
Merge pull request #2451 from pyth-network/devin/1741291580-add-trademark-disclaimer
feat: add trademark disclaimer link to footer and disclaimer card to price feeds page
2 parents fe9aa56 + 1b38c59 commit 4ab8195

File tree

3 files changed

+52
-0
lines changed

3 files changed

+52
-0
lines changed

apps/insights/src/components/PriceFeeds/index.module.scss

+20
Original file line numberDiff line numberDiff line change
@@ -86,4 +86,24 @@
8686
@include theme.max-width;
8787
}
8888
}
89+
90+
.trademarkDisclaimer {
91+
margin-top: theme.spacing(6);
92+
width: 100%;
93+
padding: theme.spacing(4);
94+
display: flex;
95+
flex-flow: column nowrap;
96+
gap: theme.spacing(4);
97+
color: theme.color("foreground");
98+
font-size: theme.font-size("sm");
99+
100+
@include theme.max-width;
101+
102+
.trademarkDisclaimerHeader {
103+
@include theme.text("lg", "medium");
104+
105+
color: theme.color("heading");
106+
margin-bottom: theme.spacing(2);
107+
}
108+
}
89109
}

apps/insights/src/components/PriceFeeds/index.tsx

+26
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,32 @@ export const PriceFeeds = async () => {
124124
/>
125125
</UnstyledTabPanel>
126126
</UnstyledTabs>
127+
<div className={styles.trademarkDisclaimer}>
128+
<h3 className={styles.trademarkDisclaimerHeader}>
129+
Trademark Disclaimer
130+
</h3>
131+
<p>
132+
This website may display ticker symbols, product names, and other
133+
identifiers that are trademarks, service marks or trade names of third
134+
parties. Such display is for informational purposes only and does not
135+
constitute any claim of ownership thereof by Pyth Data Association or
136+
any of its subsidiaries and other affiliates (collectively,
137+
&quot;Association&quot;) or any sponsorship or endorsement by
138+
Association of any associated products or services, and should not be
139+
construed as indicating any affiliation, sponsorship or other
140+
connection between Association and the third-party owners of such
141+
identifiers. Any such third-party identifiers associated with
142+
financial data are made solely to identify the relevant financial
143+
products for which price data is made available via the website. All
144+
trademarks, service marks, logos, product names, trade names and
145+
company names mentioned on the website are the property of their
146+
respective owners and are protected by trademark and other
147+
intellectual property laws. Association makes no representations or
148+
warranties with respect to any such identifiers or any data or other
149+
information associated therewith and reserves the right to modify or
150+
remove any such displays at its discretion.
151+
</p>
152+
</div>
127153
</div>
128154
);
129155
};

apps/insights/src/components/Root/footer.tsx

+6
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,12 @@ export const Footer = () => (
4747
<Link href="https://www.pyth.network/terms-of-use" target="_blank">
4848
Terms of Use
4949
</Link>
50+
<Link
51+
href="https://www.pyth.network/trademark-disclaimer"
52+
target="_blank"
53+
>
54+
Trademark Disclaimer
55+
</Link>
5056
</div>
5157
</div>
5258
</footer>

0 commit comments

Comments
 (0)