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

@@ -2,11 +2,26 @@ import { defineTool } from '@tools/defineTool';
import { lazy } from 'react';
export const tool = defineTool('video', {
name: 'Video to Gif',
name: 'Convert video to GIF',
path: 'video-to-gif',
icon: 'fluent:gif-16-regular',
description: 'This online utility lets you convert a short video to gif.',
shortDescription: 'Quickly convert a short video to gif',
keywords: ['video', 'to', 'gif', 'convert'],
icon: 'material-symbols:gif',
description:
'Convert video files to animated GIF format. Create animated GIFs from video clips with customizable settings.',
shortDescription:
'Convert video files to animated GIF format (MP4, MOV, AVI to GIF).',
keywords: [
'video',
'gif',
'convert',
'animated',
'mp4',
'mov',
'avi',
'video editing',
'animation'
],
longDescription:
'This tool allows you to convert video files to animated GIF format. You can create animated GIFs from video clips with customizable settings like frame rate, quality, and duration. Supports various video formats including MP4, MOV, and AVI. Perfect for creating animated content for social media, websites, or presentations.',
userTypes: ['General Users', 'Students', 'Developers'],
component: lazy(() => import('./index'))
});