|
| 1 | +import React from 'react'; |
| 2 | +import Footer from '@/components/Global/Footer'; |
| 3 | + |
| 4 | +const CookiePolicyPage: React.FC = () => { |
| 5 | + return ( |
| 6 | + <div className='flex flex-col items-center overflow-scroll overflow-x-hidden bg-gradient-to-br from-accent2/40 to-accent/40 dark:from-accent3/30 dark:to-accent4/30'> |
| 7 | + <div className='flex flex-col items-center justify-center space-y-15 p-2 lg:p-5 xl:p-12'> |
| 8 | + <div className='py-24 sm:py-32'> |
| 9 | + <div className='mx-auto max-w-4xl px-4 text-center sm:px-6'> |
| 10 | + <h2 className='text-base font-semibold leading-7 text-accent'>Cookie Policy</h2> |
| 11 | + <p className='mt-2 text-4xl font-bold tracking-tight text-dark-800 dark:text-light-300'> |
| 12 | + Our Use of Cookies |
| 13 | + </p> |
| 14 | + </div> |
| 15 | + <div className='mx-auto mt-12 max-w-3xl px-4 sm:px-6'> |
| 16 | + <div className='rounded-lg bg-light-400/30 p-8 shadow-lg shadow-dark-900/30 ring-1 ring-accent2/80 drop-shadow-md dark:bg-dark-700/50 dark:ring-accent/80'> |
| 17 | + <p className='mb-4 text-dark-600 dark:text-light-400'> |
| 18 | + This Cookie Policy explains how PDF Chatter (&dquo;we&dquo;, &dquo;us&dquo;, and |
| 19 | + &dquo;our&dquo;) uses cookies and similar technologies to recognize you when you |
| 20 | + visit our website. It explains what these technologies are and why we use them, as |
| 21 | + well as your rights to control our use of them. |
| 22 | + </p> |
| 23 | + <h3 className='mb-2 text-xl font-semibold text-dark-800 dark:text-light-300'> |
| 24 | + What are cookies? |
| 25 | + </h3> |
| 26 | + <p className='mb-4 text-dark-600 dark:text-light-400'> |
| 27 | + Cookies are small data files that are placed on your computer or mobile device when |
| 28 | + you visit a website. Cookies are widely used by website owners in order to make |
| 29 | + their websites work, or to work more efficiently, as well as to provide reporting |
| 30 | + information. |
| 31 | + </p> |
| 32 | + <h3 className='mb-2 text-xl font-semibold text-dark-800 dark:text-light-300'> |
| 33 | + How do we use cookies? |
| 34 | + </h3> |
| 35 | + <p className='mb-4 text-dark-600 dark:text-light-400'> |
| 36 | + We use cookies for several reasons. Some cookies are required for technical reasons |
| 37 | + in order for our website to operate, and we refer to these as &dquo;essential&dquo; |
| 38 | + or &dquo;strictly necessary&dquo; cookies. Other cookies also enable us to track |
| 39 | + and target the interests of our users to enhance the experience on our website. |
| 40 | + Third parties serve cookies through our website for advertising, analytics and |
| 41 | + other purposes. |
| 42 | + </p> |
| 43 | + {/* Add more sections as needed */} |
| 44 | + </div> |
| 45 | + </div> |
| 46 | + </div> |
| 47 | + </div> |
| 48 | + <Footer /> |
| 49 | + </div> |
| 50 | + ); |
| 51 | +}; |
| 52 | + |
| 53 | +export default CookiePolicyPage; |
0 commit comments