mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-12-29 16:16:02 +00:00
26 lines
633 B
TypeScript
26 lines
633 B
TypeScript
|
|
import { defineTool } from '@tools/defineTool';
|
||
|
|
import { lazy } from 'react';
|
||
|
|
|
||
|
|
export const tool = defineTool('image-generic', {
|
||
|
|
name: 'QR Code Generator',
|
||
|
|
path: 'qr-code',
|
||
|
|
icon: 'mdi:qrcode', // Iconify icon as a string
|
||
|
|
description:
|
||
|
|
'Generate QR codes for different data types: URL, Text, Email, Phone, SMS, WiFi, vCard, and more.',
|
||
|
|
shortDescription: 'Create customized QR codes for various data formats.',
|
||
|
|
keywords: [
|
||
|
|
'qr code',
|
||
|
|
'qrcode',
|
||
|
|
'generator',
|
||
|
|
'url',
|
||
|
|
'text',
|
||
|
|
'email',
|
||
|
|
'phone',
|
||
|
|
'sms',
|
||
|
|
'wifi',
|
||
|
|
'vcard',
|
||
|
|
'contact'
|
||
|
|
],
|
||
|
|
component: lazy(() => import('./index'))
|
||
|
|
});
|