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

15 lines
490 B
TypeScript
Raw Normal View History

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