tiefen_space_h5/app/my/settleIn/page.js

46 lines
1.4 KiB
JavaScript
Raw Normal View History

2024-07-03 19:59:39 +08:00
"use client";
import React from "react";
import { Button } from "antd-mobile";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
import { faAngleLeft } from "@fortawesome/free-solid-svg-icons";
2024-07-03 19:59:39 +08:00
import { useRouter } from "next/navigation";
export default function SettleIn() {
const router = useRouter();
return (
<div>
2024-10-30 21:42:23 +08:00
<div className="p-4 fixed top-0 z-10 w-full ">
<div className="w-9 h-9 flex items-center justify-between bg-[#FFFFFF1A] rounded-full absolute">
2024-07-03 19:59:39 +08:00
<FontAwesomeIcon
icon={faAngleLeft}
style={{ maxWidth: "12px" }}
2024-07-03 19:59:39 +08:00
size="xl"
onClick={() => {
router.back();
}}
/>
2024-10-30 21:42:23 +08:00
<p className="text-base text-center leading-9">申请入驻</p>
<p className="text-base text-center leading-9">平台准则</p>
2024-07-03 19:59:39 +08:00
</div>
</div>
{/* 内容 */}
<div className="pt-16 p-4 flex flex-col justify-center items-center">
<div className="text-center">
申请入驻需要在APP中进行请前往下载铁粉空间APP应用程序
</div>
2024-07-03 19:59:39 +08:00
<div className="mt-16 w-full">
<Button
shape="rounded"
size="middle"
block
// onClick={handleSubmit}
style={{ "--background-color": "#FF669E", color: "#FFFFFF" }}
>
前往下载
</Button>
</div>
</div>
</div>
);
}