From 8c5643d68c7b563cadb0b46ce31d13edf025b3b0 Mon Sep 17 00:00:00 2001 From: LMacPhail Date: Wed, 31 Jan 2024 20:06:04 +0000 Subject: [PATCH] Add privacy policy --- src/components/auth/Auth.tsx | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/components/auth/Auth.tsx b/src/components/auth/Auth.tsx index e9bf73d..09aad15 100644 --- a/src/components/auth/Auth.tsx +++ b/src/components/auth/Auth.tsx @@ -1,6 +1,7 @@ import { useState } from "react"; import { supabase } from "../../supabaseClient"; import { MODAL_DISMISSED_KEY } from "../../state/store"; +import Link from "../atoms/Link"; export default function Auth() { const [loading, setLoading] = useState(false); @@ -32,7 +33,7 @@ export default function Auth() {

Could you help us by signing up?

-
+
@@ -52,6 +53,12 @@ export default function Auth() { {loading ? Loading : Sign Up}
+

+ You can see how we handle user data in{" "} + + our privacy policy. + +

);