2
0
Files
bot/apps/builder/libs/kbar.ts
2021-12-22 14:59:07 +01:00

17 lines
330 B
TypeScript

export const actions = [
{
id: 'blog',
name: 'Blog',
shortcut: ['b'],
keywords: 'writing words',
perform: () => (window.location.pathname = 'blog'),
},
{
id: 'contact',
name: 'Contact',
shortcut: ['c'],
keywords: 'email',
perform: () => (window.location.pathname = 'contact'),
},
]