aboutsummaryrefslogtreecommitdiff
path: root/src/tools/wifi-qr-code-generator/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/wifi-qr-code-generator/index.ts')
-rw-r--r--src/tools/wifi-qr-code-generator/index.ts13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/tools/wifi-qr-code-generator/index.ts b/src/tools/wifi-qr-code-generator/index.ts
new file mode 100644
index 0000000..ad0135c
--- /dev/null
+++ b/src/tools/wifi-qr-code-generator/index.ts
@@ -0,0 +1,13 @@
+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'),
+});