diff --git a/src/pages/login2/index.tsx b/src/pages/login2/index.tsx new file mode 100644 index 0000000..72831b1 --- /dev/null +++ b/src/pages/login2/index.tsx @@ -0,0 +1,126 @@ +import React from "react"; +import { Layout, Tabs, Input, Button, Typography, Row, Col } from "antd"; +import { QrcodeOutlined, UserOutlined, LockOutlined } from "@ant-design/icons"; + +const { Title, Text, Link } = Typography; +const { TabPane } = Tabs; + +const Login2: React.FC = () => { + return ( + + + + + + 向量检索服务免费试用 + 免费试用向量检索服务,玩转大模型生成式检索 +
+ 查看详情 > + + +
+ + 注册 + + +
+ + + } + style={{ marginBottom: "20px" }} + /> + } + style={{ marginBottom: "20px" }} + /> + + + } + style={{ marginBottom: "20px" }} + /> + } + style={{ marginBottom: "20px" }} + /> + + + } + style={{ marginBottom: "20px" }} + /> + + + } + style={{ marginBottom: "20px" }} + /> + + + 忘记账号 + 找回密码 + + +
+ +
+
+ ); +}; + +export default Login2;