Added user type filters and applied them to all tools

This commit is contained in:
AshAnand34
2025-07-12 11:02:15 -07:00
parent 18ba3f70d8
commit 4a7e6299d9
76 changed files with 296 additions and 158 deletions

View File

@@ -4,11 +4,11 @@ import { lazy } from 'react';
export const tool = defineTool('image-generic', {
name: 'Compress Image',
path: 'compress',
component: lazy(() => import('./index')),
icon: 'material-symbols-light:compress-rounded',
description:
'Compress images to reduce file size while maintaining reasonable quality.',
shortDescription:
'Compress images to reduce file size while maintaining reasonable quality.',
keywords: ['image', 'compress', 'reduce', 'quality']
'Reduce image file size while maintaining quality. Compress images for easier sharing, uploading, or storage.',
shortDescription: 'Compress images to reduce file size',
keywords: ['compress', 'image', 'reduce', 'size', 'optimize'],
userTypes: ['General Users', 'Students', 'Developers'],
component: lazy(() => import('./index'))
});