File tree Expand file tree Collapse file tree 2 files changed +43
-0
lines changed
src/components/embed/ui/templates/wander-footer Expand file tree Collapse file tree 2 files changed +43
-0
lines changed Original file line number Diff line number Diff line change 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 ;
Original file line number Diff line number Diff 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 } > ·</ 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}
You can’t perform that action at this time.
0 commit comments