29 lines
542 B
Svelte
29 lines
542 B
Svelte
<svelte:options tag="profile-coops" />
|
|
|
|
<script>
|
|
|
|
// Import statements
|
|
import { onMount } from 'svelte'
|
|
import * as AuthTools from "/js/libraries/authTools.js"
|
|
|
|
// Main code
|
|
|
|
onMount(() => {
|
|
|
|
})
|
|
|
|
</script>
|
|
|
|
<h3>Under development</h3>
|
|
|
|
<p style=" position: relative; margin-top: 2rem;">Visit <a href="https://discord.gg/Qk8KUk787z" style="color: #c52a28;">https://discord.gg/Qk8KUk787z</a> and ask for your cooperative to be added.</p>
|
|
|
|
<style>
|
|
|
|
@import '/css/common.css';
|
|
|
|
h3 {
|
|
text-align: center;
|
|
}
|
|
|
|
</style> |