17 lines
330 B
TypeScript
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'),
|
|
},
|
|
]
|