2023-09-06 09:46:40 +02:00
|
|
|
import { Qrcode } from '@vicons/tabler';
|
|
|
|
import { defineTool } from '../tool';
|
2024-02-01 14:05:54 +01:00
|
|
|
import { translate } from '@/plugins/i18n.plugin';
|
2023-09-06 09:46:40 +02:00
|
|
|
|
|
|
|
export const tool = defineTool({
|
2024-02-01 14:05:54 +01:00
|
|
|
name: translate('tools.wifi-qrcode-generator.title'),
|
2023-09-06 09:46:40 +02:00
|
|
|
path: '/wifi-qrcode-generator',
|
2024-02-01 14:05:54 +01:00
|
|
|
description: translate('tools.wifi-qrcode-generator.description'),
|
2023-09-06 09:46:40 +02:00
|
|
|
keywords: ['qr', 'code', 'generator', 'square', 'color', 'link', 'low', 'medium', 'quartile', 'high', 'transparent', 'wifi'],
|
|
|
|
component: () => import('./wifi-qr-code-generator.vue'),
|
|
|
|
icon: Qrcode,
|
|
|
|
createdAt: new Date('2023-09-06'),
|
|
|
|
});
|