Skip to content

Commit

Permalink
Add privacy policy (#24)
Browse files Browse the repository at this point in the history
Co-authored-by: Luis Centeno <luis.centeno@saatvamattress.com>
  • Loading branch information
LuisHCK and luisjcenteno authored May 21, 2024
1 parent dfaf78b commit fda30f7
Show file tree
Hide file tree
Showing 4 changed files with 66 additions and 23 deletions.
Binary file added bun.lockb
Binary file not shown.
79 changes: 58 additions & 21 deletions pages/privacy.jsx
Original file line number Diff line number Diff line change
@@ -1,25 +1,62 @@
import React from 'react';
import React from "react";
import MainLayout from "../layouts/main-layout";

const PrivacyPolicy = () => (
<div>
<h1>Privacy Policy</h1>
<p><strong>Effective Date:</strong> May 2024</p>
<p><strong>Living Company</strong> values your privacy and is committed to protecting your personal information. This Privacy Policy outlines how we collect, use, and protect your data.</p>
<h2>Information Collection</h2>
<p>We may collect personal information such as your name, email address, and contact details when you interact with our website or services.</p>
<h2>Use of Information</h2>
<p>The information we collect is used solely to provide and improve our services, communicate with you, and enhance your experience with Living Company.</p>
<h2>Data Protection</h2>
<p>We implement appropriate security measures to protect your personal information from unauthorized access, alteration, or disclosure.</p>
<h2>No Sale or Misuse of Data</h2>
<p>Living Company will never sell, trade, or misuse your personal information. We are committed to maintaining your trust and ensuring your data is used only for legitimate business purposes.</p>
<h2>Contact Us</h2>
<p>If you have any questions or concerns about our Privacy Policy, please contact us at <a href="mailto:contact@livingcompany.com">contact@livingcompany.com</a>.</p>
<h2>Changes to Privacy Policy</h2>
<p>We may update this Privacy Policy from time to time. Any changes will be posted on this page with an updated effective date.</p>
<p>By using our services, you agree to the terms of this Privacy Policy.</p>
<p><strong>Living Company</strong></p>
</div>
<MainLayout className="PrivacyPage">
<article className="container mt-6">
<h1 className="title is-1">Privacy Policy</h1>

<p>
<strong>Effective Date:</strong> May 2024
</p>
<p>
<strong>Living Company</strong> values your privacy and is committed to
protecting your personal information. This Privacy Policy outlines how
we collect, use, and protect your data.
</p>

<h2 className="title is-4 mb-0">Information Collection</h2>
<p>
We may collect personal information such as your name, email address,
and contact details when you interact with our website or services.
</p>
<h2 className="title is-4 mb-0">Use of Information</h2>
<p>
The information we collect is used solely to provide and improve our
services, communicate with you, and enhance your experience with Living
Company.
</p>
<h2 className="title is-4 mb-0">Data Protection</h2>
<p>
We implement appropriate security measures to protect your personal
information from unauthorized access, alteration, or disclosure.
</p>
<h2 className="title is-4 mb-0">No Sale or Misuse of Data</h2>
<p>
Living Company will never sell, trade, or misuse your personal
information. We are committed to maintaining your trust and ensuring
your data is used only for legitimate business purposes.
</p>
<h2 className="title is-4 mb-0">Contact Us</h2>
<p>
If you have any questions or concerns about our Privacy Policy, please
contact us at{" "}
<a href="mailto:contact@livingcompany.com">contact@livingcompany.com</a>
.
</p>
<h2 className="title is-4 mb-0">Changes to Privacy Policy</h2>
<p>
We may update this Privacy Policy from time to time. Any changes will be
posted on this page with an updated effective date.
</p>
<p>
By using our services, you agree to the terms of this Privacy Policy.
</p>
<p>
<strong>Living Company</strong>
</p>
</article>
</MainLayout>
);

export default PrivacyPolicy
export default PrivacyPolicy;
5 changes: 3 additions & 2 deletions styles/pages/_pages.scss
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
@import './home';
@import './project';
@import "./home";
@import "./project";
@import "./privacy";
5 changes: 5 additions & 0 deletions styles/pages/_privacy.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.PrivacyPage {
p {
margin-bottom: 1rem;
}
}

0 comments on commit fda30f7

Please sign in to comment.