73 lines
2.1 KiB
TypeScript
73 lines
2.1 KiB
TypeScript
import type { NavigationLink, Site, User } from './types.ts'
|
||
|
||
export const SITE: Site = {
|
||
author: 'iTKeyS',
|
||
url: 'https://stusla.ru',
|
||
title: 'stusla.ru',
|
||
description: 'Каркасные дома, мебель из дерева, кухни, в стиле лофт',
|
||
shortDescription: '',
|
||
}
|
||
|
||
export const NavigationLinks: NavigationLink[] = [
|
||
{ name: 'Посты', url: '/posts' },
|
||
{ name: 'Категории', url: '/categories' },
|
||
{ name: 'Хронология', url: '/timeline' },
|
||
{ name: 'О нас', url: '/posts/about' },
|
||
{ name: 'Контакты', url: '/friends' },
|
||
]
|
||
|
||
export const Friends: User[] = [
|
||
{
|
||
avatar: 'https://tcxx.info/wp-content/themes/StarryW/images/bg/me.jpg',
|
||
social: { blog: 'https:плата-управления.рф', telegram: 'iTKeyS' },
|
||
title: 'СисАдмин',
|
||
name: 'Тихон',
|
||
description: 'Как ущел за белым кроликом, так хей знает где он ходит',
|
||
},
|
||
]
|
||
|
||
export const FooterLinks = [
|
||
{
|
||
section: 'Блог',
|
||
links: [
|
||
{ name: 'Посты', url: '/posts' },
|
||
{ name: 'Хронология', url: '/timeline' },
|
||
{ name: 'Категории', url: '/categories' },
|
||
{ name: 'О нас', url: '/posts/about' },
|
||
],
|
||
},
|
||
{
|
||
section: 'Ссылки',
|
||
links: [
|
||
{ name: 'Viber', url: 'https://#' },
|
||
{ name: "What's App", url: 'https://#' },
|
||
{ name: 'Telegram', url: 'https://#' },
|
||
],
|
||
},
|
||
]
|
||
|
||
export const GoogleAnalytics = {
|
||
enable: true,
|
||
id: '11111111111111111',
|
||
}
|
||
|
||
export const SEO = {
|
||
title: SITE.title,
|
||
description: SITE.description,
|
||
structuredData: {
|
||
'@context': 'https://schema.org',
|
||
'@type': 'WebPage',
|
||
'inLanguage': 'ru-RU',
|
||
'@id': SITE.url,
|
||
'url': SITE.url,
|
||
'name': SITE.title,
|
||
'description': SITE.description,
|
||
'isPartOf': {
|
||
'@type': 'WebSite',
|
||
'url': SITE.url,
|
||
'name': SITE.title,
|
||
'description': SITE.description,
|
||
},
|
||
},
|
||
}
|