2023-10-31 13:34:24 +02:00
|
|
|
import { Devices } from '@vicons/tabler';
|
|
|
|
import { defineTool } from '../tool';
|
2024-02-01 14:05:54 +01:00
|
|
|
import { translate } from '@/plugins/i18n.plugin';
|
2023-10-31 13:34:24 +02:00
|
|
|
|
|
|
|
export const tool = defineTool({
|
2024-02-01 14:05:54 +01:00
|
|
|
name: translate('tools.mac-address-generator.title'),
|
2023-10-31 13:34:24 +02:00
|
|
|
path: '/mac-address-generator',
|
2024-02-01 14:05:54 +01:00
|
|
|
description: translate('tools.mac-address-generator.description'),
|
2023-10-31 13:34:24 +02:00
|
|
|
keywords: ['mac', 'address', 'generator', 'random', 'prefix'],
|
|
|
|
component: () => import('./mac-address-generator.vue'),
|
|
|
|
icon: Devices,
|
|
|
|
createdAt: new Date('2023-11-31'),
|
|
|
|
});
|