Skip to content

Commit

Permalink
change module define
Browse files Browse the repository at this point in the history
  • Loading branch information
v1xingyue committed Jan 2, 2025
1 parent d5b9ff9 commit 57ccbbf
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/pages/HomePage.tsx
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
import { Link } from "react-router-dom";

const modules = [
const modules: {
id: string;
title: string;
description: string;
}[] = [
{
id: "first-telegram-bot",
title: "快速开始,构建一个 Telegram 的 Chatbot",
description:
"从环境配置到运行,完整指导如何使用 eliza 构建一个 Telegram Bot",
},
// Add more modules here
,
];

export function HomePage() {
Expand Down

0 comments on commit 57ccbbf

Please sign in to comment.