Skip to content

Commit 9b94f89

Browse files
committed
roadmao
1 parent 07c2289 commit 9b94f89

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

apps/web/src/app/roadmap/page.tsx

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ import { Badge } from "@/components/ui/badge";
55
import { ReactMarkdownWrapper } from "@/components/ui/react-markdown-wrapper";
66
import { cn } from "@/utils/ui";
77

8+
const LAST_UPDATED = "February 25, 2026";
9+
810
type StatusType = "complete" | "pending" | "default" | "info";
911

1012
interface Status {
@@ -47,9 +49,9 @@ const roadmapItems: RoadmapItem[] = [
4749
},
4850
},
4951
{
50-
title: "Badge (potentially)",
52+
title: "Native app (mobile/desktop)",
5153
description:
52-
'An "Edit with OpenCut" badge web apps can integrate. Shows on video players.',
54+
"Native OpenCut apps for Mac, Windows, Linux, and iOS/Android.",
5355
status: {
5456
text: "Not started",
5557
type: "default",
@@ -88,7 +90,7 @@ export default function RoadmapPage() {
8890
return (
8991
<BasePage
9092
title="Roadmap"
91-
description="What's coming next for OpenCut (last updated: February 2026)"
93+
description={`What's coming next for OpenCut (last updated: ${LAST_UPDATED})`}
9294
>
9395
<div className="mx-auto flex max-w-4xl flex-col gap-16">
9496
<div className="flex flex-col gap-6">

0 commit comments

Comments
 (0)