|
@@ -1,4 +1,5 @@
|
|
|
import { server } from "@/utils/server";
|
|
|
+import Image from "next/image";
|
|
|
import DetailsTable, { Datum } from "./DetailsTable";
|
|
|
|
|
|
const getTableData = () => {
|
|
@@ -12,20 +13,46 @@ const Page = async () => {
|
|
|
const result = await getTableData();
|
|
|
return (
|
|
|
<div>
|
|
|
- <img src={"/img/cashback-details.jpg"} />
|
|
|
+ <Image alt={"cashback"} width={750} height={650} src={"/cashback/header-bg.png"} />
|
|
|
|
|
|
- <div className={"mt-[0.1389rem] text-[0.12rem] text-[#fff]"}>
|
|
|
- <h1>Devolvendo aos usuários</h1>
|
|
|
- <ul>
|
|
|
- <li>1. Perder mais, dar mais;</li>
|
|
|
- <li>2. Quanto maior o nível VIP, maior o reembolso;</li>
|
|
|
- <li>
|
|
|
- 3. Os prêmios de retorno são emitidos automaticamente na carteira de replay;
|
|
|
- </li>
|
|
|
- </ul>
|
|
|
- </div>
|
|
|
+ <div className={"p-[0.125rem]"}>
|
|
|
+ <div
|
|
|
+ className={
|
|
|
+ "bg-[url(/cashback/content-1.png)] bg-[length:100%_100%]" + " h-[2.5rem]"
|
|
|
+ }
|
|
|
+ >
|
|
|
+ <h1
|
|
|
+ className={
|
|
|
+ "pt-[0.1rem] text-center font-bold text-primary-color" +
|
|
|
+ " text-[0.1528rem]"
|
|
|
+ }
|
|
|
+ >
|
|
|
+ Descrição das atividades
|
|
|
+ </h1>
|
|
|
+ <div className={"mx-[0.2778rem] mt-[0.1389rem] text-[0.125rem]"}>
|
|
|
+ <ul className={"list-decimal pl-[0.2083rem]"}>
|
|
|
+ <li>Perder mais, dar mais;</li>
|
|
|
+ <li className={"mt-[0.0556rem]"}>
|
|
|
+ Quanto maior o nível VIP, maior o reembolso;
|
|
|
+ </li>
|
|
|
+ <li className={"mt-[0.0556rem]"}>
|
|
|
+ Os prêmios de retorno são emitidos automaticamente na carteira de
|
|
|
+ replay;
|
|
|
+ </li>
|
|
|
+ </ul>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ {/*<Image alt={"cashback"} width={750} height={650} src={""} />*/}
|
|
|
|
|
|
- <DetailsTable data={result.data} />
|
|
|
+ <div
|
|
|
+ className={
|
|
|
+ "bg-[url(/cashback/content-2.png)] bg-[length:100%_100%] pt-[0.5556rem]" +
|
|
|
+ " -mt-[1rem] pb-[0.1389rem]"
|
|
|
+ }
|
|
|
+ >
|
|
|
+ <DetailsTable data={result.data} />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
);
|
|
|
};
|