Skip to content

Commit

Permalink
feat(app): ✨ add privacy policy page
Browse files Browse the repository at this point in the history
  • Loading branch information
crstnmac committed Jul 22, 2023
1 parent ffe3915 commit 366adca
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 0 deletions.
48 changes: 48 additions & 0 deletions app/(pages)/privacy/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
import {Box} from 'components'

export default function PrivacyPage() {
return (
<Box as="section" className=" w-full">
<h1>Privacy Policy</h1>
<p>
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.
</p>
<p>
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.
</p>
<p>
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.
</p>
<p>
We don’t share any personally identifying information publicly or with
third-parties, except when required to by law.
</p>
<p>
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.
</p>
<p>
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.
</p>
<p>
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.
</p>
<p>This policy is effective as of 1 July 2023.</p>
</Box>
)
}
11 changes: 11 additions & 0 deletions app/(pages)/privacy/privacy.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import {PageMeta} from 'components'

export default function InfoHead() {
return (
<PageMeta
title="Privacy Policy"
description="Details about the privacy policy"
slug="/privacy"
/>
)
}

1 comment on commit 366adca

@vercel
Copy link

@vercel vercel bot commented on 366adca Jul 22, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

crstnmac-github-io – ./

crstnmac-github-io-criston.vercel.app
crstnmac-github-io.vercel.app
crstnmac-github-io-git-main-criston.vercel.app

Please sign in to comment.