2025-07-10 15:59:41 +02:00
|
|
|
import { defineTool } from '@tools/defineTool';
|
|
|
|
|
import { lazy } from 'react';
|
|
|
|
|
|
|
|
|
|
export const tool = defineTool('time', {
|
|
|
|
|
name: 'Check Leap Years',
|
2025-07-12 23:02:35 -07:00
|
|
|
path: 'check-leap-years',
|
|
|
|
|
icon: 'material-symbols:calendar-month',
|
2025-07-10 15:59:41 +02:00
|
|
|
description:
|
2025-07-12 23:02:35 -07:00
|
|
|
'Check if a year is a leap year. Enter a year to determine if it has 366 days instead of 365.',
|
|
|
|
|
shortDescription: 'Check if a year is a leap year',
|
|
|
|
|
keywords: ['leap', 'year', 'calendar', 'date'],
|
|
|
|
|
component: lazy(() => import('./index')),
|
|
|
|
|
i18n: {
|
|
|
|
|
name: 'time.checkLeapYears.name',
|
|
|
|
|
description: 'time.checkLeapYears.description',
|
|
|
|
|
shortDescription: 'time.checkLeapYears.shortDescription'
|
|
|
|
|
}
|
2025-07-10 15:59:41 +02:00
|
|
|
});
|