2023-04-07 00:18:06 +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-04-07 00:18:06 +02:00
|
|
|
|
|
|
|
export const tool = defineTool({
|
2024-02-01 14:05:54 +01:00
|
|
|
name: translate('tools.mac-address-lookup.title'),
|
2023-04-09 14:03:17 +02:00
|
|
|
path: '/mac-address-lookup',
|
2024-02-01 14:05:54 +01:00
|
|
|
description: translate('tools.mac-address-lookup.description'),
|
2023-04-09 14:03:17 +02:00
|
|
|
keywords: ['mac', 'address', 'lookup', 'vendor', 'parser', 'manufacturer'],
|
2023-04-07 00:18:06 +02:00
|
|
|
component: () => import('./mac-address-lookup.vue'),
|
|
|
|
icon: Devices,
|
|
|
|
createdAt: new Date('2023-04-06'),
|
|
|
|
});
|