diff --git a/apps/website/public/collection_presentation.webp b/apps/website/public/collection_presentation.webp new file mode 100644 index 000000000..f7ae75cc3 Binary files /dev/null and b/apps/website/public/collection_presentation.webp differ diff --git a/apps/website/public/translations/en/translation.json b/apps/website/public/translations/en/translation.json index 70446c657..588962cb0 100644 --- a/apps/website/public/translations/en/translation.json +++ b/apps/website/public/translations/en/translation.json @@ -74,7 +74,9 @@ "board_title": "Board", "board_description": "Organize your tasks or project status into a Kanban board with an easy way to create new items and columns and simply changing their status by dragging across the board.", "geomap_title": "Geomap", - "geomap_description": "Plan your vacations or mark your points of interest directly on a geographical map using customizable markers. Display recorded GPX tracks to track itineraries." + "geomap_description": "Plan your vacations or mark your points of interest directly on a geographical map using customizable markers. Display recorded GPX tracks to track itineraries.", + "presentation_title": "Presentation", + "presentation_description": "Organize information into slides and present them in full-screen with smooth transitions. The slides can also be exported to PDF for easy sharing." }, "faq": { "title": "Frequently Asked Questions", diff --git a/apps/website/src/assets/boxicons/bx-slideshow.svg b/apps/website/src/assets/boxicons/bx-slideshow.svg new file mode 100644 index 000000000..45dbd8251 --- /dev/null +++ b/apps/website/src/assets/boxicons/bx-slideshow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/apps/website/src/pages/Home/index.tsx b/apps/website/src/pages/Home/index.tsx index 50cb03dff..b26d43621 100644 --- a/apps/website/src/pages/Home/index.tsx +++ b/apps/website/src/pages/Home/index.tsx @@ -29,6 +29,7 @@ import calendarIcon from "../../assets/boxicons/bx-calendar.svg?raw"; import tableIcon from "../../assets/boxicons/bx-table.svg?raw"; import boardIcon from "../../assets/boxicons/bx-columns-3.svg?raw"; import geomapIcon from "../../assets/boxicons/bx-map.svg?raw"; +import presentationIcon from "../../assets/boxicons/bx-slideshow.svg?raw"; import { getPlatform } from '../../download-helper.js'; import { useEffect, useState } from 'preact/hooks'; import { Trans, useTranslation } from 'react-i18next'; @@ -240,6 +241,13 @@ function CollectionsSection() { imageUrl: "/collection_geomap.webp", moreInfo: "https://docs.triliumnotes.org/User%20Guide/User%20Guide/Note%20Types/Collections/Geo%20Map%20View.html", description: t("collections.geomap_description") + }, + { + title: t("collections.presentation_title"), + iconSvg: presentationIcon, + imageUrl: "/collection_presentation.webp", + moreInfo: "https://docs.triliumnotes.org/User%20Guide/User%20Guide/Note%20Types/Collections/Presentation%20View.html", + description: t("collections.presentation_description") } ]} />