Skip to content

Commit fcf645b

Browse files
authored
Merge pull request #1118 from wanderwallet/development
Development
2 parents 28d3eeb + 22b486e commit fcf645b

File tree

2 files changed

+43
-0
lines changed

2 files changed

+43
-0
lines changed

src/components/embed/ui/templates/wander-footer/WanderFooter.module.scss

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,32 @@
1313
.attribution {
1414
}
1515

16+
.links {
17+
display: flex;
18+
justify-content: center;
19+
align-items: center;
20+
gap: var(--spacing-2);
21+
margin-top: var(--spacing-2);
22+
}
23+
24+
.separator {
25+
color: var(--color-text-footer);
26+
font-size: var(--font-size-xxs, 10px);
27+
opacity: 0.7;
28+
}
29+
30+
.link {
31+
color: var(--color-text-footer);
32+
text-decoration: none;
33+
font-size: var(--font-size-xxs, 10px);
34+
opacity: 0.7;
35+
36+
&:hover {
37+
opacity: 1;
38+
text-decoration: underline;
39+
}
40+
}
41+
1642
.banner {
1743
z-index: 100;
1844
pointer-events: all;

src/components/embed/ui/templates/wander-footer/WanderFooter.tsx

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,23 @@ export function WanderFooter() {
88
<div className={styles.attribution}>
99
Secured by <WanderIcon />
1010
</div>
11+
<div className={styles.links}>
12+
<a
13+
href="https://www.wander.app/legal/privacy-policy"
14+
target="_blank"
15+
rel="noopener noreferrer"
16+
className={styles.link}>
17+
Privacy Policy
18+
</a>
19+
<span className={styles.separator}>&middot;</span>
20+
<a
21+
href="https://www.wander.app/legal/terms-of-service"
22+
target="_blank"
23+
rel="noopener noreferrer"
24+
className={styles.link}>
25+
Terms of Service
26+
</a>
27+
</div>
1128
</footer>
1229
);
1330
}

0 commit comments

Comments
 (0)