mirror of
https://github.com/eugene-serb/wavelovers.git
synced 2023-09-09 23:41:16 +03:00

- added metas array with metas. - added interfaces IRouteMeta, IMeta, ITag. - deleted metas from routes. - modified metas by types. - updated router index. - up minor version.
44 lines
1.4 KiB
TypeScript
44 lines
1.4 KiB
TypeScript
import IMeta from '@/router/models/IMeta';
|
||
|
||
const meta: IMeta = {
|
||
title: 'Wavelovers – Custom',
|
||
metaTags: [
|
||
{
|
||
name: 'keywords',
|
||
content: 'Wavelovers, Wave Lovers, Wavemaster, Wave Master, Vibration Master, Vibration, Gamepad, Gamepad Vibration, Gamepad Massager, Vibrate Gamepad, Phone Vibration, Gamepad Tester, Phone Vibration Tester, Vibration Tester, Massager, Vibrator, Satisfyer, Womanizer, Relax, геймпад, джойстик, вибратор, вибромассажер, вибро, вибромассажёр из геймпада, тестер вибрации геймпада, тестер вибрации телефона',
|
||
},
|
||
{
|
||
name: 'description',
|
||
content: 'Wavelovers. Use your device vibration correctly. Make a massager out of a gamepad.',
|
||
},
|
||
{
|
||
name: 'og:title',
|
||
content: 'Wavelovers – Custom',
|
||
},
|
||
{
|
||
name: 'og:description',
|
||
content: 'Wavelovers. Use your device vibration correctly. Make a massager out of a gamepad.',
|
||
},
|
||
{
|
||
name: 'og:url',
|
||
content: 'https://wavelovers.ru/custom',
|
||
},
|
||
{
|
||
name: 'twitter:title',
|
||
content: 'Wavelovers – Custom',
|
||
},
|
||
{
|
||
name: 'twitter:description',
|
||
content: 'Wavelovers. Use your device vibration correctly. Make a massager out of a gamepad.',
|
||
},
|
||
],
|
||
linkTags: [
|
||
{
|
||
rel: 'canonical',
|
||
href: 'https://wavelovers.ru/custom',
|
||
},
|
||
],
|
||
};
|
||
|
||
export default meta;
|