2023-06-11 19:18:58 +05:00
|
|
|
<script lang="ts">
|
2026-01-04 22:50:34 +05:00
|
|
|
import { Notification, Space } from "@svelteuidev/core"
|
|
|
|
|
import { InfoCircled } from "radix-icons-svelte"
|
|
|
|
|
|
2023-06-11 19:18:58 +05:00
|
|
|
import HDivider from "@/components/elements/HDivider.svelte"
|
|
|
|
|
import Footer from "@/components/Footer.svelte"
|
2026-01-07 05:04:04 +05:00
|
|
|
import { appInfo, translations, translate } from "@/stores"
|
|
|
|
|
|
|
|
|
|
$: t = (key: string) => translate($translations, key)
|
2023-06-11 19:18:58 +05:00
|
|
|
|
2026-01-04 22:50:34 +05:00
|
|
|
let tgLink = ""
|
|
|
|
|
appInfo.subscribe(info => {
|
|
|
|
|
tgLink = info.tgOfficialLink
|
|
|
|
|
})
|
2023-06-11 19:18:58 +05:00
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<Space h="xl" />
|
|
|
|
|
|
2026-01-04 22:50:34 +05:00
|
|
|
<Notification
|
2026-01-07 05:04:04 +05:00
|
|
|
title={t('commands-wip-title')}
|
2026-01-04 22:50:34 +05:00
|
|
|
icon={InfoCircled}
|
|
|
|
|
color="blue"
|
|
|
|
|
withCloseButton={false}
|
|
|
|
|
>
|
2026-01-07 05:04:04 +05:00
|
|
|
{t('commands-wip-desc')}<br />
|
|
|
|
|
{t('commands-wip-follow')} <a href={tgLink} target="_blank">{t('commands-wip-channel')}</a>!
|
2023-06-11 19:18:58 +05:00
|
|
|
</Notification>
|
|
|
|
|
|
2026-01-04 22:50:34 +05:00
|
|
|
<div class="placeholder-image">
|
|
|
|
|
<img src="/media/images/tenor.gif" alt="bruh" width="320px" />
|
2023-06-11 19:18:58 +05:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<HDivider />
|
2026-01-04 22:50:34 +05:00
|
|
|
<Footer />
|
|
|
|
|
|
|
|
|
|
<style>
|
|
|
|
|
.placeholder-image {
|
|
|
|
|
text-align: center;
|
|
|
|
|
margin-top: 25px;
|
|
|
|
|
}
|
2026-01-07 05:04:04 +05:00
|
|
|
</style>
|