mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-25 01:06:15 -04:00
28 lines
628 B
TypeScript
28 lines
628 B
TypeScript
import { DeviceMobile } from '@vicons/tabler';
|
|
import { defineTool } from '../tool';
|
|
import { translate } from '@/plugins/i18n.plugin';
|
|
|
|
export const tool = defineTool({
|
|
name: translate('tools.otp-generator.title'),
|
|
path: '/otp-generator',
|
|
description: translate('tools.otp-generator.description'),
|
|
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,
|
|
});
|