Files
omni-tools/src/pages/tools/string/uppercase/meta.ts
Ibrahima G. Coulibaly fc58d7f9ee chore: update meta
2025-03-08 07:38:45 +00:00

13 lines
626 B
TypeScript

import { defineTool } from '@tools/defineTool';
import { lazy } from 'react';
export const tool = defineTool('string', {
name: 'Uppercase',
path: 'uppercase',
icon: '',
description: "World's simplest browser-based utility for converting text to uppercase. Just input your text and it will be automatically converted to all capital letters. Perfect for creating headlines, emphasizing text, or standardizing text format. Supports various text formats and preserves special characters.",
shortDescription: 'Convert text to uppercase letters',
keywords: ['uppercase'],
component: lazy(() => import('./index'))
});