aboutsummaryrefslogtreecommitdiff
path: root/src/lib/CommandPalette/actions.ts
diff options
context:
space:
mode:
authorFuwn <[email protected]>2025-05-06 06:04:52 -0700
committerFuwn <[email protected]>2025-05-06 06:04:52 -0700
commit7771e2618d3bffbcaebc23a21d2e34fe4012d89a (patch)
tree376e4ceec4e50bc8dfb2b0990e0e619366c87b36 /src/lib/CommandPalette/actions.ts
parentfix(anime): Exclude AiOmoDarkElf from subtitle matching (diff)
downloaddue.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.ts34
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'
+ }
+];