feat: split pdf

This commit is contained in:
Ibrahima G. Coulibaly
2025-03-26 05:43:59 +00:00
parent c0297a187d
commit e6f54a3f2b
11 changed files with 427 additions and 68 deletions

View File

@@ -10,6 +10,7 @@ import { jsonTools } from '../pages/tools/json';
import { csvTools } from '../pages/tools/csv';
import { timeTools } from '../pages/tools/time';
import { IconifyIcon } from '@iconify/react';
import { pdfTools } from '../pages/tools/pdf';
export const tools: DefinedTool[] = [
...imageTools,
@@ -19,7 +20,8 @@ export const tools: DefinedTool[] = [
...csvTools,
...videoTools,
...numberTools,
...timeTools
...timeTools,
...pdfTools
];
const categoriesConfig: {
type: ToolCategory;
@@ -76,6 +78,12 @@ const categoriesConfig: {
value:
'Tools for working with videos extract frames from videos, create GIFs from videos, convert videos to different formats, and much more.'
},
{
type: 'pdf',
icon: 'tabler:pdf',
value:
'Tools for working with PDF files - extract text from PDFs, convert PDFs to other formats, manipulate PDFs, and much more.'
},
{
type: 'time',
icon: 'fluent-mdl2:date-time',