Initial commit for new tool video to gif

This commit is contained in:
C043
2025-06-09 15:25:14 +02:00
parent d25f7ca557
commit 377dbc3685
6 changed files with 99 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
import { defineTool } from '@tools/defineTool';
import { lazy } from 'react';
export const tool = defineTool('video', {
name: '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'],
component: lazy(() => import('./index'))
});