web/about/general: update the community section
This commit is contained in:
parent
272b7a64b8
commit
2049e65221
2 changed files with 27 additions and 11 deletions
|
@ -46,9 +46,13 @@ const donate = {
|
||||||
const siriShortcuts = {
|
const siriShortcuts = {
|
||||||
photos: "https://www.icloud.com/shortcuts/14e9aebf04b24156acc34ceccf7e6fcd",
|
photos: "https://www.icloud.com/shortcuts/14e9aebf04b24156acc34ceccf7e6fcd",
|
||||||
files: "https://www.icloud.com/shortcuts/2134cd9d4d6b41448b2201f933542b2e",
|
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";
|
const apiURL = "https://api.cobalt.tools";
|
||||||
|
|
||||||
export { donate, apiURL, contacts, partners, siriShortcuts };
|
export { donate, apiURL, contacts, partners, siriShortcuts, docs };
|
||||||
export default variables;
|
export default variables;
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { partners, contacts } from "$lib/env";
|
import { partners, contacts, docs } from "$lib/env";
|
||||||
import OuterLink from "$components/misc/OuterLink.svelte";
|
import OuterLink from "$components/misc/OuterLink.svelte";
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
@ -50,17 +50,29 @@
|
||||||
|
|
||||||
<section id="community">
|
<section id="community">
|
||||||
<h3>open community</h3>
|
<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>
|
<p>
|
||||||
cobalt is used by countless artists, educators, and content creators to do what they love.
|
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.
|
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>
|
</p>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue