Skip to content

Commit 1c753b1

Browse files
feat: new TOS + PP
1 parent 6b44f62 commit 1c753b1

File tree

3 files changed

+13
-12
lines changed

3 files changed

+13
-12
lines changed

public/legal/PP.pdf

103 KB
Binary file not shown.

public/legal/ToS.pdf

157 KB
Binary file not shown.

src/components/Footer/Footer.tsx

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,10 @@ import styles from "./Footer.module.css";
33
import Image from "next/image";
44
import { useState, useEffect } from "react";
55
import { GoogleAnalytics } from "../GoogleAnalytics/GoogleAnalytics";
6-
import packageInfo from "../../../package.json";
76

87
const Footer = () => {
98
// Use the environment variable set at build time from next.config.mjs
109
const gitHash = process.env.NEXT_PUBLIC_GIT_HASH || "unknown";
11-
// get UI version from package.json
12-
const version = packageInfo.version;
1310
// State to control the analytics visibility
1411
const [showAnalytics, setShowAnalytics] = useState(false);
1512

@@ -54,24 +51,28 @@ const Footer = () => {
5451
>
5552
Feedback
5653
</a>
57-
<p
58-
className={styles.manageAnalytics}
59-
onClick={handleManageAnalytics}
60-
style={{ cursor: "pointer" }}
61-
>
62-
Analytics
63-
</p>
64-
6554
<a
6655
href="https://liquidops.arweave.net"
6756
className={styles.support}
6857
target="_blank"
6958
>
7059
Permasite
7160
</a>
61+
<p
62+
className={styles.manageAnalytics}
63+
onClick={handleManageAnalytics}
64+
style={{ cursor: "pointer" }}
65+
>
66+
Analytics
67+
</p>
7268

7369
<div className={styles.version}>
74-
<p>v{version}</p>
70+
<a href="/legal/ToS.pdf" className={styles.support} target="_blank">
71+
Terms
72+
</a>
73+
<a href="/legal/PP.pdf" className={styles.support} target="_blank">
74+
Privacy
75+
</a>
7576
<a
7677
href={`https://github.com/useLiquidOps/main-interface/commit/${gitHash}`}
7778
target="_blank"

0 commit comments

Comments
 (0)