fix: missing meta

This commit is contained in:
Ibrahima G. Coulibaly
2025-03-10 00:56:05 +00:00
parent 10ff91f7e4
commit e2c6d02fe6
11 changed files with 45 additions and 36 deletions

View File

@@ -6,8 +6,9 @@ export const tool = defineTool('string', {
name: 'Rot13',
path: 'rot13',
icon: 'hugeicons:encrypt',
description: '',
shortDescription: '',
description:
'A simple tool to encode or decode text using the ROT13 cipher, which replaces each letter with the letter 13 positions after it in the alphabet.',
shortDescription: 'Encode or decode text using ROT13 cipher.',
keywords: ['rot13'],
component: lazy(() => import('./index'))
});