diff --git a/v3/src/components/widgets/Announcement.astro b/v3/src/components/widgets/Announcement.astro index b86380c..82b6d61 100644 --- a/v3/src/components/widgets/Announcement.astro +++ b/v3/src/components/widgets/Announcement.astro @@ -12,12 +12,4 @@ RustDesk 1.3.1 is now available! » - - diff --git a/v3/src/components/widgets/Header.astro b/v3/src/components/widgets/Header.astro index 608e1b8..1bd51f6 100644 --- a/v3/src/components/widgets/Header.astro +++ b/v3/src/components/widgets/Header.astro @@ -30,6 +30,7 @@ export interface Props { showToggleTheme?: boolean; showRssFeed?: boolean; position?: string; + showGithubStar?: boolean; } const { @@ -41,6 +42,7 @@ const { isFullWidth = false, showToggleTheme = false, showRssFeed = false, + showGithubStar = false, position = 'center', } = Astro.props; @@ -146,6 +148,19 @@ const currentPath = `/${trimSlash(new URL(Astro.url).pathname)}`; ) } + { + showGithubStar && ( + + + + ) + } { actions?.length ? ( diff --git a/v3/src/layouts/LandingLayout.astro b/v3/src/layouts/LandingLayout.astro deleted file mode 100644 index 0554afa..0000000 --- a/v3/src/layouts/LandingLayout.astro +++ /dev/null @@ -1,35 +0,0 @@ ---- -import PageLayout from '~/layouts/PageLayout.astro'; -import Header from '~/components/widgets/Header.astro'; - -import { headerData } from '~/navigation'; -import type { MetaData } from '~/types'; - -export interface Props { - metadata?: MetaData; -} - -const { metadata } = Astro.props; ---- - - - - - - - -
- - - - diff --git a/v3/src/layouts/PageLayout.astro b/v3/src/layouts/PageLayout.astro index e3bc4da..aad475f 100644 --- a/v3/src/layouts/PageLayout.astro +++ b/v3/src/layouts/PageLayout.astro @@ -20,7 +20,7 @@ const { metadata } = Astro.props; -
+
diff --git a/v3/src/navigation.ts b/v3/src/navigation.ts index 20e98eb..7e5ef54 100644 --- a/v3/src/navigation.ts +++ b/v3/src/navigation.ts @@ -1,118 +1,43 @@ -import { getPermalink, getBlogPermalink, getAsset } from './utils/permalinks'; +import { getPermalink, getAsset } from './utils/permalinks'; export const headerData = { links: [ { - text: 'Homes', + text: 'Resources', links: [ - { - text: 'SaaS', - href: getPermalink('/homes/saas'), - }, - { - text: 'Startup', - href: getPermalink('/homes/startup'), - }, - { - text: 'Mobile App', - href: getPermalink('/homes/mobile-app'), - }, - { - text: 'Personal', - href: getPermalink('/homes/personal'), - }, - ], - }, - { - text: 'Pages', - links: [ - { - text: 'Features (Anchor Link)', - href: getPermalink('/#features'), - }, - { - text: 'Services', - href: getPermalink('/services'), - }, - { - text: 'Pricing', - href: getPermalink('/pricing'), - }, { text: 'About us', href: getPermalink('/about'), }, { - text: 'Contact', - href: getPermalink('/contact'), + text: 'Support', + href: getPermalink('/support'), }, { - text: 'Terms', - href: getPermalink('/terms'), + text: 'Web Client', + href: getPermalink('/web'), }, { - text: 'Privacy policy', - href: getPermalink('/privacy'), + text: 'Pro License Portal', + href: getPermalink('/self-host/account'), + }, + { + text: 'FAQ', + href: 'https://github.com/rustdesk/rustdesk/wiki/FAQ', }, ], }, { - text: 'Landing', - links: [ - { - text: 'Lead Generation', - href: getPermalink('/landing/lead-generation'), - }, - { - text: 'Long-form Sales', - href: getPermalink('/landing/sales'), - }, - { - text: 'Click-Through', - href: getPermalink('/landing/click-through'), - }, - { - text: 'Product Details (or Services)', - href: getPermalink('/landing/product'), - }, - { - text: 'Coming Soon or Pre-Launch', - href: getPermalink('/landing/pre-launch'), - }, - { - text: 'Subscription', - href: getPermalink('/landing/subscription'), - }, - ], + text: 'Pricing', + href: getPermalink('/pricing'), + }, + { + text: 'Docs', + href: getPermalink('/docs'), }, { text: 'Blog', - links: [ - { - text: 'Blog List', - href: getBlogPermalink(), - }, - { - text: 'Article', - href: getPermalink('get-started-website-with-astro-tailwind-css', 'post'), - }, - { - text: 'Article (with MDX)', - href: getPermalink('markdown-elements-demo-post', 'post'), - }, - { - text: 'Category Page', - href: getPermalink('tutorials', 'category'), - }, - { - text: 'Tag Page', - href: getPermalink('astro', 'tag'), - }, - ], - }, - { - text: 'Widgets', - href: '#', + href: getPermalink('/blog'), }, ], actions: [{ text: 'Download', href: 'https://github.com/onwidget/astrowind', target: '_blank' }], @@ -170,14 +95,13 @@ export const footerData = { { text: 'Privacy Policy', href: getPermalink('/privacy') }, ], socialLinks: [ - { ariaLabel: 'X', icon: 'tabler:brand-x', href: '#' }, - { ariaLabel: 'Instagram', icon: 'tabler:brand-instagram', href: '#' }, - { ariaLabel: 'Facebook', icon: 'tabler:brand-facebook', href: '#' }, + { ariaLabel: 'X', icon: 'tabler:brand-x', href: 'https://twitter.com/rustdesk' }, + { ariaLabel: 'Discord', icon: 'tabler:brand-discord', href: 'https://discord.com/invite/nDceKgxnkV' }, + { ariaLabel: 'Reddit', icon: 'tabler:brand-reddit', href: 'https://www.reddit.com/r/rustdesk/' }, { ariaLabel: 'RSS', icon: 'tabler:rss', href: getAsset('/rss.xml') }, - { ariaLabel: 'Github', icon: 'tabler:brand-github', href: 'https://github.com/onwidget/astrowind' }, + { ariaLabel: 'Github', icon: 'tabler:brand-github', href: 'https://github.com/rustdesk/rustdesk' }, ], footNote: ` - onWidget logo - Made by onWidget · All rights reserved. + © 2024 Purslane Ltd. All rights reserved. `, }; diff --git a/v3/src/pages/contact.astro b/v3/src/pages/contact.astro deleted file mode 100644 index 70157e0..0000000 --- a/v3/src/pages/contact.astro +++ /dev/null @@ -1,79 +0,0 @@ ---- -import Layout from '~/layouts/PageLayout.astro'; -import HeroText from '~/components/widgets/HeroText.astro'; -import ContactUs from '~/components/widgets/Contact.astro'; -import Features2 from '~/components/widgets/Features2.astro'; - -const metadata = { - title: 'Contact', -}; ---- - - - - - - - - - - - - diff --git a/v3/src/pages/homes/mobile-app.astro b/v3/src/pages/homes/mobile-app.astro deleted file mode 100644 index 4854cbe..0000000 --- a/v3/src/pages/homes/mobile-app.astro +++ /dev/null @@ -1,297 +0,0 @@ ---- -import Layout from '~/layouts/PageLayout.astro'; - -import Header from '~/components/widgets/Header.astro'; - -import Hero2 from '~/components/widgets/Hero2.astro'; -import CallToAction from '~/components/widgets/CallToAction.astro'; -import Features3 from '~/components/widgets/Features3.astro'; -import Content from '~/components/widgets/Content.astro'; -import Testimonials from '~/components/widgets/Testimonials.astro'; -import FAQs from '~/components/widgets/FAQs.astro'; -import Stats from '~/components/widgets/Stats.astro'; - -import Button from '~/components/ui/Button.astro'; -import Image from '~/components/common/Image.astro'; - -const appStoreImg = '~/assets/images/app-store.png'; -const appStoreDownloadLink = 'https://github.com/onwidget/astrowind'; - -const googlePlayImg = '~/assets/images/google-play.png'; -const googlePlayDownloadLink = 'https://github.com/onwidget/astrowind'; - -const metadata = { - title: 'Mobile App Homepage', -}; ---- - - - - -
- - - - - - - RustDesk App:
professional websites -
- - - - Download now and embark on a journey to elevate your projects like never before. - - -
- - - -
-
- - - - - - - - - -

Main Features

-
-
- - - - - -

Other features

-
-
- - - - - - - - - - - - - - - - -
- - - -
-
- diff --git a/v3/src/pages/homes/personal.astro b/v3/src/pages/homes/personal.astro deleted file mode 100644 index 092053d..0000000 --- a/v3/src/pages/homes/personal.astro +++ /dev/null @@ -1,405 +0,0 @@ ---- -import Layout from '~/layouts/PageLayout.astro'; - -import Header from '~/components/widgets/Header.astro'; -import Hero from '~/components/widgets/Hero.astro'; -import Content from '~/components/widgets/Content.astro'; -import CallToAction from '~/components/widgets/CallToAction.astro'; -import Features3 from '~/components/widgets/Features3.astro'; -import Testimonials from '~/components/widgets/Testimonials.astro'; -import Steps from '~/components/widgets/Steps.astro'; -import BlogLatestPosts from '~/components/widgets/BlogLatestPosts.astro'; -import { getPermalink } from '~/utils/permalinks'; - -const metadata = { - title: 'Personal Homepage Demo', -}; ---- - - - - -
- - - - - - - I'm a Graphic Designer passionate about crafting visual stories.
With 5 years of experience and a degree from - New York University's School of Design. I infuse vitality into brands and designs, transforming concepts into captivating - realities. -
-
- - - - - -

About me

-

- Welcome to my creative journey. My work is a testament to my commitment to bringing ideas to life, where each - pixel becomes a brushstroke in the canvas of imagination. -

-
-

- I find inspiration in the world around me, whether through the pages of a captivating novel, the intricate - details of typography, or the vibrant hues of nature during my outdoor escapades. -

-
-

If you're curious to dive deeper into my work, you can follow me:

-
- - -
-
-
- - - - ABC Design Studio, New York, NY
2021 - Present', - description: `Collaborate with clients to understand design requirements and objectives.
Develop branding solutions, including logos, color palettes, and brand guidelines.
Design marketing materials such as brochures, posters, and digital assets.
Create visually appealing user interfaces for websites and applications.`, - icon: 'tabler:briefcase', - }, - { - title: - 'Junior Graphic Designer
XYZ Creative Agency, Los Angeles, CA
2018 - 2021', - description: `Assisted senior designers in creating design concepts and visual assets.
Contributed to the development of brand identities and marketing collateral.
Collaborated with the marketing team to ensure consistent design across campaigns.
Gained hands-on experience in various design software and tools.`, - icon: 'tabler:briefcase', - }, - ]} - classes={{ container: 'max-w-3xl' }} - /> - - - - New York University's School of Design
2018 - 2020`, - icon: 'tabler:school', - }, - { - title: `Bachelor of Arts in Graphic Design
New York University's School of Design
2014 - 2018`, - icon: 'tabler:school', - }, - ]} - classes={{ container: 'max-w-3xl' }} - /> - - - - - - - - - -

