mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-07-18 20:59:37 +02:00
* (feat: new tool): add wifi qr code generator * Update src/tools/wifi-qr-code-generator/wifi-qr-code-generator.vue Co-authored-by: Corentin THOMASSET <corentin.thomasset74@gmail.com> * Update src/tools/wifi-qr-code-generator/index.ts Co-authored-by: Corentin THOMASSET <corentin.thomasset74@gmail.com> * remove naive UI grid * Update src/tools/wifi-qr-code-generator/index.ts --------- Co-authored-by: Corentin THOMASSET <corentin.thomasset74@gmail.com>
13 lines
518 B
TypeScript
13 lines
518 B
TypeScript
import { Qrcode } from '@vicons/tabler';
|
|
import { defineTool } from '../tool';
|
|
|
|
export const tool = defineTool({
|
|
name: 'WiFi QR Code generator',
|
|
path: '/wifi-qrcode-generator',
|
|
description:
|
|
'Generate and download QR-codes for quick connections to WiFi networks.',
|
|
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'),
|
|
});
|