Skip to content

Commit

Permalink
component name and styles updated
Browse files Browse the repository at this point in the history
  • Loading branch information
danilo-89 committed Apr 20, 2024
1 parent 1b1a436 commit 69c74f3
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions components/NFTGallery/NFTGallery.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ interface IProps {
setIsOpen: Dispatch<SetStateAction<boolean>> | (() => void)
}

function NFTGalery({ setIsOpen }: IProps) {
function NFTGallery({ setIsOpen }: IProps) {
const { address } = useAccount()
const [nftData, setNftData] = useState<INFT | null>(null)

Expand Down Expand Up @@ -60,11 +60,10 @@ function NFTGalery({ setIsOpen }: IProps) {
</div>
<span className="mb-7 block border-b border-dashed border-wenge/40 pt-3" />
<p className="mb-6 text-xsP">
<span className="mb-1 inline-block">
<span className="mb-2 block font-semibold">
Welcome to your SittingCats <sup>NFT</sup> collection
showcase.
</span>

{isLoading || isFetching ? (
<span>
Hang on for a quick moment as we track down your
Expand Down Expand Up @@ -140,4 +139,4 @@ function NFTGalery({ setIsOpen }: IProps) {
)
}

export default NFTGalery
export default NFTGallery

0 comments on commit 69c74f3

Please sign in to comment.