aboutsummaryrefslogtreecommitdiff
path: root/src/tools/wifi-qr-code-generator/index.ts
blob: b59b95dfb9a6adc5417585d6294403f7f131f0a7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
import { Qrcode } from '@vicons/tabler';
import { defineTool } from '../tool';
import { translate } from '@/plugins/i18n.plugin';

export const tool = defineTool({
  name: translate('tools.wifi-qrcode-generator.title'),
  path: '/wifi-qrcode-generator',
  description: translate('tools.wifi-qrcode-generator.description'),
  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'),
});