Skip to content

Commit 5b43824

Browse files
committed
UDS-1941: Cookie Consent Opt Out in Footer
1 parent d839ec8 commit 5b43824

File tree

2 files changed

+150
-98
lines changed

2 files changed

+150
-98
lines changed

packages/component-header-footer/src/footer/components/Legal/index.js

Lines changed: 15 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -55,40 +55,46 @@ const Legal = () => {
5555
</a>
5656
<a
5757
className="nav-link"
58-
href={LEGAL_URLS.PRIVACY}
58+
href={LEGAL_URLS.TERMS_OF_USE}
5959
onFocus={() =>
6060
trackGAEvent({
6161
...DEFAULT_GA_EVENT,
62-
text: "privacy",
62+
text: "terms of use",
6363
})
6464
}
6565
>
66-
Privacy
66+
Terms of Use
6767
</a>
6868
<a
6969
className="nav-link"
70-
href={LEGAL_URLS.TERMS_OF_USE}
70+
href={LEGAL_URLS.EMERGENCY}
7171
onFocus={() =>
7272
trackGAEvent({
7373
...DEFAULT_GA_EVENT,
74-
text: "terms of use",
74+
text: "emergency",
7575
})
7676
}
7777
>
78-
Terms of Use
78+
Emergency
7979
</a>
8080
<a
8181
className="nav-link"
82-
href={LEGAL_URLS.EMERGENCY}
82+
href={LEGAL_URLS.PRIVACY}
8383
onFocus={() =>
8484
trackGAEvent({
8585
...DEFAULT_GA_EVENT,
86-
text: "emergency",
86+
text: "privacy",
8787
})
8888
}
8989
>
90-
Emergency
90+
Privacy
9191
</a>
92+
<button
93+
id="manualConsentoptout"
94+
className="nav-link text-gray-5 text-align-right"
95+
>
96+
Manage my privacy settings
97+
</button>
9298
</nav>
9399
</div>
94100
</div>

0 commit comments

Comments
 (0)