diff --git a/src/pages/ebooks/index.css b/src/pages/ebooks/index.css index b2518770..294853a5 100644 --- a/src/pages/ebooks/index.css +++ b/src/pages/ebooks/index.css @@ -61,14 +61,14 @@ border-radius: 12px; border: 1px solid var(--ifm-toc-border-color); font-size: 1rem; + color: var(--ifm-font-color-base); background-color: var(--ifm-background-color); - color: var(--ifm-color-gray-900); box-shadow: var(--ifm-global-shadow-lw); transition: all 0.25s ease; } .ebook-search-wrapper input.ebook-search::placeholder { - color: var(--ifm-color-gray-700); + color: var(--ifm-color-muted); opacity: 0.6; } diff --git a/src/pages/terms-service/index.tsx b/src/pages/terms-service/index.tsx index 8b54f57d..f6f979bd 100644 --- a/src/pages/terms-service/index.tsx +++ b/src/pages/terms-service/index.tsx @@ -1,82 +1,91 @@ -import React from "react"; +import React, { useState } from "react"; import Layout from "@theme/Layout"; +interface SectionProps { + id: string; + title: string; + children: React.ReactNode; +} + +const Section: React.FC = ({ id, title, children }) => { + const [open, setOpen] = useState(true); + return ( +
+ + {open &&
{children}
} +
+ ); +}; + const TermsOfService: React.FC = () => { return ( -
-

- Terms of Service -

-

- These Terms of Service govern your use of{" "} - recodehive, provided by{" "} - Sanjay Viswanathan. - Below are the Terms and Conditions for the use of www.recodehive.com. - Please read these carefully. If you need to contact us regarding any - aspect of the following terms of use of our website, please reach out - us at the following email address – sanjay@recodehive.com. -

-

Acceptance of Terms

+
+

Terms of Service

- By accessing or using the Service, you acknowledge that you have read, - understood, and agree to be bound by these Terms, as well as any - additional terms and conditions, policies, and guidelines provided by - us. If you do not agree to these Terms, please refrain from using the - Service. + Welcome to RecodeHive, operated by Sanjay Viswanathan. + These Terms of Service govern your use of www.recodehive.com. Please read + carefully. If you have any questions, contact us at{" "} + + sanjay@recodehive.com + .

-

Use of the Service

-
    -
  1. - Usage Instructions: You agree not to use the - website in a way that may impair the performance, corrupt or - manipulate the content or information available on the website or - reduce the overall functionality of the website. -
  2. -
  3. - License: We grant you a limited, non-exclusive, - non-transferable, and revocable license to access and use the - Service for your personal or internal business purposes. This - license does not permit any resale or commercial use of the Service. -
  4. -
  5. - User Conduct: You agree not to compromise the - security of the website or attempt to gain access to secured areas - of the website or attempt to access any sensitive information you - may believe exist on the website or server where it is hosted. -
  6. -
-

Content

-
    -
  1. - User Content: You retain ownership of any content - you submit or upload to the Service ("User Content"). By - submitting User Content, you grant us a worldwide, royalty-free, and - non-exclusive license to use, reproduce, modify, adapt, publish, - translate, distribute, and display such User Content. -
  2. -
  3. - Intellectual Property: All content, trademarks, - service marks, logos, and other intellectual property displayed on - or related to the Service are the property of{" "} - Sanjay Viswanathan{" "} - or its licensors. You may not use or display any of these without - our prior written consent. -
  4. -
  5. - Compensation: You agree to be fully responsible for - any claim, expense, losses, liability, costs including legal fees - incurred by us arising from any infringement of the terms and - conditions of this agreement and to which you will have agreed if - you continue to use the website. -
  6. -
-

Privacy

-

- Your privacy is important to us. Please review our{" "} + +

+ By accessing or using RecodeHive, you agree to comply with these Terms + and any other guidelines provided by us. If you do not agree, please + refrain from using the Service. +
+ +
+
    +
  1. + Usage Instructions: Do not use the website in any way + that could impair its performance, corrupt content, or reduce overall functionality. +
  2. +
  3. + License: We grant a limited, non-exclusive, non-transferable, + revocable license for personal or internal business use only. Commercial use + is prohibited without prior consent. +
  4. +
  5. + User Conduct: Do not compromise website security, + attempt unauthorized access, or access sensitive information you are + not permitted to view. +
  6. +
+
+ +
+
    +
  1. + User Content: You retain ownership of content you + submit. By submitting, you grant RecodeHive a worldwide, royalty-free, + non-exclusive license to use, reproduce, modify, distribute, and display it. +
  2. +
  3. + Intellectual Property: All trademarks, logos, and other + intellectual property remain the property of Sanjay Viswanathan or its licensors. + Usage requires prior written consent. +
  4. +
  5. + Compensation: You are responsible for any claims, expenses, + or legal fees arising from violations of these Terms. +
  6. +
+
+ +
+ Please review our{" "} { > Privacy Policy {" "} - to understand how we collect, use, and disclose your personal - information. -

-

Termination

-

- We reserve the right to suspend or terminate your access to the - Service at any time, with or without cause, and without notice or - liability. -

+ to understand how your personal information is collected and used. +
-

Governing Law

-

- These Terms shall be governed by and construed per the laws of India, - without regard to its conflict of law principles. -

-

Changes to the Terms

-

- Though we strive to be entirely accurate in the information that is - presented on our site and attempt to keep it as up to date as - possible, in some cases, some of the information you find on the - website may be slightly outdated. www.recodehive.com reserves the - right to make any modifications or corrections to the information you - find on the site at any time without notice. -

-

Contact Us

-

- If you have any questions about these Terms, please contact us at{" "} - +

+ We reserve the right to suspend or terminate access to the Service at any time, + with or without cause, and without prior notice or liability. +
+ +
+ These Terms are governed by the laws of India, without regard to conflicts of law. +
+ +
+ RecodeHive may update or modify these Terms at any time. Continued use of the + Service constitutes acceptance of the updated Terms. Users are responsible for + reviewing changes regularly. +
+ +
+ If you have any questions regarding these Terms, contact us at{" "} + sanjay@recodehive.com - - . -

+ . +
);