From 6cff9fe727c49438935e56076045f600179c9e2d Mon Sep 17 00:00:00 2001 From: lk Date: Tue, 10 Sep 2024 14:38:08 +0800 Subject: [PATCH] =?UTF-8?q?=E8=AF=81=E4=B9=A6=E5=A4=A7=E9=83=A8=E5=88=86?= =?UTF-8?q?=E6=8E=A5=E5=8F=A3=E5=AE=8C=E6=88=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/login2/index.tsx | 126 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 126 insertions(+) create mode 100644 src/pages/login2/index.tsx 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;