Files
omni-tools/src/pages/image/png/convert-jgp-to-png/meta.ts

15 lines
455 B
TypeScript
Raw Normal View History

2024-06-28 11:29:40 +02:00
import { defineTool } from '@tools/defineTool';
import { lazy } from 'react';
// import image from '@assets/text.png';
export const tool = defineTool('png', {
name: 'Convert jgp to png',
path: 'convert-jgp-to-png',
// 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'],
component: lazy(() => import('./index'))
});