mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-12-29 16:16:02 +00:00
29 lines
741 B
TypeScript
29 lines
741 B
TypeScript
|
|
import { defineTool } from '@tools/defineTool';
|
||
|
|
import { lazy } from 'react';
|
||
|
|
|
||
|
|
export const tool = defineTool('image-generic', {
|
||
|
|
name: 'Image Editor',
|
||
|
|
path: 'editor',
|
||
|
|
icon: 'mdi:image-edit',
|
||
|
|
description:
|
||
|
|
'Advanced image editor with tools for cropping, rotating, annotating, adjusting colors, and adding watermarks. Edit your images with professional-grade tools directly in your browser.',
|
||
|
|
shortDescription: 'Edit images with advanced tools and features',
|
||
|
|
keywords: [
|
||
|
|
'image',
|
||
|
|
'editor',
|
||
|
|
'edit',
|
||
|
|
'crop',
|
||
|
|
'rotate',
|
||
|
|
'annotate',
|
||
|
|
'adjust',
|
||
|
|
'watermark',
|
||
|
|
'text',
|
||
|
|
'drawing',
|
||
|
|
'filters',
|
||
|
|
'brightness',
|
||
|
|
'contrast',
|
||
|
|
'saturation'
|
||
|
|
],
|
||
|
|
component: lazy(() => import('./index'))
|
||
|
|
});
|