ChenyuRabbitLove's picture
feat: optimize for-students and for-teachers page
5081fcb
export interface ChatBot {
id: string;
title: string;
description: string;
subject: string;
icon: string;
category: string;
popular?: boolean;
trending?: boolean;
}
export const CHATBOTS: ChatBot[] = [
// 精選 (最多人用)
{
id: "1",
title: "Code Tutor",
description: "Let's code together! I'm Khanmigo Lite, by Khan Academy.",
subject: "電腦科學",
category: "教育",
icon: "code-tutor.webp",
popular: true,
},
{
id: "2",
title: "Math Solver",
description: "數學解題助手,從基礎數學到高等微積分都能協助理解和解題。",
subject: "數學",
category: "教育",
icon: "code-tutor.webp",
popular: true,
},
{
id: "3",
title: "Essay Writer",
description: "協助改進寫作技巧,提供建議和修改意見,適用於各種文體。",
subject: "國語文",
category: "寫作",
icon: "code-tutor.webp",
popular: true,
},
{
id: "4",
title: "English Master",
description: "全方位英語學習助手,提供聽說讀寫全面訓練。",
subject: "英文",
category: "語言",
icon: "code-tutor.webp",
popular: true,
},
// 熱門 (近期熱門)
{
id: "5",
title: "Math Practice",
description: "針對各年級數學題目練習,提供詳細解答和步驟說明。",
subject: "數學",
category: "教育",
icon: "code-tutor.webp",
trending: true,
},
{
id: "6",
title: "English Conversation",
description: "實用英語對話練習,提升口語和聽力能力。",
subject: "英文",
category: "語言",
icon: "code-tutor.webp",
trending: true,
},
{
id: "7",
title: "Physics Tutor",
description: "物理概念解說和題目解析,讓物理學習更輕鬆。",
subject: "自然科學",
category: "教育",
icon: "code-tutor.webp",
trending: true,
},
{
id: "8",
title: "Chemistry Lab",
description: "虛擬化學實驗室,安全地探索化學反應和概念。",
subject: "自然科學",
category: "教育",
icon: "code-tutor.webp",
trending: true,
},
// 家教、數學、英文相關
{
id: "9",
title: "Personal Tutor",
description: "個人化學習規劃和指導,適應每個學生的學習步調。",
subject: "教學",
category: "教育",
icon: "code-tutor.webp",
},
{
id: "10",
title: "Math Concepts",
description: "深入淺出講解數學概念,建立紮實的數學基礎。",
subject: "數學",
category: "教育",
icon: "code-tutor.webp",
},
{
id: "11",
title: "English Grammar",
description: "系統性學習英語文法,從基礎到進階全面掌握。",
subject: "英文",
category: "語言",
icon: "code-tutor.webp",
},
{
id: "12",
title: "English Writing",
description: "英文寫作指導,從句子到文章的全方位訓練。",
subject: "英文",
category: "語言",
icon: "code-tutor.webp",
},
{
id: "13",
title: "Math Problems",
description: "豐富的數學題庫,配合詳細解說和練習。",
subject: "數學",
category: "教育",
icon: "code-tutor.webp",
},
{
id: "14",
title: "TOEIC Prep",
description: "針對多益考試的專業培訓和模擬測驗。",
subject: "英文",
category: "語言",
icon: "code-tutor.webp",
},
];
export const getPopularBots = () => CHATBOTS.filter((bot) => bot.popular);
export const getTrendingBots = () => CHATBOTS.filter((bot) => bot.trending);
export const getAllBots = () => CHATBOTS;