-
- {/* Hero Section */}
-
-
-
- HydroRoll
-
-
- 下一代开源 TRPG 骰子机器人框架,为你的游戏体验带来无限可能
-
-
-
-
-
-
-
-
- {/* Features Section */}
-
-
-
- 核心特性
-
-
- }
- title="Python 驱动"
- description="基于 Python 构建,提供灵活且强大的插件系统"
- />
- }
- title="TypeScript 支持"
- description="完整的 TypeScript 类型支持,提供更好的开发体验"
- />
- }
- title="现代化框架"
- description="采用现代化的框架设计,支持多平台部署"
- />
-
-
-
-
- {/* Stats Section */}
-
-
- );
-};
-
-export default HomePage;
diff --git a/src/app/components/RepoCard.tsx b/src/app/components/RepoCard.tsx
new file mode 100644
index 0000000..412e572
--- /dev/null
+++ b/src/app/components/RepoCard.tsx
@@ -0,0 +1,24 @@
+import React from "react";
+import * as motion from "motion/react-client";
+import { Card } from "@nextui-org/react";
+
+interface RepoCardProps {
+ title: string;
+ description: string;
+}
+
+export const RepoCard: React.FC