This commit is contained in:
2024-06-15 02:11:49 +03:00
parent 7a67051ae0
commit d02e35e0d7
82 changed files with 31138 additions and 19 deletions

72
src/config.ts Normal file
View File

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