mirror of https://github.com/VERT-sh/VERT.git
feat: clarify contact stuff
This commit is contained in:
parent
cee99cb4fe
commit
e160145b89
|
@ -10,3 +10,4 @@ export const VERT_NAME =
|
||||||
: PUB_ENV === "nightly"
|
: PUB_ENV === "nightly"
|
||||||
? "VERT Nightly"
|
? "VERT Nightly"
|
||||||
: "VERT.sh";
|
: "VERT.sh";
|
||||||
|
export const CONTACT_EMAIL = "hello@vert.sh";
|
||||||
|
|
|
@ -45,6 +45,11 @@
|
||||||
Credits
|
Credits
|
||||||
</h2>
|
</h2>
|
||||||
|
|
||||||
|
<p class="-mt-4 -mb-3 font-black text-lg">
|
||||||
|
Please refrain from contacting any individual developers for questions
|
||||||
|
regarding VERT. Instead, use the email in the Resources section.
|
||||||
|
</p>
|
||||||
|
|
||||||
<!-- Main contributors -->
|
<!-- Main contributors -->
|
||||||
<div class="flex flex-col gap-4">
|
<div class="flex flex-col gap-4">
|
||||||
<div class="flex flex-col flex-wrap gap-2">
|
<div class="flex flex-col flex-wrap gap-2">
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { PUB_STRIPE_KEY, PUB_DONATION_API } from "$env/static/public";
|
// import { PUB_STRIPE_KEY, PUB_DONATION_API } from "$env/static/public";
|
||||||
import { fade } from "$lib/animation";
|
import { fade } from "$lib/animation";
|
||||||
import FancyInput from "$lib/components/functional/FancyInput.svelte";
|
import FancyInput from "$lib/components/functional/FancyInput.svelte";
|
||||||
import Panel from "$lib/components/visual/Panel.svelte";
|
import Panel from "$lib/components/visual/Panel.svelte";
|
||||||
|
|
|
@ -1,8 +1,13 @@
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import Panel from "$lib/components/visual/Panel.svelte";
|
import Panel from "$lib/components/visual/Panel.svelte";
|
||||||
import { DISCORD_URL, GITHUB_URL_VERT } from "$lib/consts";
|
import { CONTACT_EMAIL, DISCORD_URL, GITHUB_URL_VERT } from "$lib/consts";
|
||||||
import { effects } from "$lib/store/index.svelte";
|
import { effects } from "$lib/store/index.svelte";
|
||||||
import { GithubIcon, LinkIcon, MessageCircleMoreIcon } from "lucide-svelte";
|
import {
|
||||||
|
GithubIcon,
|
||||||
|
LinkIcon,
|
||||||
|
MailIcon,
|
||||||
|
MessageCircleMoreIcon,
|
||||||
|
} from "lucide-svelte";
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<Panel class="flex flex-col gap-4 p-6">
|
<Panel class="flex flex-col gap-4 p-6">
|
||||||
|
@ -19,7 +24,9 @@
|
||||||
href={DISCORD_URL}
|
href={DISCORD_URL}
|
||||||
target="_blank"
|
target="_blank"
|
||||||
rel="noopener noreferrer"
|
rel="noopener noreferrer"
|
||||||
class="btn {$effects ? "" : "!scale-100"} flex-1 gap-2 p-4 rounded-full bg-button text-black dynadark:text-white flex items-center justify-center"
|
class="btn {$effects
|
||||||
|
? ''
|
||||||
|
: '!scale-100'} flex-1 gap-2 p-4 rounded-full bg-button text-black dynadark:text-white flex items-center justify-center"
|
||||||
>
|
>
|
||||||
<MessageCircleMoreIcon size="24" class="inline-block mr-2" />
|
<MessageCircleMoreIcon size="24" class="inline-block mr-2" />
|
||||||
Discord
|
Discord
|
||||||
|
@ -28,10 +35,23 @@
|
||||||
href={GITHUB_URL_VERT}
|
href={GITHUB_URL_VERT}
|
||||||
target="_blank"
|
target="_blank"
|
||||||
rel="noopener noreferrer"
|
rel="noopener noreferrer"
|
||||||
class="btn {$effects ? "" : "!scale-100"} flex-1 gap-2 p-4 rounded-full bg-button text-black dynadark:text-white flex items-center justify-center"
|
class="btn {$effects
|
||||||
|
? ''
|
||||||
|
: '!scale-100'} flex-1 gap-2 p-4 rounded-full bg-button text-black dynadark:text-white flex items-center justify-center"
|
||||||
>
|
>
|
||||||
<GithubIcon size="24" class="inline-block mr-2" />
|
<GithubIcon size="24" class="inline-block mr-2" />
|
||||||
Source
|
Source
|
||||||
</a>
|
</a>
|
||||||
|
<a
|
||||||
|
href="mailto:{CONTACT_EMAIL}"
|
||||||
|
target="_blank"
|
||||||
|
rel="noopener noreferrer"
|
||||||
|
class="btn {$effects
|
||||||
|
? ''
|
||||||
|
: '!scale-100'} flex-1 gap-2 p-4 rounded-full bg-button text-black dynadark:text-white flex items-center justify-center"
|
||||||
|
>
|
||||||
|
<MailIcon size="24" class="inline-block mr-2" />
|
||||||
|
Email
|
||||||
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</Panel>
|
</Panel>
|
||||||
|
|
|
@ -123,9 +123,9 @@
|
||||||
>
|
>
|
||||||
<!-- Why VERT? & Credits -->
|
<!-- Why VERT? & Credits -->
|
||||||
<div class="flex flex-col gap-4 flex-1">
|
<div class="flex flex-col gap-4 flex-1">
|
||||||
{#if donationsEnabled}
|
<!-- {#if donationsEnabled}
|
||||||
<About.Donate donors={[]} />
|
<About.Donate donors={[]} />
|
||||||
{/if}
|
{/if} -->
|
||||||
<About.Why />
|
<About.Why />
|
||||||
{#if !donationsEnabled}
|
{#if !donationsEnabled}
|
||||||
<About.Vertd />
|
<About.Vertd />
|
||||||
|
|
Loading…
Reference in New Issue