aboutsummaryrefslogtreecommitdiff
path: root/src/tools/lorem-ipsum-generator/index.ts
blob: 2634d9e0cfbc43a528ff89f15c59c9074c267e8e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import { AlignJustified } from '@vicons/tabler';
import { defineTool } from '../tool';
import { translate } from '@/plugins/i18n.plugin';

export const tool = defineTool({
  name: translate('tools.lorem-ipsum-generator.title'),
  path: '/lorem-ipsum-generator',
  description: translate('tools.lorem-ipsum-generator.description'),
  keywords: ['lorem', 'ipsum', 'dolor', 'sit', 'amet', 'placeholder', 'text', 'filler', 'random', 'generator'],
  component: () => import('./lorem-ipsum-generator.vue'),
  icon: AlignJustified,
});