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 hours to days',
path: 'convert-hours-to-days',
icon: 'material-symbols:schedule',
description:
'Convert hours to days with simple calculations. Useful for time tracking and scheduling.',
shortDescription: 'Convert hours to days easily.',
keywords: ['hours', 'days', 'convert', 'time', 'calculation'],
userTypes: ['General Users', 'Students'],
component: lazy(() => import('./index'))
keywords: ['hours', 'days', 'convert', 'time'],
component: lazy(() => import('./index')),
i18n: {
name: 'time:convertHoursToDays.title',
description: 'time:convertHoursToDays.description',
shortDescription: 'time:convertHoursToDays.shortDescription',
userTypes: ['General Users', 'Students']
}
});