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,12 +2,27 @@ import { defineTool } from '@tools/defineTool';
import { lazy } from 'react';
export const tool = defineTool('video', {
name: 'Trim Video',
name: 'Trim video',
path: 'trim',
icon: 'mdi:scissors',
icon: 'material-symbols:content-cut',
description:
'This online utility lets you trim videos by setting start and end points. You can preview the trimmed section before processing. Supports common video formats like MP4, WebM, and OGG.',
shortDescription: 'Trim videos by setting start and end points',
keywords: ['trim', 'cut', 'video', 'clip', 'edit'],
'Cut and trim video files to extract specific segments by specifying start and end times.',
shortDescription:
'Trim video files to extract specific time segments (MP4, MOV, AVI).',
keywords: [
'trim',
'video',
'cut',
'segment',
'extract',
'mp4',
'mov',
'avi',
'video editing',
'time'
],
longDescription:
'This tool allows you to trim video files by specifying start and end times. You can extract specific segments from longer videos, remove unwanted parts, or create shorter clips. Supports various video formats including MP4, MOV, and AVI. Perfect for video editing, content creation, or any video processing needs.',
userTypes: ['General Users', 'Students', 'Developers'],
component: lazy(() => import('./index'))
});