doc: update about page

This commit is contained in:
Artemy 2023-04-27 19:01:46 +03:00
parent 24046c0f32
commit 06e8f6ce41
3 changed files with 15 additions and 7 deletions

View file

@ -1,8 +1,10 @@
## Anopaper - anonymous notes service ## Anopaper - anonymous notes service
## AnoPaper allows you to save and share notes anonymously. ---
### Functionality: #### AnoPaper allows you to save and share notes anonymously.
##### Functionality:
- Notes support markdown format. For example, the entry: `### Level 3 Heading` would look like this: - Notes support markdown format. For example, the entry: `### Level 3 Heading` would look like this:
@ -13,3 +15,5 @@
- Public notes are available only by link. - Public notes are available only by link.
- When you click on the link, the note is saved locally and deleted from the server. - When you click on the link, the note is saved locally and deleted from the server.
- Non-public notes are saved locally and are not sent to the server.` - Non-public notes are saved locally and are not sent to the server.`
---

View file

@ -1,8 +1,10 @@
## Anopaper - сервис анонимных записок ## Anopaper - сервис анонимных записок
## AnoPaper позволяет анонимно сохранять и публиковать заметки. ---
### Функционал: #### AnoPaper позволяет анонимно сохранять и публиковать заметки.
##### Функционал:
- Заметки поддерживают формат markdown. Например запись: `### Заголовок 3-го уровня` будет выглядеть так: - Заметки поддерживают формат markdown. Например запись: `### Заголовок 3-го уровня` будет выглядеть так:
@ -13,3 +15,5 @@
- Публичные заметки доступны только по ссылке. - Публичные заметки доступны только по ссылке.
- При переходе по ссылке заметка сохраняется локально и удаляется с сервера. - При переходе по ссылке заметка сохраняется локально и удаляется с сервера.
- Не публичные заметки сохраняются локально и не отправляются на сервер.` - Не публичные заметки сохраняются локально и не отправляются на сервер.`
---

View file

@ -85,14 +85,14 @@ function App() {
path="/about" path="/about"
element={ element={
<> <>
<div className="col-span-4 md">
<RenderMarkdown>{locals.about_md}</RenderMarkdown>
</div>
<ButtonWithIcon <ButtonWithIcon
icon={LinkIcon} icon={LinkIcon}
text={locals.SourceCode} text={locals.SourceCode}
href="https://github.com/artegoser/AnoPaper" href="https://github.com/artegoser/AnoPaper"
/> />
<div className="col-span-4 md">
<RenderMarkdown>{locals.about_md}</RenderMarkdown>
</div>
</> </>
} }
/> />