diff options
| author | Fuwn <[email protected]> | 2025-05-06 06:04:52 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-05-06 06:04:52 -0700 |
| commit | 7771e2618d3bffbcaebc23a21d2e34fe4012d89a (patch) | |
| tree | 376e4ceec4e50bc8dfb2b0990e0e619366c87b36 /src/lib/CommandPalette/actions.ts | |
| parent | fix(anime): Exclude AiOmoDarkElf from subtitle matching (diff) | |
| download | due.moe-7771e2618d3bffbcaebc23a21d2e34fe4012d89a.tar.xz due.moe-7771e2618d3bffbcaebc23a21d2e34fe4012d89a.zip | |
feat: Add command palette
Diffstat (limited to 'src/lib/CommandPalette/actions.ts')
| -rw-r--r-- | src/lib/CommandPalette/actions.ts | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/src/lib/CommandPalette/actions.ts b/src/lib/CommandPalette/actions.ts new file mode 100644 index 00000000..73128a2c --- /dev/null +++ b/src/lib/CommandPalette/actions.ts @@ -0,0 +1,34 @@ +export const defaultActions = [ + { + name: 'Home', + url: '/' + }, + { + name: 'Completed', + url: '/completed' + }, + { + name: 'Subtitle Schedule', + url: '/schedule' + }, + { + name: 'hololive Schedule', + url: '/hololive' + }, + { + name: 'Character Birthdays', + url: '/birthdays' + }, + { + name: 'New Releases', + url: '/releases' + }, + { + name: 'Settings', + url: '/settings' + }, + { + name: 'My Profile', + url: '/user' + } +]; |