refactor(ascii-generator): updated tool definition

This commit is contained in:
Corentin Thomasset 2024-03-03 11:32:04 +01:00
parent 53e306b096
commit 8301489872
No known key found for this signature in database
GPG key ID: 623706FB51207280

View file

@ -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'),
});