added time between 2 dates

This commit is contained in:
Lukas Herajt
2025-03-27 10:14:05 -04:00
parent 4b2d38cae3
commit a3d75e57ed
7 changed files with 574 additions and 1 deletions

View File

@@ -21,6 +21,7 @@ export type ToolCategory =
| 'video'
| 'list'
| 'json'
| 'time'
| 'csv'
| 'time'
| 'pdf';

View File

@@ -66,6 +66,12 @@ const categoriesConfig: {
value:
'Tools for working with JSON data structures prettify and minify JSON objects, flatten JSON arrays, stringify JSON values, analyze data, and much more'
},
{
type: 'time',
icon: 'mdi:clock-time-five',
value:
'Tools for working with time and date calculate time differences, convert between time zones, format dates, generate date sequences, and much more.'
},
{
type: 'csv',
icon: 'material-symbols-light:csv-outline',