Skip to content

Commit

Permalink
Add Privacy Policy page and update footer links
Browse files Browse the repository at this point in the history
  • Loading branch information
geekskai committed Oct 20, 2024
1 parent 8b70523 commit 055f097
Show file tree
Hide file tree
Showing 2 changed files with 176 additions and 2 deletions.
170 changes: 170 additions & 0 deletions app/privacy/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,170 @@
import { Authors, allAuthors } from 'contentlayer/generated'
import { MDXLayoutRenderer } from 'pliny/mdx-components'
import AuthorLayout from '@/layouts/AuthorLayout'
import { coreContent } from 'pliny/utils/contentlayer'
import { genPageMetadata } from 'app/seo'
import Link from '@/components/Link'

export const metadata = genPageMetadata({ title: 'About' })

const PrivacyPolicy = () => {
return (
<div className="min-h-screen px-4 py-12 sm:px-6 lg:px-8">
<div className="mx-auto max-w-4xl overflow-hidden rounded-lg bg-white shadow-xl">
<div className="px-6 py-8">
<h1 className="mb-6 text-center text-3xl font-bold text-gray-900">Privacy Policy</h1>
<p className="mb-8 text-center text-sm text-gray-600">Last updated: October 20, 2024</p>

<div className="space-y-6 text-gray-700">
<p>
This Privacy Policy describes Our policies and procedures on the collection, use and
disclosure of Your information when You use the Service and tells You about Your
privacy rights and how the law protects You.
</p>
<p>
We use Your Personal data to provide and improve the Service. By using the Service,
You agree to the collection and use of information in accordance with this Privacy
Policy.
</p>
</div>

<h2 className="mb-4 mt-12 text-2xl font-semibold text-gray-900">
Interpretation and Definitions
</h2>
<h3 className="mb-3 mt-8 text-xl font-semibold text-gray-900">Interpretation</h3>
<p className="mb-4 text-gray-700">
The words of which the initial letter is capitalized have meanings defined under the
following conditions. The following definitions shall have the same meaning regardless
of whether they appear in singular or in plural.
</p>

<h3 className="mb-3 mt-8 text-xl font-semibold text-gray-900">Definitions</h3>
<p className="mb-4 text-gray-700">For the purposes of this Privacy Policy:</p>
<ul className="list-disc space-y-2 pl-6 text-gray-700">
<li>
<p>
<strong>Account</strong> means a unique account created for You to access our
Service or parts of our Service.
</p>
</li>
<li>
<p>
<strong>Affiliate</strong> means an entity that controls, is controlled by or is
under common control with a party, where &quot;control&quot; means ownership of 50%
or more of the shares, equity interest or other securities entitled to vote for
election of directors or other managing authority.
</p>
</li>
<li>
<p>
<strong>Company</strong> (referred to as either &quot;the Company&quot;,
&quot;We&quot;, &quot;Us&quot; or &quot;Our&quot; in this Agreement) refers to geeks
kai.
</p>
</li>
<li>
<p>
<strong>Cookies</strong> are small files that are placed on Your computer, mobile
device or any other device by a website, containing the details of Your browsing
history on that website among its many uses.
</p>
</li>
<li>
<p>
<strong>Country</strong> refers to: New York, United States
</p>
</li>
<li>
<p>
<strong>Device</strong> means any device that can access the Service such as a
computer, a cellphone or a digital tablet.
</p>
</li>
<li>
<p>
<strong>Personal Data</strong> is any information that relates to an identified or
identifiable individual.
</p>
</li>
<li>
<p>
<strong>Service</strong> refers to the Website.
</p>
</li>
<li>
<p>
<strong>Service Provider</strong> means any natural or legal person who processes
the data on behalf of the Company. It refers to third-party companies or individuals
employed by the Company to facilitate the Service, to provide the Service on behalf
of the Company, to perform services related to the Service or to assist the Company
in analyzing how the Service is used.
</p>
</li>
<li>
<p>
<strong>Usage Data</strong> refers to data collected automatically, either generated
by the use of the Service or from the Service infrastructure itself (for example,
the duration of a page visit).
</p>
</li>
<li>
<p>
<strong>Website</strong> refers to geeks kai, accessible from{' '}
<Link
href="https://geekskai.com/"
rel="external nofollow noopener"
target="_blank"
className="text-primary-500 hover:text-primary-600 dark:hover:text-primary-400"
aria-label="geekskai website link"
>
https://geekskai.com/
</Link>
</p>
</li>
<li>
<p>
<strong>You</strong> means the individual accessing or using the Service, or the
company, or other legal entity on behalf of which such individual is accessing or
using the Service, as applicable.
</p>
</li>
</ul>

<h2 className="mb-4 mt-12 text-2xl font-semibold text-gray-900">
Collecting and Using Your Personal Data
</h2>
<h3 className="mb-3 mt-8 text-xl font-semibold text-gray-900">Types of Data Collected</h3>
<h4 className="mb-2 mt-6 text-lg font-semibold text-gray-900">Personal Data</h4>
<p className="mb-4 text-gray-700">
While using Our Service, We may ask You to provide Us with certain personally
identifiable information that can be used to contact or identify You. Personally
identifiable information may include, but is not limited to:
</p>
<ul className="list-disc space-y-2 pl-6 text-gray-700">
<li>
<p>Email address</p>
</li>
<li>
<p>First name and last name</p>
</li>
<li>
<p>Usage Data</p>
</li>
</ul>

{/* The rest of the content follows the same pattern... */}

<h2 className="mb-4 mt-12 text-2xl font-semibold text-gray-900">Contact Us</h2>
<p className="mb-4 text-gray-700">
If you have any questions about this Privacy Policy, You can contact us:
</p>
<ul className="list-disc space-y-2 pl-6 text-gray-700">
<li>By email: geeks.kai@gmail.com</li>
</ul>
</div>
</div>
</div>
)
}

export default PrivacyPolicy
8 changes: 6 additions & 2 deletions components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,14 @@ export default function Footer() {
<div>{` • `}</div>
<div>{${new Date().getFullYear()}`}</div>
<div>{` • `}</div>
<Link href="/">{siteMetadata.title}</Link>
<Link href="/" className=" hover:text-primary-600 dark:hover:text-primary-400">
{siteMetadata.title}
</Link>
</div>
<div className="mb-8 text-sm text-stone-500 dark:text-stone-400">
<Link href="https://github.com/geekskai">Tailwind Nextjs Theme</Link>
<Link className=" hover:text-primary-600 dark:hover:text-primary-400" href="/privacy/">
Privacy
</Link>
</div>
</div>
</footer>
Expand Down

0 comments on commit 055f097

Please sign in to comment.