diff --git a/app/(full-page)/page.tsx b/app/(full-page)/page.tsx index 366e3d2..a4277f8 100644 --- a/app/(full-page)/page.tsx +++ b/app/(full-page)/page.tsx @@ -10,10 +10,13 @@ import { Divider } from 'primereact/divider'; import { LayoutContext } from '../../layout/context/layoutcontext'; import { NodeRef } from '@/types'; import { classNames } from 'primereact/utils'; +import { Dialog } from 'primereact/dialog'; const LandingPage = () => { const [isHidden, setIsHidden] = useState(false); const { layoutConfig } = useContext(LayoutContext); + const [showSignIn, setShowSignIn] = useState(false); + const menuRef = useRef(null); const toggleMenuItemClick = () => { @@ -59,12 +62,31 @@ const LandingPage = () => {
- +
- +
+ {if(!showSignIn) return; setShowSignIn(false)}} style={{ width: '30rem' }}> +

+ Sign in / Sign up. +

+ +
+ +
+
+
+ +
+
+
{ + return ( +
+
+
+
Privacy Policy
+

Effective Date: 1 October 2024

+ +

Introduction

+ + This Privacy Policy describes how Quemistry ("we," "us," or "our") collects, uses, and discloses your personal information when you use our website (the "Service") + and the choices you have associated with that data. +

+

Information We Collect
+

+ We collect several different types of information for various purposes to improve our Service to you. +

+

Personal Information:

+ When you create an account on our Service, you may provide us with certain personally identifiable information that can be used to contact or identify you ("Personal Information"). This may include, but is not limited to: +
    +
  • + Email address +
  • +
  • + Username/Alias (chosen by you) +
  • +
  • + Profile picture (optional) +
  • +
  • + Bio (optional) +
  • +
+ +

Usage Data:
+

+ We may also collect information about how you access and use the Service ("Usage Data"). This Usage Data may include: +
    +
  • Location information (general, not precise)
  • +
  • IP address
  • +
  • Browser type and version
  • +
  • Operating system
  • +
  • Referring / exit pages
  • +
  • Dates and times you visited the site
  • +
  • Pages you viewed on our Service
  • +
  • Search terms you used on the Service
  • +
+

How We Collect Your Information

+ + We collect information through several methods: +
    +
  1. When you provide it to us directly:
    You may directly provide Personal Information and other data when you create an account, fill out a profile, or otherwise interact with our Service. + Automatically collected data: We use cookies and similar tracking technologies to collect Usage Data about your activity on the Service.
  2. +
  3. Cookies and Tracking Technologies:
    We use cookies and similar tracking technologies to track the activity on our Service and hold certain information. +
    Cookies are files with small amounts of data which may include an anonymous unique identifier. Cookies are sent to your browser from a website and stored on your device. Examples of Cookies we use: +
      +
    • Session Cookies: These cookies are used to track your activity on our Service and expire when you close your browser.
    • +
    • Preference Cookies: These cookies are used to remember your preferences such as language and other settings.
    • +
    + You can instruct your browser to refuse all cookies or to indicate when a cookie is being sent. However, if you do not accept cookies, you may not be able to use some portions of our Service. +
  4. +
+

Use of Your Information

+ + We use the information we collect for various purposes: +
    +
  • To provide and maintain our Service
  • +
  • To create and manage your account
  • +
  • To personalize your experience on the Service
  • +
  • To improve our Service
  • +
  • To respond to your inquiries and requests
  • +
  • To respond to your inquiries and requests
  • +
+

Disclosure of Your Information

+ We may disclose your information to third parties for the following reasons: +
    +
  • To comply with a court order, legal obligation, or government request.
  • +
  • To enforce our policies or protect the rights of others.
  • +
+

+ Data Retention + +

+ We will retain your Personal Information for as long as necessary to fulfill the purposes outlined in this Privacy Policy. We may also retain Usage Data for internal analysis purposes. +

+

+ Your Rights +

+ Depending on your location, you may have certain rights regarding your Personal Information. These rights may include: +
    +
  • The right to access your Personal Information
  • +
  • The right to rectify inaccurate Personal Information
  • +
  • The right to request the deletion of your Personal Information
  • +
  • The right to object to the processing of your Personal Information
  • +
+ +

+ Children's Privacy +
+ Our Service does not address anyone under the age of 13. We do not knowingly collect Personal Information from children under 13. If you are a parent or guardian and you are aware that your child has provided us with Personal Information, please contact us. If we become aware that we have collected Personal Information from a child under 13, we will take steps to remove that information from our servers. +

+

+ Changes to This Privacy Policy +
+ We may update our Privacy Policy from time to time. We will notify you of any changes by posting the new Privacy Policy on this page. +

+

+ Contact Us +
+ If you have any questions about this Privacy Policy, please contact us by email: quemistrymtech@gmail.com +

+ +
+
+
+ ); +}; + +export default PrivacyPage;