From 7d196b1adacb2143e4fb4f7451c79333d70533de Mon Sep 17 00:00:00 2001 From: regalijan Date: Thu, 19 Oct 2023 19:58:33 -0400 Subject: [PATCH] Add delete-account route --- app/routes/delete-account.tsx | 62 +++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 app/routes/delete-account.tsx diff --git a/app/routes/delete-account.tsx b/app/routes/delete-account.tsx new file mode 100644 index 0000000..cd8ece6 --- /dev/null +++ b/app/routes/delete-account.tsx @@ -0,0 +1,62 @@ +import { Container, Heading, Link, Text } from "@chakra-ui/react"; + +export default function () { + return ( + + Account and Data Privacy +
+
+ How can I delete my Car Crushers account? +
+ + You can't. We don't operate a formal account system so there is no + account to delete from our side. User information is tied to your active + session and is destroyed when that session is revoked. If you are trying + to delete your Discord account,{" "} + + click here + + . If you are trying to delete your Roblox account,{" "} + + click here + + . + +
+
+ How do I delete my data? +
+ + That depends on which data you wish to delete. Personal details such as + your email address are tied to your active session and are deleted when + you log out. Other information you may have given us, such as videos of + players you have reported and your submitted appeals, are subject to the + appropriate retention time (these can be found in our{" "} + + privacy policy + + and generally cannot be deleted barring extenuating circumstances. + +
+
+ + I have other questions about my data or privacy rights, who can I + contact? + +
+ + Please send an email to{" "} + + r@regalijan.com + {" "} + with details of your request. + +
+ ); +}