add forward and backward buttons to non-fullscreen view (#495)

* feat: create external tools section (#493)

* feat: create external tools section

* fix: better wording

* add forward and backward buttons to non-fullscreen

---------

Co-authored-by: Dominik K. <dominik@koch-bautechnik.de>
Co-authored-by: Maze Winther <mazewinther@gmail.com>
This commit is contained in:
vracto
2025-07-30 23:56:10 +02:00
committed by GitHub
co-authored by Dominik K. Maze Winther
parent f15508df62
commit b229d94a8d
6 changed files with 186 additions and 27 deletions
+22
View File
@@ -9,3 +9,25 @@ export const SITE_INFO = {
twitterImage: "/open-graph/default.jpg",
favicon: "/favicon.ico",
};
export const EXTERNAL_TOOLS = [
{
name: "Marble",
description:
"Modern headless CMS for content management and the blog for OpenCut",
url: "https://marblecms.com?utm_source=opencut",
icon: "MarbleIcon" as const,
},
{
name: "Vercel",
description: "Platform where we deploy and host OpenCut",
url: "https://vercel.com?utm_source=opencut",
icon: "VercelIcon" as const,
},
{
name: "Databuddy",
description: "GDPR compliant analytics and user insights for OpenCut",
url: "https://databuddy.cc?utm_source=opencut",
icon: "DataBuddyIcon" as const,
},
];