J.A.R.V.I.S-rust/frontend/src/routes/commands/index.svelte

40 lines
1.1 KiB
Svelte
Raw Normal View History

<script lang="ts">
2026-01-04 22:50:34 +05:00
import { Notification, Space } from "@svelteuidev/core"
import { InfoCircled } from "radix-icons-svelte"
import HDivider from "@/components/elements/HDivider.svelte"
import Footer from "@/components/Footer.svelte"
2026-01-04 22:50:34 +05:00
import { appInfo } from "@/stores"
2026-01-04 22:50:34 +05:00
let tgLink = ""
appInfo.subscribe(info => {
tgLink = info.tgOfficialLink
})
</script>
<Space h="xl" />
2026-01-04 22:50:34 +05:00
<Notification
title="[404] Этот раздел еще находится в разработке!"
icon={InfoCircled}
color="blue"
withCloseButton={false}
>
Тут будет список команд + полноценный редактор команд.<br />
Следите за обновлениями в <a href={tgLink} target="_blank">нашем телеграм канале</a>!
</Notification>
2026-01-04 22:50:34 +05:00
<div class="placeholder-image">
<img src="/media/images/tenor.gif" alt="bruh" width="320px" />
</div>
<HDivider />
2026-01-04 22:50:34 +05:00
<Footer />
<style>
.placeholder-image {
text-align: center;
margin-top: 25px;
}
</style>