diff --git a/messages/zh.json b/messages/zh.json index 67987ef..5a5e5a5 100644 --- a/messages/zh.json +++ b/messages/zh.json @@ -3,7 +3,7 @@ "lang": "en", "language": "简体中文", "languageInChineseSimple": "简体中文", - "title": "SoraWebui", + "title": "智能学习", "description": "SoraWebui 是一个开源平台,使用户能够使用 OpenAI 的 Sora 模型轻松地从文本创建视频。", "loadingText": "加载中...", "generateText": "生成中...", diff --git a/src/components/Footer.tsx b/src/components/Footer.tsx index a946ff5..9c9c730 100644 --- a/src/components/Footer.tsx +++ b/src/components/Footer.tsx @@ -3,18 +3,18 @@ import Link from "next/link"; const navigation = { product: [ - {name: 'SoraWebui', href: 'https://sorawebui.com'} + { name: 'SoraWebui', href: 'https://sorawebui.com' } ], legal: [ - {name: 'Privacy Policy', href: '/privacy-policy'}, - {name: 'Terms & Conditions', href: '/terms-of-service'}, + { name: 'Privacy Policy', href: '/privacy-policy' }, + { name: 'Terms & Conditions', href: '/terms-of-service' }, ] } export default function Footer({ - locale = '', - description = '' - }) { + locale = '', + description = '' +}) { return ( ) }