Merge branch 'main' into tools-filtering

This commit is contained in:
AshAnand34
2025-07-18 14:45:15 -07:00
336 changed files with 21767 additions and 2122 deletions

View File

@@ -2,13 +2,15 @@ import { defineTool } from '@tools/defineTool';
import { lazy } from 'react';
export const tool = defineTool('time', {
name: 'Convert seconds to time',
path: 'convert-seconds-to-time',
icon: 'material-symbols:schedule',
description:
'Convert seconds to readable time format (HH:MM:SS). Useful for time calculations and formatting.',
shortDescription: 'Convert seconds to time format (HH:MM:SS)',
keywords: ['seconds', 'time', 'convert', 'format', 'HH:MM:SS'],
userTypes: ['General Users', 'Students'],
component: lazy(() => import('./index'))
keywords: ['seconds', 'time', 'convert', 'format'],
component: lazy(() => import('./index')),
i18n: {
name: 'time:convertSecondsToTime.title',
description: 'time:convertSecondsToTime.description',
shortDescription: 'time:convertSecondsToTime.shortDescription',
userTypes: ['General Users', 'Students']
}
});