2025-03-26 17:40:24 +00:00
|
|
|
import { defineTool } from '@tools/defineTool';
|
|
|
|
|
import { lazy } from 'react';
|
|
|
|
|
|
|
|
|
|
export const tool = defineTool('time', {
|
2025-07-12 11:02:15 -07:00
|
|
|
name: 'Convert time to seconds',
|
2025-03-26 17:40:24 +00:00
|
|
|
path: 'convert-time-to-seconds',
|
2025-07-12 11:02:15 -07:00
|
|
|
icon: 'material-symbols:schedule',
|
2025-03-26 17:40:24 +00:00
|
|
|
description:
|
2025-07-12 11:02:15 -07:00
|
|
|
'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'],
|
2025-03-26 17:40:24 +00:00
|
|
|
component: lazy(() => import('./index'))
|
|
|
|
|
});
|