-
Notifications
You must be signed in to change notification settings - Fork 0
/
AppFooter.js
27 lines (26 loc) · 1.08 KB
/
AppFooter.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import React, { Component } from 'react';
import CookieConsent from "react-cookie-consent";
export class AppFooter extends Component {
render() {
return (
<div className="layout-footer">
<CookieConsent
location="bottom"
buttonText="I Accept"
cookieName="etherchestGDRPaccept"
style={{ background: "#2B373B" }}
buttonStyle={{ color: "#4e503b", fontSize: "13px" }}
expires={150}
>
<span style={{ fontSize: "10px" }}>
This website uses cookies to enhance the user experience.{" "}
<br/>
Your private, active and owner keys are NOT being stored Private posting and memo
keys are being cached (encrypted) and they are only readable from the
client (your browser) on this site.
</span>
</CookieConsent>
</div>
);
}
}