diff --git a/src/app/nfts/[id]/page.js b/src/app/nfts/[id]/page.js index e0077d1..00f821f 100644 --- a/src/app/nfts/[id]/page.js +++ b/src/app/nfts/[id]/page.js @@ -1,13 +1,48 @@ -import React from "react"; +"use client" +import React, {useState} from "react"; const NFTPage = ({ params }) => { const id = params?.id; + const [isHovered, setIsHovered] = useState(false); + return (
-
- +
setIsHovered(true)} + onMouseLeave={() => setIsHovered(false)} + style={{ position: 'relative' }} + > + Logo + + {/* Pop-up Div */} + {isHovered && ( +
+
+ +
Brand Name
+
+
Brand Description here. Brand Description here. Brand Description here. Brand Description here. Brand Description here. Brand Description here.
+
+ )}
Explore