diff --git a/src/components/KanbanBoard.tsx b/src/components/KanbanBoard.tsx index c9407ab..6f812ec 100644 --- a/src/components/KanbanBoard.tsx +++ b/src/components/KanbanBoard.tsx @@ -2,7 +2,7 @@ import { useLinear, Status } from "../context/LinearContext"; import IssueCard from "./IssueCard"; const STATUS_CONFIG: Record = { - backlog: { label: "Backlog", color: "text-status-backlog" }, + backlog: { label: "FRONT LOG", color: "text-status-backlog" }, todo: { label: "Todo", color: "text-status-todo" }, "in-progress": { label: "In Progress", color: "text-status-progress" }, "in-review": { label: "In Review", color: "text-status-review" }, diff --git a/src/context/LinearContext.tsx b/src/context/LinearContext.tsx index 64b7be8..e427292 100644 --- a/src/context/LinearContext.tsx +++ b/src/context/LinearContext.tsx @@ -97,7 +97,7 @@ const initialIssues: Issue[] = [ { id: "3", identifier: "PLS-3", - title: "Design new landing page", + title: "Design OLD landing page", description: "Create a modern landing page design with hero section and feature cards", status: "todo", @@ -186,7 +186,7 @@ const initialIssues: Issue[] = [ { id: "10", identifier: "PLS-10", - title: "Add export functionality", + title: "Remove functionalityDO IT", description: "Allow users to export their data in CSV and JSON formats", status: "backlog", priority: "low",