From 8301489872c614b8dff085baee37b8b9d0330570 Mon Sep 17 00:00:00 2001 From: Corentin Thomasset Date: Sun, 3 Mar 2024 11:32:04 +0100 Subject: [PATCH] refactor(ascii-generator): updated tool definition --- src/tools/ascii-text-drawer/index.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/tools/ascii-text-drawer/index.ts b/src/tools/ascii-text-drawer/index.ts index f723bc43..cc1ba86c 100644 --- a/src/tools/ascii-text-drawer/index.ts +++ b/src/tools/ascii-text-drawer/index.ts @@ -2,11 +2,11 @@ import { Artboard } from '@vicons/tabler'; import { defineTool } from '../tool'; export const tool = defineTool({ - name: 'ASCII Art Text Drawer', + name: 'ASCII Art Text Generator', path: '/ascii-text-drawer', - description: 'Draw a text using Ascii Art', + 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-02-17'), + createdAt: new Date('2024-03-03'), });