diff options
Diffstat (limited to 'src/tools/ascii-text-drawer/index.ts')
-rw-r--r-- | src/tools/ascii-text-drawer/index.ts | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/tools/ascii-text-drawer/index.ts b/src/tools/ascii-text-drawer/index.ts new file mode 100644 index 0000000..cc1ba86 --- /dev/null +++ b/src/tools/ascii-text-drawer/index.ts @@ -0,0 +1,12 @@ +import { Artboard } from '@vicons/tabler'; +import { defineTool } from '../tool'; + +export const tool = defineTool({ + name: 'ASCII Art Text Generator', + path: '/ascii-text-drawer', + description: 'Create ASCII art text with many fonts and styles.', + keywords: ['ascii', 'asciiart', 'text', 'drawer'], + component: () => import('./ascii-text-drawer.vue'), + icon: Artboard, + createdAt: new Date('2024-03-03'), +}); |