diff --git a/Frontend/MainApp/components/nft/NFTDetailView.tsx b/Frontend/MainApp/components/nft/NFTDetailView.tsx
index 5f0c4a5..311fff5 100644
--- a/Frontend/MainApp/components/nft/NFTDetailView.tsx
+++ b/Frontend/MainApp/components/nft/NFTDetailView.tsx
@@ -411,7 +411,7 @@ export const NFTDetailView = ({
*/}
-
Contract
+
Token Contract
,
},
{
@@ -37,7 +33,7 @@ const statusSteps = [
{
key: "uploaded",
label: "Uploading Image",
- description: "Uploading the image to the server or storage system.",
+ description: "Storing the image on Decentralized Pinata & Walrus servers..",
icon:
,
},
{
@@ -45,7 +41,7 @@ const statusSteps = [
label: "Tokenizing Image",
description: "Tokenizing the image as an NFT on the blockchain.",
icon:
,
- },
+ },
{
key: "softListed",
label: "Soft Listing on Marketplace",
diff --git a/Frontend/MainApp/components/nft/nftAuctionCard.tsx b/Frontend/MainApp/components/nft/nftAuctionCard.tsx
index 7a6072a..1a44334 100644
--- a/Frontend/MainApp/components/nft/nftAuctionCard.tsx
+++ b/Frontend/MainApp/components/nft/nftAuctionCard.tsx
@@ -125,7 +125,7 @@ export default function NftAuctionCard({ nft }: NFTCardFeaturedProps) {
/>
{/* Timer overlay */}
-
+
{timeRemaining === "No deadline"
? "loading..."
: timeRemaining}
diff --git a/Frontend/MainApp/components/shared/Header.tsx b/Frontend/MainApp/components/shared/Header.tsx
index 1544030..f1b723f 100644
--- a/Frontend/MainApp/components/shared/Header.tsx
+++ b/Frontend/MainApp/components/shared/Header.tsx
@@ -4,7 +4,7 @@ import { useEffect, useRef, useState } from "react";
import { IoCloseSharp, IoSearchSharp } from "react-icons/io5";
import { Shield, User } from "lucide-react";
import Link from "next/link";
-
+import { AnimatePresence, motion } from 'framer-motion'
import { Input } from "../ui/input";
import { Button } from "../ui/button";
import { useAccountBalance, useWallet } from "@suiet/wallet-kit";
@@ -188,7 +188,8 @@ export const Header = () => {
{/* Search Toggle */}