feat: convert jpg to png (w/o options)

This commit is contained in:
Habib
2024-06-28 12:01:35 +02:00
parent 47ae5c7202
commit 8064928ba9
3 changed files with 71 additions and 10 deletions

View File

@@ -1,14 +1,14 @@
import { defineTool } from '@tools/defineTool';
import { lazy } from 'react';
// import image from '@assets/text.png';
import image from '@assets/image.png';
export const tool = defineTool('png', {
name: 'Convert jgp to png',
name: 'Convert JPG to PNG',
path: 'convert-jgp-to-png',
// image,
image,
description:
'Quickly your JPG images to PNG. Just import your PNG image in the editor on the left',
shortDescription: '',
keywords: ['convert', 'jgp', 'to', 'png'],
'Quickly convert your JPG images to PNG. Just import your PNG image in the editor on the left',
shortDescription: 'Quickly convert your JPG images to PNG',
keywords: ['convert', 'jgp', 'png'],
component: lazy(() => import('./index'))
});