web/about/general: update the community section

This commit is contained in:
wukko 2024-09-09 13:39:30 +06:00
parent 272b7a64b8
commit 2049e65221
No known key found for this signature in database
GPG key ID: 3E30B3F26C7B4AA2
2 changed files with 27 additions and 11 deletions

View file

@ -46,9 +46,13 @@ const donate = {
const siriShortcuts = {
photos: "https://www.icloud.com/shortcuts/14e9aebf04b24156acc34ceccf7e6fcd",
files: "https://www.icloud.com/shortcuts/2134cd9d4d6b41448b2201f933542b2e",
}
};
const docs = {
instanceHosting: "https://github.com/imputnet/cobalt/blob/main/docs/run-an-instance.md",
};
const apiURL = "https://api.cobalt.tools";
export { donate, apiURL, contacts, partners, siriShortcuts };
export { donate, apiURL, contacts, partners, siriShortcuts, docs };
export default variables;

View file

@ -1,5 +1,5 @@
<script lang="ts">
import { partners, contacts } from "$lib/env";
import { partners, contacts, docs } from "$lib/env";
import OuterLink from "$components/misc/OuterLink.svelte";
</script>
@ -50,17 +50,29 @@
<section id="community">
<h3>open community</h3>
<p>
we believe that the future of the internet is open,
which is why cobalt's backend is open source, and the web app is source-available.
you can
<OuterLink href="{contacts.github}">check & contribute to both</OuterLink>
at any time, we welcome all contributions and suggestions!
</p>
<p>
cobalt is used by countless artists, educators, and content creators to do what they love.
we're always on the line with our community and work together to create even more useful tools for them.
feel free to <a href="/about/community">join the conversation</a>, too!
feel free to <a href="/about/community">join the conversation</a>!
</p>
<p>
we believe that the future of the internet is open,
which is why cobalt is
<OuterLink
href="https://sourcefirst.com/">
source first
</OuterLink>
and
<OuterLink href={docs.instanceHosting}>
easily self-hostable.
</OuterLink>
you can <OuterLink href="{contacts.github}">check the source code & contribute to cobalt</OuterLink>
at any time, we welcome all contributions and suggestions.
</p>
<p>
you can use any processing instances hosted by the community, including your own.
if your friend hosts one, just ask them for a domain and <a href="/settings/instances#community">add it in instance settings</a>.
</p>
</section>