hts/apps/blogai/lib/metadata.ts

20 lines
871 B
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// 标题JellyAI-一个探索人工智能和区块链的有趣应用
// 描述JellyAI-一个探索人工智能和区块链的有趣应用展示人工智能和区块链领域的最新资讯还可以体验AI助手的有趣对话
// 关键词JellyAI人工智能深度学习意图交互AI助手AI伴侣AI虚拟交友AI游戏DeFi投资质押挖矿比特币以太坊区块链
export const baseTitle = "JellyAI"
export const baseURL = "http://localhost"
export const keywordsRoot = (e: string) => {
const defKeyword = "JellyAI,AI,Cradle"
return `${!!e ? `${e}` : defKeyword} `
}
export const descriptionRoot = (e: string) => {
e = !!e ? `${e} |` : e
return `${e} 一个探索人工智能和区块链的有趣应用展示人工智能和区块链领域的最新资讯还可以体验AI助手的有趣对话`
}