- Project 1:
Brand identity for tech innovators -

-
- - -
-
-
- - - - - -

- Project 2:
Event poster for art & music festival -

-
- - -
-
-
- - - - - -

- Project 3:
E-commerce website redesign for fashion brand -

-
- - -
-
-
- - - - - - - - - - - - - -
-
-
- diff --git a/v3/src/pages/homes/saas.astro b/v3/src/pages/homes/saas.astro deleted file mode 100644 index 9987815..0000000 --- a/v3/src/pages/homes/saas.astro +++ /dev/null @@ -1,349 +0,0 @@ ---- -import Layout from '~/layouts/PageLayout.astro'; - -import Header from '~/components/widgets/Header.astro'; -import Hero2 from '~/components/widgets/Hero2.astro'; -import Features from '~/components/widgets/Features.astro'; -import Steps2 from '~/components/widgets/Steps2.astro'; -import Content from '~/components/widgets/Content.astro'; -import Pricing from '~/components/widgets/Pricing.astro'; - -import { headerData } from '~/navigation'; -import FAQs from '~/components/widgets/FAQs.astro'; -import BlogLatestPosts from '~/components/widgets/BlogLatestPosts.astro'; - -const metadata = { - title: 'SaaS Landing Page', -}; ---- - - - -
- - - - - - - Simplify web design with Astrowind:
your ultimate SaaS companion
-
- - - - Seamlessly blend the power of Astro 4.0 and Tailwind CSS to craft websites that resonate with your brand and audience. - -
- - - - - - - - Make a memorable first impression with visually appealing design elements that highlight your startup's unique value proposition.
Ensures your website looks stunning and works well on all devices.
Engage potential investors and customers with engaging content, clear messaging, and intuitive navigation.`, - }, - ]} - image={{ - src: 'https://images.unsplash.com/photo-1620558138198-cfb9b4f3c294?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1671&q=80', - alt: 'Startup Image', - }} - > - -

- Startup success stories:
Launching with RustDesk -

-
- - -
-
-
- - - - Effectively communicate complex SaaS features through visual aids, animations, and interactive elements.
Prioritize user needs and pain points through well-structured layouts and clear navigation.
Encourage visitors to take action with strategically placed CTAs.
Ensures your SaaS website works seamlessly across all devices.`, - }, - ]} - image={{ - src: 'https://images.unsplash.com/photo-1531973486364-5fa64260d75b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1658&q=80', - alt: 'SaaS Businesses Image', - }} - > - -

- SaaS showcase:
Streamlining user experience -

-
- - -
-
-
- - - - Tailor your portfolio to reflect your unique style and artistic vision.
Prioritizes visuals, allowing you to present your work in high-resolution detail that draws viewers into your creations.
Enables seamless navigation for effortless portfolio exploration.`, - }, - ]} - image={{ - src: 'https://images.unsplash.com/photo-1635070041078-e363dbe005cb?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80', - alt: 'Portfolio Image', - }} - > - -

- Creative portfolios:
Highlighting your work -

-
- - -
-
-
- - - - Strategically placed CTAs, user-friendly forms, and optimized layouts work together to drive user engagement and conversions.
Ensure a smooth browsing experience, reducing bounce rates and encouraging interaction.`, - }, - ]} - image={{ - src: 'https://images.unsplash.com/photo-1514621166532-aa7eb1a3a2f4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=774&q=80', - alt: 'Small Business Image', - }} - > - -

- Small business growth:
Converting visitors into customers -

-
- - -
-
-
- - - - - - - - - -
-
-
- - - - - - - - - -
-
-
- diff --git a/v3/src/pages/homes/startup.astro b/v3/src/pages/homes/startup.astro deleted file mode 100644 index 51daa77..0000000 --- a/v3/src/pages/homes/startup.astro +++ /dev/null @@ -1,317 +0,0 @@ ---- -import Layout from '~/layouts/PageLayout.astro'; - -import Hero from '~/components/widgets/Hero.astro'; -import CallToAction from '~/components/widgets/CallToAction.astro'; - -import Features2 from '~/components/widgets/Features2.astro'; -import Features from '~/components/widgets/Features.astro'; -import Stats from '~/components/widgets/Stats.astro'; -import Features3 from '~/components/widgets/Features3.astro'; -import FAQs from '~/components/widgets/FAQs.astro'; -import Brands from '~/components/widgets/Brands.astro'; - -import { YouTube } from 'astro-embed'; - -const metadata = { - title: 'Startup Landing Page', -}; ---- - - - - - - - Improve your Startup with Astrowind templates - - - - Step into the spotlight with Astrowind templates, your pathway to fortifying your - startup's digital footprint, fostering credibility, and expanding your reach. - - - - - - - - - - - - -
-
-
- - - - - - - - - - - - - -
-
-
- - - - - - - - - -
-
-
- - - - - - - - - Be a part of our vision - - - Discover a dynamic work environment, unparalleled growth opportunities, and the chance to make a meaningful - impact. - - -
diff --git a/v3/src/pages/index.astro b/v3/src/pages/index.astro index 0187068..8de1828 100644 --- a/v3/src/pages/index.astro +++ b/v3/src/pages/index.astro @@ -119,7 +119,7 @@ const metadata = { }} > -

Custom Client

+

Custom client

