diff --git a/apps/website/src/pages/Home/index.css b/apps/website/src/pages/Home/index.css index 279d7d91d..3fb77c6b5 100644 --- a/apps/website/src/pages/Home/index.css +++ b/apps/website/src/pages/Home/index.css @@ -145,6 +145,10 @@ section.accented { padding: 1em; } +.benefits-container .card h3 { + color: var(--brand-1); +} + section.final-cta { text-align: center; padding: 6em 0; diff --git a/apps/website/src/pages/Home/index.tsx b/apps/website/src/pages/Home/index.tsx index bdec86189..7a1b53372 100644 --- a/apps/website/src/pages/Home/index.tsx +++ b/apps/website/src/pages/Home/index.tsx @@ -67,27 +67,34 @@ function HeroSection() { function BenefitsSection() { return ( -
-
- Notes can be arranged hierarchically. There's no need for folders, since each note can contain sub-notes. A single note can be added in multiple places in the hierarchy. - Define relations between notes - or add labels for easy categorization. Using promoted attributes, there's an easy way to - enter structured information about the notes which can later be displayed in other formats such as a - table. - Notes are periodically saved in the background and revisions can be used to check the old content of a note or delete accidental changes. Revisions can also be created on-demand. - Jump quickly to notes across the hierarchy by searching for their title, with - fuzzy matching to account for typos or slight differences. Or search through all the various - commands of the application. - Or search for text inside notes and narrow down the search by filtering by the parent note, or by depth. - Protect sensitive personal information by encrypting the notes and locking them behind a password-protected session. - Easily import Markdown and ENEX formats from other note-taking applications, or export to Markdown or HTML. - Easily separate your personal and work notes by grouping them under a workspace, which focuses your note tree to only show a specific set of notes. - Grab web pages (or screenshots) and place them directly into Trilium using the web clipper browser extension. - Use a self-hosted or cloud instance to easily synchronize your notes across multiple devices, and to access it from your mobile phone using a PWA (progressive web application). - If you have a server instance, you can easily use it to share a subset of your notes with other people. - Create your own integrations within Trilium by writing custom widgets, or custom-server side logic. Interact externally with the Trilium database by using the built-in REST API. -
-
+ <> +
+
+ Notes can be arranged hierarchically. There's no need for folders, since each note can contain sub-notes. A single note can be added in multiple places in the hierarchy. + Define relations between notes or add labels for easy categorization. Using promoted attributes, there's an easy way to enter structured information about the notes which can later be displayed in other formats such as a table. + Easily separate your personal and work notes by grouping them under a workspace, which focuses your note tree to only show a specific set of notes. +
+
+ +
+
+ Notes are periodically saved in the background and revisions can be used to check the old content of a note or delete accidental changes. Revisions can also be created on-demand. + Use a self-hosted or cloud instance to easily synchronize your notes across multiple devices, and to access it from your mobile phone using a PWA (progressive web application). + Protect sensitive personal information by encrypting the notes and locking them behind a password-protected session. + Jump quickly to notes across the hierarchy by searching for their title, with fuzzy matching to account for typos or slight differences. Or search through all the various commands of the application. + Or search for text inside notes and narrow down the search by filtering by the parent note, or by depth. + Grab web pages (or screenshots) and place them directly into Trilium using the web clipper browser extension. +
+
+ +
+
+ Easily import Markdown and ENEX formats from other note-taking applications, or export to Markdown or HTML. + If you have a server instance, you can easily use it to share a subset of your notes with other people. + Create your own integrations within Trilium by writing custom widgets, or custom-server side logic. Interact externally with the Trilium database by using the built-in REST API. +
+
+ ); }