|
@@ -1,5 +1,6 @@
|
|
|
import Box from "@/components/Box";
|
|
|
import { Tab, Tabs } from "@nextui-org/react";
|
|
|
+import { Input } from "antd-mobile";
|
|
|
import { FC, PropsWithChildren } from "react";
|
|
|
interface Props {}
|
|
|
|
|
@@ -70,23 +71,68 @@ const Sidebar: FC<PropsWithChildren<Props>> = (props) => {
|
|
|
</div>
|
|
|
|
|
|
{/* gift */}
|
|
|
- <section className={"my-[0.11rem] flex items-center text-[0.15rem]"}>
|
|
|
+ <section className={"my-[0.11rem] flex items-center text-[0.15rem] text-[#fff]"}>
|
|
|
<span
|
|
|
className={"iconfont icon-liwulipinjiangpin mr-[0.0694rem] text-[0.16rem]"}
|
|
|
></span>
|
|
|
<span> Promoções </span>
|
|
|
</section>
|
|
|
{/* Esportes */}
|
|
|
- <section className={"flex items-center rounded-[3px] bg-[#3a3a3a] p-[0.08rem]"}>
|
|
|
+ <section
|
|
|
+ className={"flex items-center rounded-[3px] bg-[#3a3a3a] p-[0.08rem] text-[#fff]"}
|
|
|
+ >
|
|
|
<i className={"iconfont icon-tiyu mr-[0.0694rem] text-[0.15rem]"}></i>
|
|
|
<div className={"flex-1"}>Esportes</div>
|
|
|
<i className={"iconfont icon-xiangyou1 text-[0.15rem]"}></i>
|
|
|
</section>
|
|
|
{/* code */}
|
|
|
- <section className={"mt-[0.11rem]"}>Have a promo code?</section>
|
|
|
- <section className={"w-1/1 flex justify-between bg-[#3a3a3a] p-[3px]"}>
|
|
|
- <input className="flex-1 border-0 bg-[#3a3a3a] outline" />
|
|
|
- <span>Redeem</span>
|
|
|
+ <section className={"mt-[0.11rem] text-[#fff]"}>Have a promo code?</section>
|
|
|
+ <section className={"w-1/1 mt-[0.11rem] flex"}>
|
|
|
+ <div className={"flex-1 bg-[#3a3a3a] p-[0.0694rem]" + " text-[#fff]"}>
|
|
|
+ <Input placeholder="Insira o código" clearable className={"text-[#fff]"} />
|
|
|
+ </div>
|
|
|
+ <button
|
|
|
+ className={`w-[0.6rem] bg-gradient-to-b from-[#a28362] to-[#986847] text-[0.12rem] text-[#fff]`}
|
|
|
+ >
|
|
|
+ Redeem
|
|
|
+ </button>
|
|
|
+ </section>
|
|
|
+
|
|
|
+ <section className={"mt-[0.11rem] text-[#fff]"}>Junte-se à nossa comunidade</section>
|
|
|
+
|
|
|
+ <section className={"mt-[0.11rem] text-[#fff]"}>
|
|
|
+ <div className={"flex"}>
|
|
|
+ <img
|
|
|
+ className={"mx-[0.1rem] h-[0.35rem] w-[0.35rem]"}
|
|
|
+ src="https://9f.com/img/telegram.9b8c9ead.png"
|
|
|
+ alt=""
|
|
|
+ />
|
|
|
+ <img
|
|
|
+ className={"mx-[0.1rem] h-[0.35rem] w-[0.35rem]"}
|
|
|
+ src="https://9f.com/img/instagram.9a6f2403.png"
|
|
|
+ alt=""
|
|
|
+ />
|
|
|
+ <img
|
|
|
+ className={"mx-[0.1rem] h-[0.35rem] w-[0.35rem]"}
|
|
|
+ src="https://9f.com/img/kwai.b9d0c480.png"
|
|
|
+ alt=""
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ </section>
|
|
|
+
|
|
|
+ <section className={"mt-[0.11rem] text-[#7d7d7d]"}>
|
|
|
+ <div className={"flex items-center p-[0.08rem]"}>
|
|
|
+ <i className={"iconfont icon-bangzhu mr-[0.0694rem] text-[0.15rem]"}></i>
|
|
|
+ <div className={"flex-1"}> Visitar o Centro de Ajuda</div>
|
|
|
+ </div>
|
|
|
+ <div className={"flex items-center p-[0.08rem]"}>
|
|
|
+ <i className={"iconfont icon-duanxinguanli mr-[0.0694rem] text-[0.15rem]"}></i>
|
|
|
+ <div className={"flex-1"}> Relatar Problema </div>
|
|
|
+ </div>
|
|
|
+ <div className={"flex items-center p-[0.08rem]"}>
|
|
|
+ <i className={"iconfont icon-fenxiang mr-[0.0694rem] text-[0.15rem]"}></i>
|
|
|
+ <div className={"flex-1"}> Adicionar à Tela inicial </div>
|
|
|
+ </div>
|
|
|
</section>
|
|
|
</Box>
|
|
|
);
|