aboutsummaryrefslogtreecommitdiff
path: root/src/tools/wifi-qr-code-generator/index.ts
diff options
context:
space:
mode:
authorGravatar Corentin THOMASSET <corentin.thomasset74@gmail.com> 2023-09-06 10:53:40 +0200
committerGravatar GitHub <noreply@github.com> 2023-09-06 10:53:40 +0200
commite9e0884789d03f229fdc9624dfe59709001ece93 (patch)
tree4b607d02d766e0524217a6ba9a56987130b310ac /src/tools/wifi-qr-code-generator/index.ts
parente0c7771e8f355939f5f57bf107f573d92842ff51 (diff)
parent0eedce69a6d375ea4b75dc66ac97883d8ec0c7ac (diff)
downloadit-tools-card-hover.tar.gz
it-tools-card-hover.tar.zst
it-tools-card-hover.zip
Merge branch 'main' into card-hovercard-hover
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'),
+});