mirror of
https://git.shipoclu.com/moon/plspace.git
synced 2026-08-13 02:42:30 +00:00
35 lines
1.0 KiB
Svelte
35 lines
1.0 KiB
Svelte
<script lang="ts">
|
|
import Module from '$components/common/Module.svelte'
|
|
|
|
const RADICLE_REPOSITORY = 'rad://z2gAKC6ESt5ZBV419uVPf2vFtEHCT'
|
|
|
|
$effect(() => {
|
|
document.title = 'About plspace | plspace'
|
|
})
|
|
</script>
|
|
|
|
<div class="page about-page">
|
|
<h1 class="page-title">About plspace</h1>
|
|
<p class="page-subtitle">It’s always Pleroma™.</p>
|
|
|
|
<div class="layout--single">
|
|
<Module title="About plspace" variant="band">
|
|
<p>
|
|
plspace is free software licensed under the
|
|
<strong>GNU Affero General Public License (AGPL)</strong>.
|
|
</p>
|
|
<p>
|
|
The source code is in the canonical Radicle repository:
|
|
<a href={RADICLE_REPOSITORY}><code>{RADICLE_REPOSITORY}</code></a>.
|
|
</p>
|
|
<p>
|
|
Made by <a href="#/@zero@posting.solutions">@zero@posting.solutions</a>.
|
|
</p>
|
|
<p>
|
|
<strong>Privacy policy:</strong> zero logging and zero tracking.
|
|
</p>
|
|
<p><strong>proudly 100% vibe-coded slop.</strong></p>
|
|
</Module>
|
|
</div>
|
|
</div>
|