✨ Legal informations e.g. terms & conditions
This commit is contained in:
parent
7a0a282451
commit
9ca513f91d
@ -1,6 +1,8 @@
|
||||
---
|
||||
import { Image } from 'astro:assets'
|
||||
|
||||
import { version } from '../../package.json'
|
||||
|
||||
import CompanyLogo from '../assets/images/company-logo.png'
|
||||
|
||||
interface Props {
|
||||
@ -66,6 +68,7 @@ const { title } = Astro.props
|
||||
Building wonderful software since 2019.
|
||||
|
||||
<span class="font-mono text-xs mt-3">Powered by RoadSign v2</span>
|
||||
<span class="font-mono text-xs">Capital v{version}</span>
|
||||
|
||||
<a href="https://status.solsynth.dev" class="mt-4">
|
||||
<img
|
||||
@ -90,9 +93,13 @@ const { title } = Astro.props
|
||||
</nav>
|
||||
<nav>
|
||||
<h6 class="footer-title">Legal</h6>
|
||||
<a class="link link-hover">Terms of use</a>
|
||||
<a class="link link-hover">Privacy policy</a>
|
||||
<a class="link link-hover">Cookie policy</a>
|
||||
<a class="link link-hover" href="/terms/user-agreements">
|
||||
User Agreements
|
||||
</a>
|
||||
<a class="link link-hover" href="/terms/privacy-policy">
|
||||
Privacy Policy
|
||||
</a>
|
||||
<a class="link link-hover" href="/terms">All Terms & Conditions</a>
|
||||
</nav>
|
||||
</div>
|
||||
</footer>
|
||||
|
52
src/pages/terms/index.astro
Normal file
52
src/pages/terms/index.astro
Normal file
@ -0,0 +1,52 @@
|
||||
---
|
||||
import Layout from '../../layouts/Layout.astro'
|
||||
---
|
||||
|
||||
<Layout title="Terms & Conditions">
|
||||
<div
|
||||
class="container max-w-[85ch] mx-auto mt-[25vh] px-2 flex flex-col gap-4"
|
||||
>
|
||||
<h1 class="text-2xl font-bold">Terms & Conditions</h1>
|
||||
|
||||
<p>
|
||||
This place is the collections of all the terms and conditions that you
|
||||
will have to agree to in order to use our products.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
We're trying to make it as simple as possible. And it's good for both of
|
||||
us. You do not need care about this in normal. Just makes our laywers
|
||||
happy. <i>Do we really have a laywer?</i>
|
||||
</p>
|
||||
|
||||
<p>
|
||||
The information here may changed from time to time. Please refresh to
|
||||
check this page for the latest version.
|
||||
</p>
|
||||
|
||||
<div class="flex flex-col gap-4 mt-4 mx-[-16px]">
|
||||
<a href="/terms/user-agreements">
|
||||
<div class="card bg-base-100 w-full border-neutral border">
|
||||
<div class="card-body">
|
||||
<h2 class="card-title">User Agreements</h2>
|
||||
<p>
|
||||
The User Agreements for users who using the Solar Network and
|
||||
other products from us.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
<a href="/terms/privacy-policy">
|
||||
<div class="card bg-base-100 w-full border-neutral border">
|
||||
<div class="card-body">
|
||||
<h2 class="card-title">Privacy Policy</h2>
|
||||
<p>
|
||||
The Privacy Policy shows we how to process and handle the data
|
||||
provided by you.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</Layout>
|
59
src/pages/terms/privacy-policy.astro
Normal file
59
src/pages/terms/privacy-policy.astro
Normal file
@ -0,0 +1,59 @@
|
||||
---
|
||||
import Layout from '../../layouts/Layout.astro'
|
||||
---
|
||||
|
||||
<Layout title="User Agreements">
|
||||
<div class="container max-w-[85ch] mx-auto mt-[25vh] flex flex-col gap-4">
|
||||
<h1 class="text-4xl font-bold">Privacy Policy</h1>
|
||||
|
||||
<article class="prose prose-lg max-w-none mt-5">
|
||||
<h2 id="introduction">Introduction</h2>
|
||||
<p>
|
||||
We take your privacy seriously. This privacy policy outlines the types
|
||||
of personal information we collect, how we use it, and the measures we
|
||||
take to protect your data.
|
||||
</p>
|
||||
<h2 id="information-collection">Information Collection</h2>
|
||||
<p>
|
||||
We collect personal information only when necessary to provide our
|
||||
services. This may include your name, email address, and other relevant
|
||||
details.
|
||||
</p>
|
||||
<h2 id="use-of-information">Use of Information</h2>
|
||||
<p>We use your personal information to:</p>
|
||||
<ul>
|
||||
<li>Provide and improve our services</li>
|
||||
<li>Communicate with you about updates or important information</li>
|
||||
<li>Ensure compliance with legal obligations</li>
|
||||
</ul>
|
||||
<h2 id="data-sharing">Data Sharing</h2>
|
||||
<p>
|
||||
We do not sell, trade, or share your personal information with third
|
||||
parties except as required by law.
|
||||
</p>
|
||||
<h2 id="data-security">Data Security</h2>
|
||||
<p>
|
||||
We implement robust security measures to protect your personal
|
||||
information from unauthorized access, alteration, disclosure, or
|
||||
destruction.
|
||||
</p>
|
||||
<h2 id="your-rights">Your Rights</h2>
|
||||
<p>You have the right to:</p>
|
||||
<ul>
|
||||
<li>Access the personal information we hold about you</li>
|
||||
<li>Request corrections to your personal information</li>
|
||||
<li>Request the deletion of your personal information</li>
|
||||
</ul>
|
||||
<h2 id="contact-us">Contact Us</h2>
|
||||
<p>
|
||||
If you have any questions or concerns about this privacy policy or our
|
||||
data practices, please contact us at lily@solsynth.dev.
|
||||
</p>
|
||||
<h2 id="changes-to-this-policy">Changes to This Policy</h2>
|
||||
<p>
|
||||
We may update this privacy policy from time to time. Any changes will be
|
||||
posted on this page, and we will notify you of any significant changes.
|
||||
</p>
|
||||
</article>
|
||||
</div>
|
||||
</Layout>
|
155
src/pages/terms/user-agreements.astro
Normal file
155
src/pages/terms/user-agreements.astro
Normal file
@ -0,0 +1,155 @@
|
||||
---
|
||||
import Layout from '../../layouts/Layout.astro'
|
||||
---
|
||||
|
||||
<Layout title="User Agreements">
|
||||
<div class="container max-w-[85ch] mx-auto mt-[25vh] flex flex-col gap-4">
|
||||
<h1 class="text-4xl font-bold">User Agreements</h1>
|
||||
|
||||
<article class="prose prose-lg max-w-none mt-5">
|
||||
<p>
|
||||
This Agreement applies to all Solsynth LLC products, including but not
|
||||
limited to Solar Network, Solian, DietaryGuard, AceField.
|
||||
</p>
|
||||
<h2 id="provision-and-discontinuance-of-service">
|
||||
Provision and Discontinuance of Service
|
||||
</h2>
|
||||
<p>
|
||||
Solsynth LLC will provide equal service to all living things in the
|
||||
world, including grasshoppers. We also reserve the right to stop service
|
||||
to any user. We do not require prior notice for discontinuing services
|
||||
to some users.
|
||||
</p>
|
||||
<h2 id="user-generated-content">User Generated Content</h2>
|
||||
<p>
|
||||
Any content posted on Solar Network (including but not limited to posts,
|
||||
articles, attachments) grants Solsynth LLC the right to display it by
|
||||
default. Unless otherwise stated by the user, all rights are reserved by
|
||||
the original poster, and reprints should be authorized by the original
|
||||
poster.
|
||||
</p>
|
||||
<h3 id="reproduction-recognition">Reproduction Recognition</h3>
|
||||
<p>
|
||||
Unless specifically stated by the poster, all content is subject to the
|
||||
definition of reprint in this section.
|
||||
</p>
|
||||
<p>
|
||||
Republishing means uploading the content of the original post to another
|
||||
platform or to the Solar Network, either unchanged or with minor
|
||||
modifications, provided that simultaneous reposting of the post,
|
||||
embedded components, and links to the presentation do not constitute
|
||||
republishing. Republishing also requires attribution when authorized by
|
||||
the original poster.
|
||||
</p>
|
||||
<h3 id="freedom-of-speech">Freedom of Speech</h3>
|
||||
<p>
|
||||
We do not remove user-generated content except in cases of misuse of
|
||||
resources. We will not ask any user to remove any content.
|
||||
</p>
|
||||
<p>
|
||||
However, Solsynth LLC reserves the right to restrict and stop the
|
||||
display of content to the public that violates community guidelines
|
||||
(e.g., obscenity, violence, gore, anti-social, terrorist organizations,
|
||||
etc.).
|
||||
</p>
|
||||
<p>
|
||||
Although you have 100% freedom of speech on Solar Network. However,
|
||||
please be aware that freedom of speech does not mean that you will not
|
||||
be held accountable for what you say.
|
||||
</p>
|
||||
<h4 id="restriction-and-discontinuation">
|
||||
Restriction and Discontinuation
|
||||
</h4>
|
||||
<ul>
|
||||
<li>
|
||||
<p>
|
||||
Restriction of Display: Discontinuation of related tweets, while
|
||||
retaining the right to access them directly through resource
|
||||
identifiers and sharing links.
|
||||
</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>
|
||||
Cease display: stop all access to the resource by anyone other than
|
||||
the author.
|
||||
</p>
|
||||
</li>
|
||||
</ul>
|
||||
<h2 id="resource-misuse-prevention-policy">
|
||||
Resource Misuse Prevention Policy
|
||||
</h2>
|
||||
<p>
|
||||
Although there are no capacity limitations for using Solar Network's
|
||||
data hosting services, resources determined to be abusive will be
|
||||
disenfranchised from some features. Solsynth LLC reserves the right to
|
||||
reclaim space on previously uploaded resources for deletion.
|
||||
</p>
|
||||
<h3 id="determination-of-misuse">Determination of Misuse</h3>
|
||||
<ul>
|
||||
<li>
|
||||
Uploading without using: e.g. uploading excessive attachments in Solar
|
||||
Network's Interactive Attachment Pool and not linking them to
|
||||
posts.
|
||||
</li>
|
||||
<li>
|
||||
Meaningless Posts: meaningless shuffling or wasting of Solar
|
||||
Network's storage resources
|
||||
</li>
|
||||
<li>
|
||||
Misuse: using Solar Network's public resources as if they were
|
||||
your own dedicated pool (see the Wiki's Dedicated Pools page for
|
||||
details).
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
The Solsynth Trust & Safety Team is ultimately responsible for
|
||||
determining misuse.
|
||||
</p>
|
||||
<h2 id="secondary-releases">Secondary Releases</h2>
|
||||
<p>
|
||||
A secondary release is when our assets are downloaded and re-hosted on
|
||||
another site.
|
||||
</p>
|
||||
<h3 id="product-secondary-release">Product Secondary Release</h3>
|
||||
<p>
|
||||
Unless otherwise stated, Solsynth LLC products are not available for
|
||||
secondary distribution, please do not download our product builds and
|
||||
upload them twice to another site. Please do not download our product
|
||||
builds and upload them to other sites. <strong
|
||||
>Secondary distribution for commercial use is not permitted.
|
||||
</strong>.
|
||||
</p>
|
||||
<p>
|
||||
What you should do is post a link to our product on another site. Or use
|
||||
the embedded component. And indicate Solsynth LLC All Rights Reserved.
|
||||
</p>
|
||||
<p>
|
||||
If you want to build a mirror site of our products, please contact us to
|
||||
waive this rule.
|
||||
</p>
|
||||
<h3 id="secondary-distribution-of-source-code">
|
||||
Secondary distribution of source code
|
||||
</h3>
|
||||
<p>
|
||||
We do not allow any form of redistribution of source code (except for
|
||||
Forks). This includes, but is not limited to, mirroring code
|
||||
repositories on GitHub or the Solsynth Code Repository to other Git
|
||||
providers such as GitLab, Gitee, and so on.
|
||||
<strong>Selling source code twice is not allowed. </strong>
|
||||
</p>
|
||||
<p>
|
||||
For more information on source code usage regulations, please follow the
|
||||
open source license used by the project.
|
||||
</p>
|
||||
<p>
|
||||
If you would like to set up a mirror of our source code, please contact
|
||||
us to waive this policy.
|
||||
</p>
|
||||
<hr />
|
||||
<p>
|
||||
Solsynth LLC reserves the right of final interpretation of this
|
||||
agreement.
|
||||
</p>
|
||||
</article>
|
||||
</div>
|
||||
</Layout>
|
Loading…
Reference in New Issue
Block a user