diff --git a/app/[locale]/page.tsx b/app/[locale]/page.tsx index a2ef13f..31bc7af 100644 --- a/app/[locale]/page.tsx +++ b/app/[locale]/page.tsx @@ -12,6 +12,7 @@ import { LanguageSwitcher } from '@/components/ui/language-switcher' export default function HomePage() { const { theme } = useTheme() + const { t } = useTranslation() return (
@@ -23,13 +24,13 @@ export default function HomePage() {
-
Chatbot UI
+
{t("Company Name")}
- Start Chatting + {t("Clock In")} diff --git a/public/locales/en/translation.json b/public/locales/en/translation.json index b6238ed..56ceb5b 100644 --- a/public/locales/en/translation.json +++ b/public/locales/en/translation.json @@ -1,3 +1,5 @@ { - "Ask anything. Type \"/\" for prompts, \"@\" for files, and \"#\" for tools.": "Ask anything. Type \"/\" for prompts, \"@\" for files, and \"#\" for tools." -} + "Ask anything. Type \"/\" for prompts, \"@\" for files, and \"#\" for tools.": "Ask anything. Type \"/\" for prompts, \"@\" for files, and \"#\" for tools.", + "Company Name": "Jelly Drops LLC", + "Clock In": "Clock In" +} \ No newline at end of file diff --git a/public/locales/zh/translation.json b/public/locales/zh/translation.json index 89ba211..0b59d84 100644 --- a/public/locales/zh/translation.json +++ b/public/locales/zh/translation.json @@ -1,3 +1,6 @@ { - "Ask anything. Type \"/\" for prompts, \"@\" for files, and \"#\" for tools.": "随便问点什么。输入“/”查找提示,“@”查找文件,“#”查找工具。" -} \ No newline at end of file + "Ask anything. Type \"/\" for prompts, \"@\" for files, and \"#\" for tools.": "随便问点什么。输入“/”查找提示,“@”查找文件,“#”查找工具。", + "Company Name": "深圳果冻移民咨询有限责任公司", + "Clock In": "打卡" + } + \ No newline at end of file