diff --git a/bun.lockb b/bun.lockb new file mode 100755 index 0000000..6839b4d Binary files /dev/null and b/bun.lockb differ diff --git a/pages/privacy.jsx b/pages/privacy.jsx index 59307c8..260f7db 100644 --- a/pages/privacy.jsx +++ b/pages/privacy.jsx @@ -1,25 +1,62 @@ -import React from 'react'; +import React from "react"; +import MainLayout from "../layouts/main-layout"; const PrivacyPolicy = () => ( -
-

Privacy Policy

-

Effective Date: May 2024

-

Living Company values your privacy and is committed to protecting your personal information. This Privacy Policy outlines how we collect, use, and protect your data.

-

Information Collection

-

We may collect personal information such as your name, email address, and contact details when you interact with our website or services.

-

Use of Information

-

The information we collect is used solely to provide and improve our services, communicate with you, and enhance your experience with Living Company.

-

Data Protection

-

We implement appropriate security measures to protect your personal information from unauthorized access, alteration, or disclosure.

-

No Sale or Misuse of Data

-

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.

-

Contact Us

-

If you have any questions or concerns about our Privacy Policy, please contact us at contact@livingcompany.com.

-

Changes to Privacy Policy

-

We may update this Privacy Policy from time to time. Any changes will be posted on this page with an updated effective date.

-

By using our services, you agree to the terms of this Privacy Policy.

-

Living Company

-
+ +
+

Privacy Policy

+ +

+ Effective Date: May 2024 +

+

+ Living Company values your privacy and is committed to + protecting your personal information. This Privacy Policy outlines how + we collect, use, and protect your data. +

+ +

Information Collection

+

+ We may collect personal information such as your name, email address, + and contact details when you interact with our website or services. +

+

Use of Information

+

+ The information we collect is used solely to provide and improve our + services, communicate with you, and enhance your experience with Living + Company. +

+

Data Protection

+

+ We implement appropriate security measures to protect your personal + information from unauthorized access, alteration, or disclosure. +

+

No Sale or Misuse of Data

+

+ 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. +

+

Contact Us

+

+ If you have any questions or concerns about our Privacy Policy, please + contact us at{" "} + contact@livingcompany.com + . +

+

Changes to Privacy Policy

+

+ We may update this Privacy Policy from time to time. Any changes will be + posted on this page with an updated effective date. +

+

+ By using our services, you agree to the terms of this Privacy Policy. +

+

+ Living Company +

+
+
); -export default PrivacyPolicy +export default PrivacyPolicy; diff --git a/styles/pages/_pages.scss b/styles/pages/_pages.scss index 4a06a78..1652af5 100644 --- a/styles/pages/_pages.scss +++ b/styles/pages/_pages.scss @@ -1,2 +1,3 @@ -@import './home'; -@import './project'; +@import "./home"; +@import "./project"; +@import "./privacy"; diff --git a/styles/pages/_privacy.scss b/styles/pages/_privacy.scss new file mode 100644 index 0000000..62835b6 --- /dev/null +++ b/styles/pages/_privacy.scss @@ -0,0 +1,5 @@ +.PrivacyPage { + p { + margin-bottom: 1rem; + } +}