update the feedback

main
wholespace214 1 year ago
parent 622684493e
commit 11fcdb55a9
  1. 6
      src/app/launch/create-staking/page.js
  2. 10
      src/app/launch/create-token/page.js
  3. 2
      src/app/leaderboard/page.js
  4. 4
      src/app/liquidity-lock/page.js
  5. 30
      src/app/presales/[id]/page.js
  6. 4
      src/app/token-lock/page.js
  7. BIN
      src/assets/image/presales/avatar.png
  8. BIN
      src/assets/image/presales/back.png
  9. 6
      src/components/HeaderNav/index.js
  10. 2
      src/components/Layouts/SideBar/index.js

@ -246,7 +246,7 @@ const CreateStaking = () => {
className="px-12 py-[10px] text-sm text-[#FBBF04] rounded-[10px] font-semibold border border-[#FBBF04]"
onClick={() => setStep(1)}
>
Previous
Back
</button>
<button
@ -386,7 +386,7 @@ const CreateStaking = () => {
className="px-12 py-[10px] text-sm text-[#FBBF04] rounded-[10px] font-semibold border border-[#FBBF04]"
onClick={() => setStep(2)}
>
Previous
Back
</button>
<button
@ -420,7 +420,7 @@ const CreateStaking = () => {
className="px-12 py-[10px] text-sm text-[#FBBF04] rounded-[10px] font-semibold border border-[#FBBF04]"
onClick={() => setStep(3)}
>
Previous
Back
</button>
<button

@ -1,5 +1,7 @@
"use client";
import React, { useState, useEffect } from "react";
import Image from "next/image";
//! import components
@ -25,6 +27,12 @@ const FooterButton = () => {
};
const CreateToken = () => {
const [tokenType, setTokenType] = useState([
{ text: "Standard Token", value: 1 },
{ text: "Liquidity Generator Token", value: 2 },
{ text: "Baby Token", value: 3 },
{ text: "Buyback Baby Token", value: 4 },
]);
return (
<div className="relative min-h-[1500px]">
<DefaultCard
@ -43,7 +51,7 @@ const CreateToken = () => {
</Success>
<div className="flex flex-col pt-11 gap-8">
<div>
<DefaultSelect optons={[{ text: "Simple Tokens", value: "1" }]} />
<DefaultSelect optons={tokenType} />
<span className="text-[14px] text-[#FCBF07]">Fee: 0.1 BNB</span>
</div>

@ -58,7 +58,7 @@ const Leaderboard = () => {
id=""
>
<option value="0">All Chain</option>
<option value="1">Ether</option>
<option value="1">Ethereum</option>
<option value="2">BNB</option>
</select>
</div>

@ -67,8 +67,8 @@ const LiquidityLock = () => {
<div className="relative">
<input
type="text"
className="w-full bg-[#141414] border border-[#2C2C2C] rounded-lg p-5 text-base text-[#86888C] pl-14"
placeholder="Search by LP or token address..."
className="w-full bg-[#141414] border outline-none border-[#2C2C2C] rounded-lg p-5 text-base text-[#86888C] pl-14"
placeholder="Search by LP address..."
/>
<Image
src={SearchIcon}

@ -0,0 +1,30 @@
"use client";
import React, { useState, useEffect } from "react";
import Image from "next/image";
import BackImage from "@/assets/image/presales/back.png";
import AvatarImage from "@/assets/image/presales/avatar.png";
const PresalesDetails = () => {
return (
<div className="min-h-[1340px] flex flex-row gap-[30px]">
<div className="flex-auto w-[892px]">
<div className="bg-[#1B1B1B] rounded-[16px] relative">
<Image src={BackImage} alt="back" />
<Image
src={AvatarImage}
alt="avatar"
className="absolute top-[147px] left-[60px] w-auto h-auto"
/>
<div></div>
</div>
</div>
<div className="flex-auto w-[631px]"></div>
</div>
);
};
export default PresalesDetails;

@ -75,8 +75,8 @@ const TokenLock = () => {
<div className="relative">
<input
type="text"
className="w-full bg-[#141414] border border-[#2C2C2C] rounded-lg p-5 text-base text-[#86888C] pl-14"
placeholder="Search by LP address..."
className="w-full bg-[#141414] border outline-none border-[#2C2C2C] rounded-lg p-5 text-base text-[#86888C] pl-14"
placeholder="Search by Token address..."
/>
<Image
src={SearchIcon}

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 175 KiB

@ -23,12 +23,6 @@ const HeaderNav = () => {
const [active, setActive] = useState(1);
const navItem = [
{
text: "Quick View",
icon: View,
active_icon: Active_View,
key: 1,
},
{
text: "All Presales",
icon: AllPresales,

@ -234,7 +234,7 @@ const SideBar = () => {
text="Sponsorised by Floki"
img={Sponsored}
BgClass="bg-[#f79422]"
TxClass="text-[#fff]"
TxClass="text-[#16171B]"
/>
</div>

Loading…
Cancel
Save