Add drag-drop and keyboard link ordering

This commit is contained in:
2026-05-21 19:45:51 +00:00
parent 7cdf9b95f7
commit 58f7702074
3 changed files with 89 additions and 2 deletions

View File

@@ -5,6 +5,7 @@ export type LinkItem = {
url: string;
description: string;
category: string;
sort_order?: number;
enabled: boolean;
icon_url: string | null;
};