Customize your client with your brand and make it truly yours.
diff --git a/v3/src/pages/landing/click-through.astro b/v3/src/pages/landing/click-through.astro deleted file mode 100644 index 47140ed..0000000 --- a/v3/src/pages/landing/click-through.astro +++ /dev/null @@ -1,41 +0,0 @@ ---- -import Layout from '~/layouts/LandingLayout.astro'; - -import Hero2 from '~/components/widgets/Hero2.astro'; -import CallToAction from '~/components/widgets/CallToAction.astro'; - -const metadata = { - title: 'Click-through Landing Page Demo', -}; ---- - - - - - - - - diff --git a/v3/src/pages/landing/lead-generation.astro b/v3/src/pages/landing/lead-generation.astro deleted file mode 100644 index 09f6fad..0000000 --- a/v3/src/pages/landing/lead-generation.astro +++ /dev/null @@ -1,41 +0,0 @@ ---- -import Layout from '~/layouts/LandingLayout.astro'; - -import Hero from '~/components/widgets/Hero.astro'; -import CallToAction from '~/components/widgets/CallToAction.astro'; - -const metadata = { - title: 'Lead Generation Landing Page Demo', -}; ---- - - - - - - - - diff --git a/v3/src/pages/landing/pre-launch.astro b/v3/src/pages/landing/pre-launch.astro deleted file mode 100644 index 43c9da7..0000000 --- a/v3/src/pages/landing/pre-launch.astro +++ /dev/null @@ -1,41 +0,0 @@ ---- -import Layout from '~/layouts/LandingLayout.astro'; - -import Hero2 from '~/components/widgets/Hero2.astro'; -import CallToAction from '~/components/widgets/CallToAction.astro'; - -const metadata = { - title: 'Pre-Launch Landing Page', -}; ---- - - - - - - - - diff --git a/v3/src/pages/landing/product.astro b/v3/src/pages/landing/product.astro deleted file mode 100644 index 238cd7e..0000000 --- a/v3/src/pages/landing/product.astro +++ /dev/null @@ -1,41 +0,0 @@ ---- -import Layout from '~/layouts/LandingLayout.astro'; - -import Hero from '~/components/widgets/Hero.astro'; -import CallToAction from '~/components/widgets/CallToAction.astro'; - -const metadata = { - title: 'Product Details Landing Page Demo', -}; ---- - - - - - - - - diff --git a/v3/src/pages/landing/sales.astro b/v3/src/pages/landing/sales.astro deleted file mode 100644 index f992a46..0000000 --- a/v3/src/pages/landing/sales.astro +++ /dev/null @@ -1,41 +0,0 @@ ---- -import Layout from '~/layouts/LandingLayout.astro'; - -import Hero2 from '~/components/widgets/Hero2.astro'; -import CallToAction from '~/components/widgets/CallToAction.astro'; - -const metadata = { - title: 'Sales Landing Page Demo', -}; ---- - - - - - - - - diff --git a/v3/src/pages/landing/subscription.astro b/v3/src/pages/landing/subscription.astro deleted file mode 100644 index 192b6e3..0000000 --- a/v3/src/pages/landing/subscription.astro +++ /dev/null @@ -1,41 +0,0 @@ ---- -import Layout from '~/layouts/LandingLayout.astro'; - -import Hero2 from '~/components/widgets/Hero2.astro'; -import CallToAction from '~/components/widgets/CallToAction.astro'; - -const metadata = { - title: 'Subscription Landing Page Demo', -}; ---- - - - - - - - - diff --git a/v3/src/pages/privacy.md b/v3/src/pages/privacy.md index 932d37d..e174856 100644 --- a/v3/src/pages/privacy.md +++ b/v3/src/pages/privacy.md @@ -3,183 +3,49 @@ title: 'Privacy Policy' layout: '~/layouts/MarkdownLayout.astro' --- -_Last updated_: January 06, 2023 +This Privacy Policy (hereinafter the “**Policy**”) governs the terms and conditions under which Purslane Ltd. (hereinafter “**us**” or “**we**”), processes personal data in connection with the activities and services concerning the operation of the website rustdesk.com and other websites or social media profiles run and managed by us (hereinafter the “**Websites**”). -This Privacy Policy describes Our policies and procedures on the collection, use and disclosure of Your information when You use the Service and tells You about Your privacy rights and how the law protects You. +We are serious about protecting your personal data and want you to feel safe and comfortable while browsing our Websites. We therefore respect the confidentiality of your personal data and always proceed in accordance with the provisions of data protection legislation, in particular, Regulation (EU) 2016/679 of the European Parliament and of the Council (General Data Protection Regulation, hereinafter the “**GDPR**”), and follow this Policy. -We use Your Personal data to provide and improve the Service. By using the Service, You agree to the collection and use of information in accordance with this Privacy Policy. This Privacy Policy is just a Demo. +With respect to the above, we use this Policy to inform you about how, for what purposes and to what extent we use your personal data and what information about you as a user of the Websites we may process. -## Interpretation and Definitions +## 1. Definitions +“**Personal data**” means any information relating to a data subject; -### Interpretation +“**Controller**” means the natural or legal person, public authority, agency or other body which, alone or jointly with others, determines the purposes and means of the processing of personal data; -The words of which the initial letter is capitalized have meanings defined under the following conditions. The following definitions shall have the same meaning regardless of whether they appear in singular or in plural. +“**Data subject**” means any identified or identifiable person who can be identified, directly or indirectly, in particular by reference to an identifier such as a name, an identification number, location data, an online identifier or to one or more factors specific to the physical, physiological, genetic, mental, economic, cultural or social identity of that natural person; -### Definitions +“**Data processor**” means a natural or legal person, public authority, agency or other body which processes personal data on behalf of the controller; -For the purposes of this Privacy Policy: +“**Processing**” means any operation or set of operations which is performed on personal data or on sets of personal data, whether or not by automated means, such as collection, recording, organization, structuring, storage, adaptation or alteration, retrieval, consultation, use, disclosure by transmission, dissemination or otherwise making available, alignment or combination, restriction, erasure or destruction. -- **Account** means a unique account created for You to access our Service or parts of our Service. -- **Company** (referred to as either "the Company", "We", "Us" or "Our" in this Agreement) refers to RustDesk LLC, 1 Cupertino, CA 95014. -- **Cookies** are small files that are placed on Your computer, mobile device or any other device by a website, containing the details of Your browsing history on that website among its many uses. -- **Country** refers to: California, United States -- **Device** means any device that can access the Service such as a computer, a cellphone or a digital tablet. -- **Personal Data** is any information that relates to an identified or identifiable individual. -- **Service** refers to the Website. -- **Service Provider** means any natural or legal person who processes the data on behalf of the Company. It refers to third-party companies or individuals employed by the Company to facilitate the Service, to provide the Service on behalf of the Company, to perform services related to the Service or to assist the Company in analyzing how the Service is used. -- **Usage Data** refers to data collected automatically, either generated by the use of the Service or from the Service infrastructure itself (for example, the duration of a page visit). -- **Website** refers to RustDesk, accessible from [https://astrowind.vercel.app](https://astrowind.vercel.app) -- **You** means the individual accessing or using the Service, or the company, or other legal entity on behalf of which such individual is accessing or using the Service, as applicable. +## 2. Basic information about personal data processing conducted by us +We always process your personal data lawfully, fairly, in a transparent manner and for specified, explicit and legitimate purposes. We process personal data only to the minimum necessary extent and we keep them in a form which permits your identification for no longer than is necessary vis-à-vis the purpose of the processing. -## Collecting and Using Your Personal Data +We process your personal data in a manner that sufficiently ensures their integrity and confidentiality, i.e. by appropriate technical or organizational measures and appropriate protection against unauthorized or unlawful processing and against loss, destruction or damage. We take care to ensure that personal data that are inaccurate, having regard to the purpose for which we process them, are erased or rectified without delay. -### Types of Data Collected +We respect the principle of refraining from personal data processing and the principle of data minimization. We therefore only retain your personal data if it is necessary in order to achieve the purpose of the processing or for various retention periods specified by law. The relevant data are erased in accordance with the law if the relevant purpose ceases to exist as a result of the withdrawal of your consent and/or upon the expiration of the lawful retention period. -#### Personal Data +For the above reasons, we use computer security such as a firewall and data encryption to operate our Websites. We have implemented adequate physical, electronic and procedural safeguards and use reliable IT service providers. However, given the nature of the internet, we would like to bring to your attention the fact that certain security gaps may exist in the transmission of personal data via the internet (e.g. in communication via e-mail) and that full protection of personal data preventing third party access is impossible. -While using Our Service, We may ask You to provide Us with certain personally identifiable information that can be used to contact or identify You. Personally identifiable information may include, but is not limited to: +## 3. Legal ground, purpose and extent of the processing of your personal data +We may process your personal data for the following legal grounds and for the following purposes: -- Usage Data +### a. Provision and improvement of and support for our Websites +We process various information about your online activity, e.g. the time of access to our Websites, the time spent on our websites, conversions (i.e. completed activity on our Websites), etc., for the purposes of technical support and improvement of our Websites as well as monitoring of functionalities thereof (for details regarding the extent of the data being processed see Article 4 (c) - d) of this Policy). -#### Usage Data +For this purpose of personal data processing, we process your personal data under the lawful ground of legitimate interest (operation of the Websites, statistical purposes and data security). -Usage Data is collected automatically when using the Service. +### b. Processing of the personal data of the visitors to the Websites +If you publish any personal data on our Websites, we may process such personal data to the extent published for the purpose of responding to your post. Usually, we process following personal data categories on our Websites: your name, surname and any personal data which you upload on the Websites or which we receive via personal messages. -Usage Data may include information such as Your Device's Internet Protocol address (e.g. IP address), browser type, browser version, the pages of our Service that You visit, the time and date of Your visit, the time spent on those pages, unique device identifiers and other diagnostic data. +For these purposes of personal data processing, we process the above mentioned personal data under lawful ground of negotiation and performance of a contract (customer and technical support under the RustDesk software license agreement concluded between us and yourself) and legitimate interest (general communication between us and yourself). -When You access the Service by or through a mobile device, We may collect certain information automatically, including, but not limited to, the type of mobile device You use, Your mobile device unique ID, the IP address of Your mobile device, Your mobile operating system, the type of mobile Internet browser You use, unique device identifiers and other diagnostic data. +### c. Cookies +We use various cookie files, which may contain your personal data (e.g. your IP address or the configuration of your browser and computer). We use cookies on the basis of your consent that you express via the cookies settings displayed to you in a banner during your first visit to our Websites. This consent can be subsequently amended / withdrawn via your web browser settings (to the extended allowed by the respective browser). -We may also collect information that Your browser sends whenever You visit our Service or when You access the Service by or through a mobile device. +### d. RustDesk +To provide you with the RustDesk software application and to constantly improve our services including customer support, we process following personal data about you and your device: start of the RustDesk software application, IP-address of the device, statistical information about your computer (e.g. CPU-type, screen resolution), time and duration of RustDesk software sessions and RustDesk-IDs of the RustDesk’s session participants. -#### Tracking Technologies and Cookies - -We use Cookies and similar tracking technologies to track the activity on Our Service and store certain information. Tracking technologies used are beacons, tags, and scripts to collect and track information and to improve and analyze Our Service. The technologies We use may include: - -- **Cookies or Browser Cookies.** A cookie is a small file placed on Your Device. 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 parts of our Service. Unless you have adjusted Your browser setting so that it will refuse Cookies, our Service may use Cookies. -- **Web Beacons.** Certain sections of our Service and our emails may contain small electronic files known as web beacons (also referred to as clear gifs, pixel tags, and single-pixel gifs) that permit the Company, for example, to count users who have visited those pages or opened an email and for other related website statistics (for example, recording the popularity of a certain section and verifying system and server integrity). - -Cookies can be "Persistent" or "Session" Cookies. Persistent Cookies remain on Your personal computer or mobile device when You go offline, while Session Cookies are deleted as soon as You close Your web browser. - -We use both Session and Persistent Cookies for the purposes set out below: - -- **Necessary / Essential Cookies** - - Type: Session Cookies - - Administered by: Us - - Purpose: These Cookies are essential to provide You with services available through the Website and to enable You to use some of its features. They help to authenticate users and prevent fraudulent use of user accounts. Without these Cookies, the services that You have asked for cannot be provided, and We only use these Cookies to provide You with those services. - -- **Cookies Policy / Notice Acceptance Cookies** - - Type: Persistent Cookies - - Administered by: Us - - Purpose: These Cookies identify if users have accepted the use of cookies on the Website. - -- **Functionality Cookies** - - Type: Persistent Cookies - - Administered by: Us - - Purpose: These Cookies allow us to remember choices You make when You use the Website, such as remembering your login details or language preference. The purpose of these Cookies is to provide You with a more personal experience and to avoid You having to re-enter your preferences every time You use the Website. - -For more information about the cookies we use and your choices regarding cookies, please visit our Cookies Policy or the Cookies section of our Privacy Policy. - -## Use of Your Personal Data - -The Company may use Personal Data for the following purposes: - -- **To provide and maintain our Service**, including to monitor the usage of our Service. -- **To manage Your Account:** to manage Your registration as a user of the Service. The Personal Data You provide can give You access to different functionalities of the Service that are available to You as a registered user. -- **For the performance of a contract:** the development, compliance and undertaking of the purchase contract for the products, items or services You have purchased or of any other contract with Us through the Service. -- **To contact You:** To contact You by email, telephone calls, SMS, or other equivalent forms of electronic communication, such as a mobile application's push notifications regarding updates or informative communications related to the functionalities, products or contracted services, including the security updates, when necessary or reasonable for their implementation. -- **To provide You** with news, special offers and general information about other goods, services and events which we offer that are similar to those that you have already purchased or enquired about unless You have opted not to receive such information. -- **To manage Your requests:** To attend and manage Your requests to Us. -- **For business transfers:** We may use Your information to evaluate or conduct a merger, divestiture, restructuring, reorganization, dissolution, or other sale or transfer of some or all of Our assets, whether as a going concern or as part of bankruptcy, liquidation, or similar proceeding, in which Personal Data held by Us about our Service users is among the assets transferred. -- **For other purposes**: We may use Your information for other purposes, such as data analysis, identifying usage trends, determining the effectiveness of our promotional campaigns and to evaluate and improve our Service, products, services, marketing and your experience. - -We may share Your personal information in the following situations: - -- **With Service Providers:** We may share Your personal information with Service Providers to monitor and analyze the use of our Service, to contact You. -- **For business transfers:** We may share or transfer Your personal information in connection with, or during negotiations of, any merger, sale of Company assets, financing, or acquisition of all or a portion of Our business to another company. -- **With Affiliates:** We may share Your information with Our affiliates, in which case we will require those affiliates to honor this Privacy Policy. Affiliates include Our parent company and any other subsidiaries, joint venture partners or other companies that We control or that are under common control with Us. -- **With business partners:** We may share Your information with Our business partners to offer You certain products, services or promotions. -- **With other users:** when You share personal information or otherwise interact in the public areas with other users, such information may be viewed by all users and may be publicly distributed outside. -- **With Your consent**: We may disclose Your personal information for any other purpose with Your consent. - -## Retention of Your Personal Data - -The Company will retain Your Personal Data only for as long as is necessary for the purposes set out in this Privacy Policy. We will retain and use Your Personal Data to the extent necessary to comply with our legal obligations (for example, if we are required to retain your data to comply with applicable laws), resolve disputes, and enforce our legal agreements and policies. - -The Company will also retain Usage Data for internal analysis purposes. Usage Data is generally retained for a shorter period of time, except when this data is used to strengthen the security or to improve the functionality of Our Service, or We are legally obligated to retain this data for longer time periods. - -## Transfer of Your Personal Data - -Your information, including Personal Data, is processed at the Company's operating offices and in any other places where the parties involved in the processing are located. It means that this information may be transferred to — and maintained on — computers located outside of Your state, province, country or other governmental jurisdiction where the data protection laws may differ than those from Your jurisdiction. - -Your consent to this Privacy Policy followed by Your submission of such information represents Your agreement to that transfer. - -The Company will take all steps reasonably necessary to ensure that Your data is treated securely and in accordance with this Privacy Policy and no transfer of Your Personal Data will take place to an organization or a country unless there are adequate controls in place including the security of Your data and other personal information. - -## Delete Your Personal Data - -You have the right to delete or request that We assist in deleting the Personal Data that We have collected about You. - -Our Service may give You the ability to delete certain information about You from within the Service. - -You may update, amend, or delete Your information at any time by signing in to Your Account, if you have one, and visiting the account settings section that allows you to manage Your personal information. You may also contact Us to request access to, correct, or delete any personal information that You have provided to Us. - -Please note, however, that We may need to retain certain information when we have a legal obligation or lawful basis to do so. - -## Disclosure of Your Personal Data - -### Business Transactions - -If the Company is involved in a merger, acquisition or asset sale, Your Personal Data may be transferred. We will provide notice before Your Personal Data is transferred and becomes subject to a different Privacy Policy. - -#### Law enforcement - -Under certain circumstances, the Company may be required to disclose Your Personal Data if required to do so by law or in response to valid requests by public authorities (e.g. a court or a government agency). - -#### Other legal requirements - -The Company may disclose Your Personal Data in the good faith belief that such action is necessary to: - -- Comply with a legal obligation -- Protect and defend the rights or property of the Company -- Prevent or investigate possible wrongdoing in connection with the Service -- Protect the personal safety of Users of the Service or the public -- Protect against legal liability - -## Security of Your Personal Data - -The security of Your Personal Data is important to Us, but remember that no method of transmission over the Internet, or method of electronic storage is 100% secure. While We strive to use commercially acceptable means to protect Your Personal Data, We cannot guarantee its absolute security. - -## Children's Privacy - -Our Service does not address anyone under the age of 13. We do not knowingly collect personally identifiable information from anyone under the age of 13. If You are a parent or guardian and You are aware that Your child has provided Us with Personal Data, please contact Us. If We become aware that We have collected Personal Data from anyone under the age of 13 without verification of parental consent, We take steps to remove that information from Our servers. - -If We need to rely on consent as a legal basis for processing Your information and Your country requires consent from a parent, We may require Your parent's consent before We collect and use that information. - -## Links to Other Websites - -Our Service may contain links to other websites that are not operated by Us. If You click on a third party link, You will be directed to that third party's site. We strongly advise You to review the Privacy Policy of every site You visit. - -We have no control over and assume no responsibility for the content, privacy policies or practices of any third party sites or services. - -## 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. - -We will let You know via email and/or a prominent notice on Our Service, prior to the change becoming effective and update the "Last updated" date at the top of this Privacy Policy. - -You are advised to review this Privacy Policy periodically for any changes. Changes to this Privacy Policy are effective when they are posted on this page. - -## Contact Us - -If you have any questions about this Privacy Policy, You can contact us: - -- By email: somecoolemail@domain.com +We process the personal data acquired via the RustDesk software under lawful grounds of performance of a contract (performance of RustDesk software license agreement concluded between us and yourself including customer support) and our legitimate interest (RustDesk software development). diff --git a/v3/src/pages/services.astro b/v3/src/pages/services.astro deleted file mode 100644 index dc24658..0000000 --- a/v3/src/pages/services.astro +++ /dev/null @@ -1,224 +0,0 @@ ---- -import CallToAction from '~/components/widgets/CallToAction.astro'; -import Content from '~/components/widgets/Content.astro'; -import Features2 from '~/components/widgets/Features2.astro'; -import Hero from '~/components/widgets/Hero.astro'; -import Testimonials from '~/components/widgets/Testimonials.astro'; -import Layout from '~/layouts/PageLayout.astro'; - -const metadata = { - title: 'Services', -}; ---- - - - - - - - - - - - - - - -

