From 366adcae8671818d38a661bb10c76e574414b676 Mon Sep 17 00:00:00 2001 From: crstnmac Date: Sat, 22 Jul 2023 13:21:27 +0530 Subject: [PATCH] feat(app): :sparkles: add privacy policy page --- app/(pages)/privacy/page.tsx | 48 +++++++++++++++++++++++++++++++++ app/(pages)/privacy/privacy.tsx | 11 ++++++++ 2 files changed, 59 insertions(+) create mode 100644 app/(pages)/privacy/page.tsx create mode 100644 app/(pages)/privacy/privacy.tsx diff --git a/app/(pages)/privacy/page.tsx b/app/(pages)/privacy/page.tsx new file mode 100644 index 0000000..6c67739 --- /dev/null +++ b/app/(pages)/privacy/page.tsx @@ -0,0 +1,48 @@ +import {Box} from 'components' + +export default function PrivacyPage() { + return ( + +

Privacy Policy

+

+ Your privacy is important to us. It is the policy of this website to + respect your privacy regarding any information we may collect from you + across our apps, and other sites we own and operate. +

+

+ We only ask for personal information when we truly need it to provide a + service to you. We collect it by fair and lawful means, with your + knowledge and consent. We also let you know why we’re collecting it and + how it will be used. +

+

+ We only retain collected information for as long as necessary to provide + you with your requested service. What data we store, we’ll protect + within commercially acceptable means to prevent loss and theft, as well + as unauthorized access, disclosure, copying, use or modification. +

+

+ We don’t share any personally identifying information publicly or with + third-parties, except when required to by law. +

+

+ Our website may link to external sites that are not operated by us. + Please be aware that we have no control over the content and practices + of these sites, and cannot accept responsibility or liability for their + respective privacy policies. +

+

+ You are free to refuse our request for your personal information, with + the understanding that we may be unable to provide you with some of your + desired services. +

+

+ Your continued use of our website will be regarded as acceptance of our + practices around privacy and personal information. If you have any + questions about how we handle user data and personal information, feel + free to contact us. +

+

This policy is effective as of 1 July 2023.

+
+ ) +} diff --git a/app/(pages)/privacy/privacy.tsx b/app/(pages)/privacy/privacy.tsx new file mode 100644 index 0000000..34d728f --- /dev/null +++ b/app/(pages)/privacy/privacy.tsx @@ -0,0 +1,11 @@ +import {PageMeta} from 'components' + +export default function InfoHead() { + return ( + + ) +}