From e04165a1849f188bd6fbdc30c3202a4de91b22d8 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Sat, 27 Sep 2025 18:47:45 +0300 Subject: [PATCH] feat(website): use list with screenshot for note types --- apps/website/src/pages/Home/index.tsx | 57 +++++++++++++++++++++------ 1 file changed, 45 insertions(+), 12 deletions(-) diff --git a/apps/website/src/pages/Home/index.tsx b/apps/website/src/pages/Home/index.tsx index a00b6d9a8..8b4f88d50 100644 --- a/apps/website/src/pages/Home/index.tsx +++ b/apps/website/src/pages/Home/index.tsx @@ -112,15 +112,45 @@ function BenefitsSection() { function NoteTypesSection() { return ( -
-
- The notes are edited using a visual (WYSIWYG) editor, with support for tables, images, math expressions, code blocks with syntax highlighting. Quickly format the text using Markdown-like syntax or using slash commands. - Large samples of source code or scripts use a dedicated editor, with syntax highlighting for many programming languages and with various color themes. - Embed multimedia files such as PDFs, images, videos with an in-application preview. - Arrange shapes, images and text across an infinite canvas, using the same technology behind excalidraw.com. Ideal for diagrams, sketches and visual planning. - Create diagrams such as flowcharts, class & sequence diagrams, Gantt charts and many more, using the Mermaid syntax. - Organize your thoughts visually or do a brainstorming session by using mind map diagrams. -
+
+

and others:{" "} note map,{" "} @@ -191,9 +221,12 @@ function ListWithScreenshot({ items }: {

-

{selectedItem.title}

- - + {selectedItem && ( + <> +

{selectedItem.title}

+ + + )}
)