feat(tool): lorem ipsum generator

This commit is contained in:
Corentin Thomasset 2022-04-14 00:00:29 +02:00
parent 1134e0b822
commit 5dcb2ed95c
No known key found for this signature in database
GPG key ID: DBD997E935996158
4 changed files with 286 additions and 0 deletions

View file

@ -0,0 +1,11 @@
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,
};