Main Features

-
-
- - - - - -

Benefits

-
-
- - - - - - - - -
diff --git a/v3/src/pages/support.astro b/v3/src/pages/support.astro new file mode 100644 index 0000000..be27785 --- /dev/null +++ b/v3/src/pages/support.astro @@ -0,0 +1,49 @@ +--- +import Layout from '~/layouts/PageLayout.astro'; +import Features2 from '~/components/widgets/Features2.astro'; + +const metadata = { + title: 'Contact', +}; +--- + + + + + + + + + Open an issue', + icon: 'tabler:brand-github', + }, + { + title: 'Discord', + description: 'Join our server', + icon: 'tabler:brand-discord', + }, + { + title: 'Email', + description: 'support@rustdesk.com', + icon: 'tabler:mail', + }, + ]} + /> + diff --git a/v3/src/pages/terms.md b/v3/src/pages/terms.md index dc2c1af..1810f22 100644 --- a/v3/src/pages/terms.md +++ b/v3/src/pages/terms.md @@ -3,118 +3,68 @@ title: 'Terms and Conditions' layout: '~/layouts/MarkdownLayout.astro' --- -_Last updated_: January 06, 2023 +This Agreement (“Agreement”) is a legal agreement between you (either an individual or an entity) and PURSLANE LTD. (“Company”) and applies to your use of the Software (“Software”) provided by Company. By accessing or using the Software, you agree to be bound by the terms and conditions of this Agreement. If you do not agree to the terms and conditions of this Agreement, do not use the Software. -Please read these terms and conditions carefully before using Our Service. +## 1. License +Company grants you a limited, non-exclusive, non-transferable, revocable license to use the Software for your personal or internal business use, subject to the terms and conditions of this Agreement. You are not allowed to rent, lease, lend, sell, redistribute, or sublicense the Software or any part of it. -## Interpretation and Definitions +## 2. Restrictions +You shall not, and shall not allow any third party to: +- modify, adapt, translate, or create derivative works of the Software +- reverse engineer, decompile, disassemble, or otherwise attempt to derive the source code of the Software +- remove, alter, or obscure any copyright, trademark, or other proprietary rights notices from the Software +- use the Software in any manner that violates any applicable laws or regulations + +## 3. Ownership +The Software and all intellectual property rights in and to the Software, including but not limited to patents, copyrights, trademarks, and trade secrets, are owned by Company and its licensors. This Agreement does not grant you any ownership rights in the Software. -### Interpretation +## 4. Support and Maintenance +Company may provide support and maintenance for the Software at its sole discretion. The terms and conditions of such support and maintenance will be separately agreed upon by the parties. -The words of which the initial letter is capitalized have meanings defined under the following conditions. The following definitions shall have the same meaning regardless of whether they appear in singular or in plural. +## 5. Termination +This Agreement is effective until terminated. Company may terminate this Agreement at any time without notice if you breach any term or condition of this Agreement. Upon termination, you must destroy all copies of the Software. -### Definitions +## 6. Disclaimer of Warranties +The Software is provided “as is” and without warranty of any kind. Company and its licensors hereby disclaim all warranties, express or implied, including but not limited to the implied warranties of merchantability, fitness for a particular purpose, and non-infringement. Company does not warrant that the Software will meet your requirements or that the operation of the Software will be uninterrupted or error-free. -For the purposes of these Terms and Conditions: +## 7. Limitation of Liability +To the maximum extent permitted by law, Company and its licensors shall not be liable for any damages whatsoever (including, without limitation, damages for loss of business profits, business interruption, loss of business information, or any other pecuniary loss) arising out of the use or inability to use the Software, even if Company has been advised of the possibility of such damages. -- **Affiliate** means an entity that controls, is controlled by or is under common control with a party, where "control" means ownership of 50% or more of the shares, equity interest or other securities entitled to vote for election of directors or other managing authority. +## 8. Indemnification +You shall indemnify and hold Company and its affiliates, officers, agents, and employees harmless from any claim or demand, including reasonable attorneys’ fees, made by any third party due to or arising out of your use of the Software, your violation of this Agreement, or your violation of any rights of another. -- **Country** refers to: California, United States +## 9. Governing Law +This Agreement shall be governed by and construed in accordance with the laws of The Cayman Islands, without giving effect to any principles of conflicts of law. -- **Company** (referred to as either "the Company", "We", "Us" or "Our" in this Agreement) refers to RustDesk LLC, 1 Cupertino, CA 95014. +## 10. Entire Agreement +This Agreement constitutes the entire agreement between you and Company and supersedes all prior or contemporaneous communications and proposals, whether oral or written. -- **Device** means any device that can access the Service such as a computer, a cellphone or a digital tablet. +## 11. Waiver +The failure of either party to exercise any right provided for herein shall not be deemed a waiver of any right hereunder. -- **Service** refers to the Website. +## 12. Severability +If any provision of this Agreement is found to be invalid or unenforceable, the remaining provisions shall remain in full force and effect. -- **Terms and Conditions** (also referred as "Terms") mean these Terms and Conditions that form the entire agreement between You and the Company regarding the use of the Service. This Terms and Conditions agreement is a Demo. +## 13. No Assignment +You may not assign or transfer this Agreement or any rights or obligations hereunder without the prior written consent of the Company. -- **Third-party Social Media Service** means any services or content (including data, information, products or services) provided by a third-party that may be displayed, included or made available by the Service. +## 14. Force Majeure +Company shall not be liable for any delay or failure to perform resulting from causes outside its reasonable control, including, but not limited to, acts of God, war, terrorism, strikes, shortages of labor or materials, and governmental actions. -- **Website** refers to RustDesk, accessible from [https://astrowind.vercel.app](https://astrowind.vercel.app) +## 15. Relationship of the Parties +This Agreement does not create a partnership, joint venture, or agency relationship between you and Company. -- **You** means the individual accessing or using the Service, or the company, or other legal entity on behalf of which such individual is accessing or using the Service, as applicable. +## 16. No Third-Party Beneficiaries +This Agreement is for the benefit of the parties hereto and their successors and assigns, and is not for the benefit of, nor may any provision hereof be enforced by, any other person. -## Acknowledgment +## 17. Headings +The headings in this Agreement are for convenience only and shall not affect the interpretation of this Agreement. -These are the Terms and Conditions governing the use of this Service and the agreement that operates between You and the Company. These Terms and Conditions set out the rights and obligations of all users regarding the use of the Service. +## 18. Counterparts +This Agreement may be executed in counterparts, each of which shall be deemed an original, but all of which together shall constitute one and the same instrument. -Your access to and use of the Service is conditioned on Your acceptance of and compliance with these Terms and Conditions. These Terms and Conditions apply to all visitors, users and others who access or use the Service. +## 19. Survival +The provisions of this Agreement that by their nature should survive termination shall survive termination, including, but not limited to, provisions regarding ownership, warranty disclaimers, indemnification, and limitations of liability. -By accessing or using the Service You agree to be bound by these Terms and Conditions. If You disagree with any part of these Terms and Conditions then You may not access the Service. - -You represent that you are over the age of 18\. The Company does not permit those under 18 to use the Service. - -Your access to and use of the Service is also conditioned on Your acceptance of and compliance with the Privacy Policy of the Company. Our Privacy Policy describes Our policies and procedures on the collection, use and disclosure of Your personal information when You use the Application or the Website and tells You about Your privacy rights and how the law protects You. Please read Our Privacy Policy carefully before using Our Service. - -## Links to Other Websites - -Our Service may contain links to third-party web sites or services that are not owned or controlled by the Company. - -The Company has no control over, and assumes no responsibility for, the content, privacy policies, or practices of any third party web sites or services. You further acknowledge and agree that the Company shall not be responsible or liable, directly or indirectly, for any damage or loss caused or alleged to be caused by or in connection with the use of or reliance on any such content, goods or services available on or through any such web sites or services. - -We strongly advise You to read the terms and conditions and privacy policies of any third-party web sites or services that You visit. - -## Termination - -We may terminate or suspend Your access immediately, without prior notice or liability, for any reason whatsoever, including without limitation if You breach these Terms and Conditions. - -Upon termination, Your right to use the Service will cease immediately. - -## Limitation of Liability - -Notwithstanding any damages that You might incur, the entire liability of the Company and any of its suppliers under any provision of this Terms and Your exclusive remedy for all of the foregoing shall be limited to the amount actually paid by You through the Service or 100 USD if You haven't purchased anything through the Service. - -To the maximum extent permitted by applicable law, in no event shall the Company or its suppliers be liable for any special, incidental, indirect, or consequential damages whatsoever (including, but not limited to, damages for loss of profits, loss of data or other information, for business interruption, for personal injury, loss of privacy arising out of or in any way related to the use of or inability to use the Service, third-party software and/or third-party hardware used with the Service, or otherwise in connection with any provision of this Terms), even if the Company or any supplier has been advised of the possibility of such damages and even if the remedy fails of its essential purpose. - -Some states do not allow the exclusion of implied warranties or limitation of liability for incidental or consequential damages, which means that some of the above limitations may not apply. In these states, each party's liability will be limited to the greatest extent permitted by law. - -## "AS IS" and "AS AVAILABLE" Disclaimer - -The Service is provided to You "AS IS" and "AS AVAILABLE" and with all faults and defects without warranty of any kind. To the maximum extent permitted under applicable law, the Company, on its own behalf and on behalf of its Affiliates and its and their respective licensors and service providers, expressly disclaims all warranties, whether express, implied, statutory or otherwise, with respect to the Service, including all implied warranties of merchantability, fitness for a particular purpose, title and non-infringement, and warranties that may arise out of course of dealing, course of performance, usage or trade practice. Without limitation to the foregoing, the Company provides no warranty or undertaking, and makes no representation of any kind that the Service will meet Your requirements, achieve any intended results, be compatible or work with any other software, applications, systems or services, operate without interruption, meet any performance or reliability standards or be error free or that any errors or defects can or will be corrected. - -Without limiting the foregoing, neither the Company nor any of the company's provider makes any representation or warranty of any kind, express or implied: (i) as to the operation or availability of the Service, or the information, content, and materials or products included thereon; (ii) that the Service will be uninterrupted or error-free; (iii) as to the accuracy, reliability, or currency of any information or content provided through the Service; or (iv) that the Service, its servers, the content, or e-mails sent from or on behalf of the Company are free of viruses, scripts, trojan horses, worms, malware, timebombs or other harmful components. - -Some jurisdictions do not allow the exclusion of certain types of warranties or limitations on applicable statutory rights of a consumer, so some or all of the above exclusions and limitations may not apply to You. But in such a case the exclusions and limitations set forth in this section shall be applied to the greatest extent enforceable under applicable law. - -## Governing Law - -The laws of the Country, excluding its conflicts of law rules, shall govern this Terms and Your use of the Service. Your use of the Application may also be subject to other local, state, national, or international laws. - -## Disputes Resolution - -If You have any concern or dispute about the Service, You agree to first try to resolve the dispute informally by contacting the Company. - -## For European Union (EU) Users - -If You are a European Union consumer, you will benefit from any mandatory provisions of the law of the country in which you are resident in. - -## United States Legal Compliance - -You represent and warrant that (i) You are not located in a country that is subject to the United States government embargo, or that has been designated by the United States government as a "terrorist supporting" country, and (ii) You are not listed on any United States government list of prohibited or restricted parties. - -## Severability and Waiver - -### Severability - -If any provision of these Terms is held to be unenforceable or invalid, such provision will be changed and interpreted to accomplish the objectives of such provision to the greatest extent possible under applicable law and the remaining provisions will continue in full force and effect. - -### Waiver - -Except as provided herein, the failure to exercise a right or to require performance of an obligation under these Terms shall not effect a party's ability to exercise such right or require such performance at any time thereafter nor shall the waiver of a breach constitute a waiver of any subsequent breach. - -## Translation Interpretation - -These Terms and Conditions may have been translated if We have made them available to You on our Service. You agree that the original English text shall prevail in the case of a dispute. - -## Changes to These Terms and Conditions - -We reserve the right, at Our sole discretion, to modify or replace these Terms at any time. If a revision is material We will make reasonable efforts to provide at least 30 days' notice prior to any new terms taking effect. What constitutes a material change will be determined at Our sole discretion. - -By continuing to access or use Our Service after those revisions become effective, You agree to be bound by the revised terms. If You do not agree to the new terms, in whole or in part, please stop using the website and the Service. - -## Contact Us - -If you have any questions about these Terms and Conditions, You can contact us: - -- By email: somecoolemail@domain.com +## 20. Disclaimer of Usage +RustDesk, being Remote Control Software, possesses the capability to facilitate a wide range of activities, both legitimate and otherwise. It is imperative to acknowledge that RustDesk is a tool and does not inherently endorse or condone any specific use. As such, the Company explicitly disclaims any responsibility or liability for any damages, losses, or consequences that may arise from the use of our software. Users are advised to utilize RustDesk responsibly and in compliance with applicable laws and ethical standards. Please refer to the terms and conditions outlined in Sections 7 (Limitation of Liability) and 8 (Indemnification) for further details regarding the extent of our liability protections and user obligations.