mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-24 16:56:14 -04:00
12 lines
544 B
TypeScript
12 lines
544 B
TypeScript
![]() |
import { AlignJustified } from '@vicons/tabler';
|
||
|
import type { ITool } from '../Tool';
|
||
|
|
||
|
export const tool: ITool = {
|
||
|
name: 'Lorem ipsum generator',
|
||
|
path: '/lorem-ipsum-generator',
|
||
|
description: 'Lorem ipsum is a placeholder text commonly used to demonstrate the visual form of a document or a typeface without relying on meaningful content',
|
||
|
keywords: ['lorem', 'ipsum', 'dolor', 'sit', 'amet', 'placeholder', 'text', 'filler', 'random', 'generator'],
|
||
|
component: () => import('./lorem-ipsum-generator.vue'),
|
||
|
icon: AlignJustified,
|
||
|
};
|