add site data to configs

This commit is contained in:
amirhouieh 2023-08-29 20:41:42 +02:00
parent 0200b38f35
commit cf71f491c1
3 changed files with 39 additions and 9 deletions

View File

@ -1,11 +1,11 @@
import { siteConfigs } from '@/configs/site.configs'
export const copyConfigs = {
site: {
title: 'Logos Press Engine',
heroTitle: ['Logos', ' → ', 'Press Engine'],
description:
'Your Guide to Network States and the technology driving Sovereign Communities',
keywords:
'Logos, Press Engine, Network States, Sovereign Communities, Blockchain, Cryptocurrency, Decentralization, Privacy, Security, Liberty, Censorship, Openness, Inclusivity, Innovation, Interview, Podcast, Law',
title: siteConfigs.title,
heroTitle: siteConfigs.heroTitle,
description: siteConfigs.description,
keywords: siteConfigs.keywords.join(','),
},
navbar: {
title: 'Press Engine',

View File

@ -1,4 +1,5 @@
import { LPEFooterGroup } from '@/types/ui.types'
import { siteConfigs } from '@/configs/site.configs'
export const ArticleBlocksOrders = {
title: 0,
@ -63,13 +64,17 @@ export const FooterLinksItems: {
href: 'https://discord.gg/logos-state',
key: 'discord',
},
{ label: 'X', href: 'https://twitter.com/Logos_state', key: 'x' },
{ label: 'X', href: `https://x.com/${siteConfigs.xHandle}`, key: 'x' },
{
label: 'Github',
href: 'https://github.com/acid-info',
href: `https://github.com/${siteConfigs.githubHandle}`,
key: 'github',
},
{ label: 'Youtube', href: 'https://www.youtube.com', key: 'youtube' },
{
label: 'Youtube',
href: `https://www.youtube.com/${siteConfigs.youtubeHandle}`,
key: 'youtube',
},
],
},
{

View File

@ -0,0 +1,25 @@
export const siteConfigs = {
title: 'Logos Press Engine',
heroTitle: ['Logos', ' → ', 'Press Engine'],
description:
'Your Guide to Network States and the technology driving Sovereign Communities',
keywords: [
'book club',
'censorship resistance',
'citizens',
'finance',
'network state',
'op ed',
'panarchy',
'pr',
'privacy',
'security',
'show',
'technology',
'update',
'whistleblower',
],
xHandle: 'logos_state',
youtubeHandle: ',',
githubHandle: 'logos-co',
}