aboutsummaryrefslogtreecommitdiff
path: root/src/tools/meta-tag-generator/index.ts
blob: c62244109092c2edbfcad86325a60047eb769cbd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import { Tags } from '@vicons/tabler';
import { defineTool } from '../tool';
import { translate } from '@/plugins/i18n.plugin';

export const tool = defineTool({
  name: translate('tools.og-meta-generator.title'),
  path: '/og-meta-generator',
  description: translate('tools.og-meta-generator.description'),
  keywords: [
    'meta',
    'tag',
    'generator',
    'social',
    'title',
    'description',
    'image',
    'share',
    'online',
    'website',
    'open',
    'graph',
    'og',
  ],
  component: () => import('./meta-tag-generator.vue'),
  icon: Tags,
});