omni-tools/src/pages/tools/conversion/length-converter-meta.ts
2025-08-06 21:34:55 +02:00

24 lines
581 B
TypeScript

import { defineTool } from '@tools/defineTool';
import { lazy } from 'react';
export const tool = defineTool('conversion', {
path: 'length-converter',
icon: 'mdi:ruler',
keywords: [
'length',
'distance',
'convert',
'meter',
'mile',
'yard',
'foot',
'inch'
],
component: lazy(() => import('./length-converter')),
i18n: {
name: 'translation:lengthConverter.title',
description: 'translation:lengthConverter.description',
shortDescription: 'translation:lengthConverter.shortDescription',
userTypes: ['generalUsers']
}
});