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,19 +4,11 @@ import { lazy } from 'react';
export const tool = defineTool('image-generic', {
name: 'Resize Image',
path: 'resize',
icon: 'mdi:resize', // Iconify icon as a string
icon: 'mdi:resize',
description:
'Resize JPG, PNG, SVG or GIF images by pixels or percentage while maintaining aspect ratio or not.',
shortDescription: 'Resize images easily.',
keywords: [
'resize',
'image',
'scale',
'jpg',
'png',
'svg',
'gif',
'dimensions'
],
'Resize images to different dimensions while maintaining aspect ratio or custom sizes.',
shortDescription: 'Resize images to different dimensions',
keywords: ['resize', 'image', 'dimensions', 'scale', 'aspect ratio'],
userTypes: ['General Users', 'Students', 'Developers'],
component: lazy(() => import('./index'))
});