aboutsummaryrefslogtreecommitdiff
path: root/src/lib/CommandPalette/actions.ts
diff options
context:
space:
mode:
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'
+ }
+];