mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 04:46:40 +07:00
add "welcome" page
This commit is contained in:
parent
e7d0c83686
commit
81fba4a1be
16 changed files with 360 additions and 10 deletions
|
@ -1,8 +1,9 @@
|
|||
import { FC } from 'react';
|
||||
|
||||
import { Anchor } from '~/components/common/Anchor';
|
||||
import { Card } from '~/components/containers/Card';
|
||||
import { Group } from '~/components/containers/Group';
|
||||
import { Markdown } from '~/components/containers/Markdown';
|
||||
import markdown from '~/styles/common/markdown.module.scss';
|
||||
|
||||
export interface BorisSuperpowersProps {}
|
||||
|
||||
|
@ -12,12 +13,23 @@ const BorisSuperpowers: FC<BorisSuperpowersProps> = () => {
|
|||
<Group>
|
||||
<h3>Сейчас в разработке</h3>
|
||||
|
||||
<Markdown>
|
||||
- Раздел [рум](/room) в начальной стадии, смотрю как будет работать
|
||||
концепт. Суть идеи можно посмотреть на
|
||||
[гитхабе](https://github.com/muerwre/vault-frontend/issues/158).
|
||||
Предложения можно оставлять здесь.
|
||||
</Markdown>
|
||||
<div className={markdown.wrapper}>
|
||||
<ul>
|
||||
<li>
|
||||
Раздел <Anchor href="/room">рум</Anchor> в начальной стадии,
|
||||
смотрю как будет работать концепт. Суть идеи можно посмотреть на{' '}
|
||||
<Anchor href="https://github.com/muerwre/vault-frontend/issues/158">
|
||||
гитхабе
|
||||
</Anchor>
|
||||
. Предложения можно оставлять здесь.
|
||||
</li>
|
||||
<li>
|
||||
Раздел <Anchor href="/welcome">«где я?»</Anchor>,
|
||||
немного рассказывающий историю и мифологию Убежища. Ждёт текстов и
|
||||
иллюстраций.
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</Group>
|
||||
</Card>
|
||||
);
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
@import 'src/styles/variables';
|
||||
|
||||
.wrap {
|
||||
position: sticky;
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
pointer-events: none;
|
||||
touch-action: none;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue