2025-06-03 21:40:58 +02:00
|
|
|
import { defineTool } from '@tools/defineTool';
|
|
|
|
|
import { lazy } from 'react';
|
|
|
|
|
|
|
|
|
|
export const tool = defineTool('string', {
|
|
|
|
|
name: 'Base64',
|
|
|
|
|
path: 'base64',
|
2025-06-05 18:44:19 +01:00
|
|
|
icon: 'tabler:number-64-small',
|
2025-06-03 21:40:58 +02:00
|
|
|
description:
|
|
|
|
|
'A simple tool to encode or decode data using Base64, which is commonly used in web applications.',
|
|
|
|
|
shortDescription: 'Encode or decode data using Base64.',
|
|
|
|
|
keywords: ['base64'],
|
2025-07-12 23:02:35 -07:00
|
|
|
component: lazy(() => import('./index')),
|
|
|
|
|
i18n: {
|
|
|
|
|
name: 'string.base64.name',
|
|
|
|
|
description: 'string.base64.description',
|
|
|
|
|
shortDescription: 'string.base64.shortDescription'
|
|
|
|
|
}
|
2025-06-03 21:40:58 +02:00
|
|
|
});
|