From 60f54181d6d5e21d3140953dece51fee7a0d40c5 Mon Sep 17 00:00:00 2001 From: LofiSu <163713803+LofiSu@users.noreply.github.com> Date: Sun, 26 Jan 2025 04:27:57 +0000 Subject: home components --- src/HomePage.tsx | 91 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 91 insertions(+) create mode 100644 src/HomePage.tsx (limited to 'src/HomePage.tsx') diff --git a/src/HomePage.tsx b/src/HomePage.tsx new file mode 100644 index 0000000..dcbb88c --- /dev/null +++ b/src/HomePage.tsx @@ -0,0 +1,91 @@ +import React from 'react'; +import { motion } from 'framer-motion'; +import { FaGithub, FaDiscord } from 'react-icons/fa'; +import { SiPython, SiTypescript, SiReact } from 'react-icons/si'; +import { Button, Card } from '@nextui-org/react'; +import { ThreeBackground } from './components/ThreeBackground'; +import { StatsCard } from './components/StatsCard'; +import { FeatureCard } from './components/FeatureCard'; + +const HomePage: React.FC = () => { + return ( +
+ + + {/* Hero Section */} +
+ +

+ HydroRoll +

+

+ 下一代开源 TRPG 骰子机器人框架,为你的游戏体验带来无限可能 +

+
+ + +
+
+
+ + {/* Features Section */} +
+
+

+ 核心特性 +

+
+ } + title="Python 驱动" + description="基于 Python 构建,提供灵活且强大的插件系统" + /> + } + title="TypeScript 支持" + description="完整的 TypeScript 类型支持,提供更好的开发体验" + /> + } + title="现代化框架" + description="采用现代化的框架设计,支持多平台部署" + /> +
+
+
+ + {/* Stats Section */} +
+
+
+ + + +
+
+
+
+ ); +}; + +export default HomePage; -- cgit v1.2.3-70-g09d2