Entry layout
This commit is contained in:
@@ -96,12 +96,7 @@ export default function Resources() {
|
|||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div style={{ transform: "translateY(-22px)" }}>
|
<div style={{ transform: "translateY(-22px)" }}>
|
||||||
<Link
|
|
||||||
to="/upload-product"
|
|
||||||
className="btn-gradient lg:flex hidden w-[153px] h-[46px] rounded-full text-white justify-center items-center"
|
|
||||||
>
|
|
||||||
Upload Product
|
|
||||||
</Link>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div className="hidden lg:block w-full h-[1px] bg-[#DCD5FE] dark:bg-[#5356fb29] absolute top-[42px] left-0"></div>
|
<div className="hidden lg:block w-full h-[1px] bg-[#DCD5FE] dark:bg-[#5356fb29] absolute top-[42px] left-0"></div>
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
import React, { useState } from "react";
|
import React, { useState } from "react";
|
||||||
import background from "../../../assets/images/shape/balance-bg.svg";
|
import background from "../../../assets/images/shape/balance-bg.svg";
|
||||||
|
import InputCom from "../../../components/Helpers/Inputs/InputCom";
|
||||||
|
|
||||||
export default function UserWeightWidget() {
|
export default function UserWeightWidget() {
|
||||||
const [eth] = useState(90);
|
const [eth] = useState(90);
|
||||||
@@ -26,33 +27,73 @@ export default function UserWeightWidget() {
|
|||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<p className="text-26 font-bold tracking-wide text-white text-right">
|
<p className="text-26 font-bold tracking-wide text-white text-right">
|
||||||
6,572.00
|
Weight Entry
|
||||||
</p>
|
|
||||||
<p className="tracking-wide text-white text-lg opacity-[70%]">
|
|
||||||
Total Transactions
|
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="balance">
|
<div className="balance">
|
||||||
<p className="text-lg text-white opacity-[70%] tracking-wide mb-6">
|
|
||||||
Weight Entry
|
<div className="input-fl-name mb-5 sm:flex w-full sm:space-x-6 ">
|
||||||
</p>
|
<div className="input-item sm:w-1/2 w-full mb-5 sm:mb-0">
|
||||||
|
<InputCom
|
||||||
|
placeholder=""
|
||||||
|
label=""
|
||||||
|
name="first_name"
|
||||||
|
type="text"
|
||||||
|
iconName="people"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div className="input-item flex-1">
|
||||||
|
<InputCom
|
||||||
|
placeholder=""
|
||||||
|
label=""
|
||||||
|
name="Last_name"
|
||||||
|
type="text"
|
||||||
|
iconName="people"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="input-fl-name mb-5 sm:flex w-full sm:space-x-6 ">
|
||||||
|
|
||||||
|
<div className="input-item sm:w-1/2 w-full mb-5 sm:mb-0">
|
||||||
|
<InputCom
|
||||||
|
placeholder=""
|
||||||
|
label=""
|
||||||
|
name="first_name"
|
||||||
|
type="text"
|
||||||
|
iconName="people"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div className="input-item flex-1">
|
||||||
|
<InputCom
|
||||||
|
placeholder=""
|
||||||
|
label=""
|
||||||
|
name="Last_name"
|
||||||
|
type="text"
|
||||||
|
iconName="people"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<p className="text-[44px] font-bold text-white tracking-wide leading-10 mb-2">
|
<p className="text-[44px] font-bold text-white tracking-wide leading-10 mb-2">
|
||||||
[Input BOX + UNIT]
|
<div className="input-fl-name mb-5 sm:flex w-full sm:space-x-6 ">
|
||||||
</p>
|
|
||||||
<p className="text-[44px] font-bold text-white tracking-wide leading-10 mb-2">
|
<div className="input-item sm:w-1/2 w-full mb-5 sm:mb-0">
|
||||||
[Date of Collection]
|
|
||||||
</p>
|
</div>
|
||||||
<p className="text-[44px] font-bold text-white tracking-wide leading-10 mb-2">
|
<div className="input-item flex-1">
|
||||||
[Kind of Input BOX]
|
<button
|
||||||
</p>
|
|
||||||
<p className="text-[44px] font-bold text-white tracking-wide leading-10 mb-2">
|
|
||||||
<button
|
|
||||||
|
|
||||||
type="button"
|
type="button"
|
||||||
className="btn-login rounded-[50px] mb-6 text-xl text-white font-bold flex justify-center bg-purple items-center "><span>Add</span>
|
className="btn-login rounded-[50px] mb-6 text-xl text-white font-bold flex justify-center bg-purple items-center "><span>Add</span>
|
||||||
</button>
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user