Skip to content

Commit d8e9cad

Browse files
committed
feat(website): describe presentation collection
1 parent 6ed333d commit d8e9cad

File tree

4 files changed

+12
-1
lines changed

4 files changed

+12
-1
lines changed
26.9 KB
Loading

apps/website/public/translations/en/translation.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,9 @@
7474
"board_title": "Board",
7575
"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.",
7676
"geomap_title": "Geomap",
77-
"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."
77+
"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.",
78+
"presentation_title": "Presentation",
79+
"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."
7880
},
7981
"faq": {
8082
"title": "Frequently Asked Questions",
Lines changed: 1 addition & 0 deletions
Loading

apps/website/src/pages/Home/index.tsx

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ import calendarIcon from "../../assets/boxicons/bx-calendar.svg?raw";
2929
import tableIcon from "../../assets/boxicons/bx-table.svg?raw";
3030
import boardIcon from "../../assets/boxicons/bx-columns-3.svg?raw";
3131
import geomapIcon from "../../assets/boxicons/bx-map.svg?raw";
32+
import presentationIcon from "../../assets/boxicons/bx-slideshow.svg?raw";
3233
import { getPlatform } from '../../download-helper.js';
3334
import { useEffect, useState } from 'preact/hooks';
3435
import { Trans, useTranslation } from 'react-i18next';
@@ -240,6 +241,13 @@ function CollectionsSection() {
240241
imageUrl: "/collection_geomap.webp",
241242
moreInfo: "https://docs.triliumnotes.org/User%20Guide/User%20Guide/Note%20Types/Collections/Geo%20Map%20View.html",
242243
description: t("collections.geomap_description")
244+
},
245+
{
246+
title: t("collections.presentation_title"),
247+
iconSvg: presentationIcon,
248+
imageUrl: "/collection_presentation.webp",
249+
moreInfo: "https://docs.triliumnotes.org/User%20Guide/User%20Guide/Note%20Types/Collections/Presentation%20View.html",
250+
description: t("collections.presentation_description")
243251
}
244252
]} />
245253
</Section>

0 commit comments

Comments
 (0)