|
|
|
@ -1,8 +1,16 @@
|
|
|
|
<script>
|
|
|
|
<script>
|
|
|
|
import DownloadNow from "./download-now.svelte";
|
|
|
|
import DownloadNow from "./download-now.svelte";
|
|
|
|
|
|
|
|
import FeatureBlock from "./feature-block.svelte";
|
|
|
|
</script>
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<section class="relative overflow-hidden bg-gradient-to-br from-white to-violet-50">
|
|
|
|
<svelte:head>
|
|
|
|
|
|
|
|
<title>Trilium Notes</title>
|
|
|
|
|
|
|
|
<!-- TODO: description?
|
|
|
|
|
|
|
|
<meta name="description" content="This is where the description goes for search engines" />
|
|
|
|
|
|
|
|
-->
|
|
|
|
|
|
|
|
</svelte:head>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<section class="relative overflow-hidden bg-gradient-to-br from-white dark:from-black to-violet-50 dark:to-violet-900">
|
|
|
|
<!-- Bokeh background circles -->
|
|
|
|
<!-- Bokeh background circles -->
|
|
|
|
<div class="absolute inset-0 pointer-events-none z-0">
|
|
|
|
<div class="absolute inset-0 pointer-events-none z-0">
|
|
|
|
<div class="absolute w-72 h-72 bg-violet-300 opacity-30 rounded-full blur-3xl top-[-50px] left-[-80px]"></div>
|
|
|
|
<div class="absolute w-72 h-72 bg-violet-300 opacity-30 rounded-full blur-3xl top-[-50px] left-[-80px]"></div>
|
|
|
|
@ -15,10 +23,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Left: Text Content -->
|
|
|
|
<!-- Left: Text Content -->
|
|
|
|
<div class="md:w-1/3">
|
|
|
|
<div class="md:w-1/3">
|
|
|
|
<h2 class="text-4xl font-bold mb-4 text-gray-900">Organize Your Thoughts.<br/> Build Your Knowledge.</h2>
|
|
|
|
<h2 class="text-4xl font-bold mb-4 text-gray-900 dark:text-white">Organize Your Thoughts.<br/> Build Your Knowledge.</h2>
|
|
|
|
<p class="text-lg mb-6 text-gray-700">
|
|
|
|
<p class="text-lg mb-6 text-gray-700 dark:text-gray-300">
|
|
|
|
Trilium Notes helps you build and organize complex personal knowledge bases effortlessly.
|
|
|
|
Trilium Notes helps you build and organize complex personal knowledge bases effortlessly.
|
|
|
|
Its unique tree structure, rich editing tools, and powerful search features make managing your information intuitive and flexible.
|
|
|
|
Its unique tree structure, rich editing tools, and powerful search features make managing your information intuitive and flexible.
|
|
|
|
|
|
|
|
<!-- TODO: remove the squiggly autocorrect lines in the screenshot!! -->
|
|
|
|
|
|
|
|
<!-- TODO: dark mode screenshot -->
|
|
|
|
</p>
|
|
|
|
</p>
|
|
|
|
<div class="flex items-center gap-6">
|
|
|
|
<div class="flex items-center gap-6">
|
|
|
|
<DownloadNow big />
|
|
|
|
<DownloadNow big />
|
|
|
|
@ -40,48 +50,72 @@
|
|
|
|
<h2 class="text-3xl font-bold text-center mb-12">Beyond Text: Smarter Note Types</h2>
|
|
|
|
<h2 class="text-3xl font-bold text-center mb-12">Beyond Text: Smarter Note Types</h2>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="grid md:grid-cols-2 gap-10">
|
|
|
|
<div class="grid md:grid-cols-2 gap-10">
|
|
|
|
<!-- Canvas Notes -->
|
|
|
|
<FeatureBlock
|
|
|
|
<div class="bg-white rounded-xl shadow overflow-hidden">
|
|
|
|
imgSrc="/note-types/canvas.png"
|
|
|
|
<img src="/note-types/canvas.png" alt="Canvas Note Screenshot" class="w-full h-56 object-cover object-top">
|
|
|
|
imgAlt="Canvas Note Screenshot"
|
|
|
|
<div class="p-6">
|
|
|
|
title="Canvas Notes"
|
|
|
|
<h3 class="text-xl font-semibold mb-2">Canvas Notes</h3>
|
|
|
|
text="Draw and arrange elements freely using an Excalidraw-powered canvas — ideal for diagrams, sketches, and visual planning."
|
|
|
|
<p class="text-gray-600">Draw and arrange elements freely using an Excalidraw-powered canvas — ideal for diagrams, sketches, and visual planning.</p>
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
<FeatureBlock
|
|
|
|
|
|
|
|
imgSrc="/note-types/mermaid.png"
|
|
|
|
<!-- Mermaid Diagrams -->
|
|
|
|
imgAlt="Mermaid Diagram Screenshot"
|
|
|
|
<div class="bg-white rounded-xl shadow overflow-hidden">
|
|
|
|
title="Mermaid Diagrams"
|
|
|
|
<img src="/note-types/mermaid.png" alt="Mermaid Diagram Screenshot" class="w-full h-56 object-cover object-top">
|
|
|
|
text="Render flowcharts, Gantt charts, and sequence diagrams with Mermaid markdown syntax directly in your notes."
|
|
|
|
<div class="p-6">
|
|
|
|
/>
|
|
|
|
<h3 class="text-xl font-semibold mb-2">Mermaid Diagrams</h3>
|
|
|
|
|
|
|
|
<p class="text-gray-600">Render flowcharts, Gantt charts, and sequence diagrams with Mermaid markdown syntax directly in your notes.</p>
|
|
|
|
<FeatureBlock
|
|
|
|
</div>
|
|
|
|
imgSrc="/note-types/geo-map.png"
|
|
|
|
</div>
|
|
|
|
imgAlt="Geo Map Screenshot"
|
|
|
|
|
|
|
|
title="Geo Maps"
|
|
|
|
|
|
|
|
text="Plot locations and GPX tracks to visualize geography-linked notes and movement patterns on interactive maps."
|
|
|
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<FeatureBlock
|
|
|
|
|
|
|
|
imgSrc="/note-types/mind-map.png"
|
|
|
|
|
|
|
|
imgAlt="Mind Map Screenshot"
|
|
|
|
|
|
|
|
title="Mind Maps"
|
|
|
|
|
|
|
|
text="Organize ideas visually using a drag-and-drop mind map editor powered by Mind Elixir."
|
|
|
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Geo Maps -->
|
|
|
|
<h2 class="text-3xl font-bold text-center mb-12">Technical Features</h2>
|
|
|
|
<div class="bg-white rounded-xl shadow overflow-hidden">
|
|
|
|
|
|
|
|
<img src="/note-types/geo-map.png" alt="Geo Map Screenshot" class="w-full h-56 object-cover">
|
|
|
|
|
|
|
|
<div class="p-6">
|
|
|
|
|
|
|
|
<h3 class="text-xl font-semibold mb-2">Geo Maps</h3>
|
|
|
|
|
|
|
|
<p class="text-gray-600">Plot locations and GPX tracks to visualize geography-linked notes and movement patterns on interactive maps.</p>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Mind Maps -->
|
|
|
|
<div class="grid md:grid-cols-2 gap-10">
|
|
|
|
<div class="bg-white rounded-xl shadow overflow-hidden">
|
|
|
|
<FeatureBlock
|
|
|
|
<img src="/note-types/mind-map.png" alt="Mind Map Screenshot" class="w-full h-56 object-cover">
|
|
|
|
imgSrc="/technical-features/sync-server.png"
|
|
|
|
<div class="p-6">
|
|
|
|
imgAlt="TODO"
|
|
|
|
<h3 class="text-xl font-semibold mb-2">Mind Maps</h3>
|
|
|
|
title="Synchronization Server"
|
|
|
|
<p class="text-gray-600">Organize ideas visually using a drag-and-drop mind map editor powered by Mind Elixir.</p>
|
|
|
|
text="Seamless mirroring of changes acroll all devices."
|
|
|
|
</div>
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<FeatureBlock
|
|
|
|
|
|
|
|
imgSrc="/technical-features/cross-platform.png"
|
|
|
|
|
|
|
|
imgAlt="TODO, maybe some icons"
|
|
|
|
|
|
|
|
title="Cross-platform App + Web UI"
|
|
|
|
|
|
|
|
text="Use as Electron application or in your browser."
|
|
|
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<FeatureBlock
|
|
|
|
|
|
|
|
imgSrc="/technical-features/scripting.png"
|
|
|
|
|
|
|
|
imgAlt="TODO"
|
|
|
|
|
|
|
|
title="Scripting"
|
|
|
|
|
|
|
|
text="Custom UI widgets and a REST API for automation."
|
|
|
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<FeatureBlock
|
|
|
|
|
|
|
|
imgSrc="/technical-features/grafana-metrics.png"
|
|
|
|
|
|
|
|
imgAlt="Mind Map Screenshot"
|
|
|
|
|
|
|
|
title="Grafana Metrics"
|
|
|
|
|
|
|
|
text="Measure database metrics over time."
|
|
|
|
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
|
|
<section class="mt-20 max-w-6xl mx-auto px-4">
|
|
|
|
<section class="mt-20 max-w-6xl mx-auto px-4">
|
|
|
|
<h2 class="text-3xl font-bold text-center mb-12">Feature Highlights</h2>
|
|
|
|
<h2 class="text-3xl font-bold text-center mb-12">Feature Highlights</h2>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="grid gap-12 md:grid-cols-2 max-w-4xl mx-auto text-gray-700">
|
|
|
|
<div class="grid gap-12 md:grid-cols-2 max-w-4xl mx-auto text-gray-700 dark:text-gray-300">
|
|
|
|
<!-- Organization & Navigation -->
|
|
|
|
<!-- Organization & Navigation -->
|
|
|
|
<div>
|
|
|
|
<div>
|
|
|
|
<h3 class="flex items-center text-xl font-semibold mb-6 text-violet-700">Organization & Navigation</h3>
|
|
|
|
<h3 class="flex items-center text-xl font-semibold mb-6 text-violet-700">Organization & Navigation</h3>
|
|
|
|
@ -109,7 +143,6 @@
|
|
|
|
<h3 class="flex items-center text-xl font-semibold mb-6 text-violet-700">Security & Sync</h3>
|
|
|
|
<h3 class="flex items-center text-xl font-semibold mb-6 text-violet-700">Security & Sync</h3>
|
|
|
|
<ul class="list-disc list-inside space-y-3">
|
|
|
|
<ul class="list-disc list-inside space-y-3">
|
|
|
|
<li>Direct OpenID and TOTP integration for secure login.</li>
|
|
|
|
<li>Direct OpenID and TOTP integration for secure login.</li>
|
|
|
|
<li>Synchronization with self-hosted and third-party servers.</li>
|
|
|
|
|
|
|
|
<li>Strong note encryption with per-note granularity.</li>
|
|
|
|
<li>Strong note encryption with per-note granularity.</li>
|
|
|
|
<li>Sharing notes publicly on the internet.</li>
|
|
|
|
<li>Sharing notes publicly on the internet.</li>
|
|
|
|
</ul>
|
|
|
|
</ul>
|
|
|
|
@ -120,10 +153,8 @@
|
|
|
|
<h3 class="flex items-center text-xl font-semibold mb-6 text-violet-700">Advanced & Customization</h3>
|
|
|
|
<h3 class="flex items-center text-xl font-semibold mb-6 text-violet-700">Advanced & Customization</h3>
|
|
|
|
<ul class="list-disc list-inside space-y-3">
|
|
|
|
<ul class="list-disc list-inside space-y-3">
|
|
|
|
<li>Relation maps and link maps to visualize notes.</li>
|
|
|
|
<li>Relation maps and link maps to visualize notes.</li>
|
|
|
|
<li>Scripting support and REST API for automation.</li>
|
|
|
|
|
|
|
|
<li>Touch-optimized mobile frontend and dark/user themes.</li>
|
|
|
|
<li>Touch-optimized mobile frontend and dark/user themes.</li>
|
|
|
|
<li>Customizable UI with sidebar buttons and user widgets.</li>
|
|
|
|
<li>Customizable UI with sidebar buttons and user widgets.</li>
|
|
|
|
<li>Metrics with Grafana dashboard integration.</li>
|
|
|
|
|
|
|
|
<li>Scales efficiently beyond 100,000 notes.</li>
|
|
|
|
<li>Scales efficiently beyond 100,000 notes.</li>
|
|
|
|
</ul>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@ -131,13 +162,13 @@
|
|
|
|
</section>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<section class="bg-violet-50 py-16 mt-24">
|
|
|
|
<section class="bg-violet-50 dark:bg-black py-16 mt-24">
|
|
|
|
<div class="container mx-auto text-center px-4">
|
|
|
|
<div class="container mx-auto text-center px-4">
|
|
|
|
<h2 class="text-3xl font-bold mb-4">Ready to get started with Trilium Notes?</h2>
|
|
|
|
<h2 class="text-3xl font-bold mb-4">Ready to get started with Trilium Notes?</h2>
|
|
|
|
<p class="text-lg text-gray-700 mb-8">Build your personal knowledge base with powerful features and full privacy.</p>
|
|
|
|
<p class="text-lg text-gray-700 dark:text-gray-200 mb-8">Build your personal knowledge base with powerful features and full privacy.</p>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="flex justify-center gap-6">
|
|
|
|
<div class="flex justify-center gap-6">
|
|
|
|
<a href="#" class="py-3 px-6 bg-violet-600 text-white font-semibold rounded-full shadow hover:bg-violet-700 focus:outline-none focus:ring focus:ring-violet-400 focus:ring-opacity-75">
|
|
|
|
<a href="download" class="py-3 px-6 bg-violet-600 text-white font-semibold rounded-full shadow hover:bg-violet-700 focus:outline-none focus:ring focus:ring-violet-400 focus:ring-opacity-75">
|
|
|
|
Download Now
|
|
|
|
Download Now
|
|
|
|
</a>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|