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 time to seconds',
path: 'convert-time-to-seconds',
icon: 'material-symbols:schedule',
description:
'Convert time format (HH:MM:SS) to total seconds. Useful for time calculations and programming.',
shortDescription: 'Convert time format (HH:MM:SS) to seconds',
keywords: ['time', 'seconds', 'convert', 'format', 'HH:MM:SS'],
userTypes: ['General Users', 'Students', 'Developers'],
component: lazy(() => import('./index'))
component: lazy(() => import('./index')),
i18n: {
name: 'time:convertTimeToSeconds.title',
description: 'time:convertTimeToSeconds.description',
shortDescription: 'time:convertTimeToSeconds.shortDescription',
userTypes: ['General Users', 'Students', 'Developers']
}
});