it-tools/src/tools/otp-code-generator-and-validator/index.ts

29 lines
628 B
TypeScript
Raw Normal View History

2022-08-24 00:10:53 +02:00
import { DeviceMobile } from '@vicons/tabler';
import { defineTool } from '../tool';
import { translate } from '@/plugins/i18n.plugin';
2022-08-24 00:10:53 +02:00
export const tool = defineTool({
name: translate('tools.otp-generator.title'),
2022-08-24 00:22:54 +02:00
path: '/otp-generator',
description: translate('tools.otp-generator.description'),
2022-08-24 00:10:53 +02:00
keywords: [
'otp',
'code',
'generator',
'validator',
'one',
'time',
'password',
'authentication',
'MFA',
'mobile',
'device',
'security',
'TOTP',
'Time',
'HMAC',
],
component: () => import('./otp-code-generator-and-validator.vue'),
icon: DeviceMobile,
});