import React from "react"; import Head from "next/head"; import cn from "classnames"; import Link from "next/link"; import { motion } from "framer-motion"; import { Clients } from "../../clients/Clients"; import { Marquee } from "../../clients/Marquee"; import { TurboheroBackground } from "./TurboHeroBackground"; import { HydroRollAI } from "./HydroRollAI"; import { HydroRollTRPG } from "./HydroRollTRPG"; import { FadeIn } from "../home-shared/FadeIn"; import { LandingPageGlobalStyles } from "../home-shared/GlobalStyles"; import styles from "./index.module.css"; import PackLogo from "../../logos/PackLogo"; import RepoLogo from "../../logos/RepoLogo"; function Background() { return (
); } export function CardBadge({ children }: { children: React.ReactNode }) { return (
{children}
); } const variants = { hidden: { opacity: 0 }, active: { opacity: 1 }, }; function Card({ alt, href, title, icon: Icon, className, children, }: { href: string; icon: React.ElementType; title: "AI" | "TRPG"; alt?: string; className?: string; children: React.ReactNode; }) { const [hovering, setHovering] = React.useState(false); return ( setHovering(true)} onMouseLeave={() => setHovering(false)} >
{title == "TRPG" ? ( ) : ( )} {children}
); } function SiteCards() { return (

水系核心——AI模块

alpha

阅读水系TRPG模块文档

); } function Teams() { return (

Thx by teams from
around the world

感谢以下来自世界各地的团队或组织的贡献

); } function LandingPage() { return ( <>

Make it Happen

HydroRoll'水系 是一个基于nlp多任务模型的跨平台骰系,尽管只是作为深度学习框架iamai的插件并且借鉴了大量其它骰系较好的机制,但它仍然有自己的创新之处与标准遵循。

); } export default LandingPage;