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 (