Compare commits
No commits in common. "31f7b6498cb94c2ee43239cd8726fb2c5672a522" and "db1ad3f9eb02586f2ec0af963c55082b04402391" have entirely different histories.
31f7b6498c
...
db1ad3f9eb
4 changed files with 17 additions and 28 deletions
|
|
@ -3,7 +3,6 @@ const icons: Record<string, string> = {
|
|||
none: 'material-symbols:link',
|
||||
'steamcommunity.com': 'simple-icons:steam',
|
||||
'steampowered.com': 'simple-icons:steam',
|
||||
't.me': 'simple-icons:telegram',
|
||||
'twitter.com': 'simple-icons:x',
|
||||
'x.com': 'simple-icons:x',
|
||||
'github.com': 'simple-icons:github',
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<script lang="ts">
|
||||
import SocialButton from '$lib/components/SocialButton.svelte';
|
||||
import { PUBLIC_TS_DISCORD, PUBLIC_TS_TELEGRAM } from '$env/static/public';
|
||||
import { PUBLIC_TS_DISCORD } from '$env/static/public';
|
||||
import BlogCard, { BlogCardSize } from '$src/lib/components/BlogCard.svelte';
|
||||
import { page } from '$app/state';
|
||||
import type { PageData } from './$types';
|
||||
|
|
@ -67,7 +67,6 @@
|
|||
<div class="flex flex-col items-center justify-start gap-4">
|
||||
<div class="flex flex-row flex-wrap items-start justify-center gap-4">
|
||||
<SocialButton class="w-60 shrink-0" href={PUBLIC_TS_DISCORD}>Сообщество</SocialButton>
|
||||
<SocialButton class="w-60 shrink-0" href={PUBLIC_TS_TELEGRAM}>Канал</SocialButton>
|
||||
<SocialButton class="w-60 shrink-0" href="https://github.com/TeaSanctuary/">
|
||||
GitHub
|
||||
</SocialButton>
|
||||
|
|
@ -114,13 +113,13 @@
|
|||
prose-p:mt-0
|
||||
prose-p:mb-8
|
||||
bg-slate-50
|
||||
px-2
|
||||
pt-8
|
||||
pb-4
|
||||
text-base
|
||||
text-slate-950 sm:px-4 sm:text-xl"
|
||||
text-slate-950
|
||||
px-2 sm:px-4 sm:text-xl"
|
||||
>
|
||||
<section class="mx-auto flex max-w-5xl flex-col flex-nowrap">
|
||||
<section class="flex max-w-5xl flex-col flex-nowrap mx-auto">
|
||||
<svelte:component this={data.content} />
|
||||
</section>
|
||||
</article>
|
||||
|
|
@ -1,4 +1,5 @@
|
|||
<script lang="ts">
|
||||
import WarningBlock from '$lib/components/WarningBlock.svelte';
|
||||
import SocialHyperlink from '$src/lib/components/SocialHyperlink.svelte';
|
||||
</script>
|
||||
|
||||
|
|
@ -14,31 +15,17 @@
|
|||
</div>
|
||||
</section>
|
||||
|
||||
<WarningBlock>Страница находится в разработке!</WarningBlock>
|
||||
|
||||
<section class="flex justify-center">
|
||||
<div
|
||||
class="flex w-5xl max-w-screen flex-col flex-nowrap gap-12 p-2 px-2 pt-12 pb-12 text-base sm:text-xl"
|
||||
>
|
||||
<section>
|
||||
На данный момент вы можете связаться с администрацией сайта и участниками команды
|
||||
следующими способами:
|
||||
<ol class="list-inside list-decimal">
|
||||
<li>
|
||||
Через
|
||||
На данный момент вы можете связаться с администрацией сайта и участниками команды через
|
||||
<SocialHyperlink href="https://teasanctuary.ru/discord">
|
||||
нашу гильдию в Discord
|
||||
</SocialHyperlink>
|
||||
</li>
|
||||
<li>
|
||||
Через
|
||||
<SocialHyperlink href="https://t.me/tea_sanctuary">
|
||||
публичный канал Tea Sanctuary в Telegram
|
||||
</SocialHyperlink>
|
||||
</li>
|
||||
<li>
|
||||
По персональным контактам, указанным на странице
|
||||
<SocialHyperlink href="/team">Команда</SocialHyperlink>.
|
||||
</li>
|
||||
</ol>
|
||||
</SocialHyperlink>:
|
||||
</section>
|
||||
<iframe
|
||||
src="https://discord.com/widget?id=1176141874390638662&theme=dark"
|
||||
|
|
@ -50,5 +37,9 @@
|
|||
frameborder="0"
|
||||
sandbox="allow-popups allow-popups-to-escape-sandbox allow-same-origin allow-scripts"
|
||||
></iframe>
|
||||
<section>
|
||||
Вы также можете ознакомиться с социальными сетями каждого отдельного участника команды
|
||||
на странице <SocialHyperlink href="/team">Команда</SocialHyperlink>.
|
||||
</section>
|
||||
</div>
|
||||
</section>
|
||||
|
Before Width: | Height: | Size: 231 KiB After Width: | Height: | Size: 231 KiB |
Loading…
Add table
Add a link
Reference in a new issue