Skip to content

Commit

Permalink
Merge pull request #23 from danilo-89/cleanup
Browse files Browse the repository at this point in the history
Cleanup
  • Loading branch information
danilo-89 authored Apr 20, 2024
2 parents ea36570 + d99300a commit 72a57b6
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 15 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
2 changes: 1 addition & 1 deletion components/common/Footer/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const Footer = () => {
<span className="inline-block pr-4">
SittingCats <sup>NFT</sup>
</span>
<span>2023</span>
<span>2024</span>
</p>
<span className="mb-[0.1rem] block border-b-4 border-wenge pt-[0.2rem]" />
<ul className="text-xs">
Expand Down
7 changes: 2 additions & 5 deletions components/common/Nav/Nav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,10 @@ import { useAccount } from 'wagmi'
import clsx from 'clsx'

// Hooks
import useScrollIndicator from '@/hooks/useScrollIndicator'
import useIsMounted from '@/hooks/useIsMounted'
import { useIsMounted, useScrollIndicator } from '@/hooks'

// Components
import NFTGalleryModal from '@/components/NFTGallery/Modal'
import ButtonAccount from '@/components/shared/ButtonAccount/ButtonAccount'
import ButtonConnect from '@/components/shared/ButtonConnect/ButtonConnect'
import { ButtonAccount, ButtonConnect, NFTGalleryModal } from '@/components'

const includeStyles = 'bg-[url("/paws-pattern-alternative.png")]'

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,14 @@ const NotConnectedNotice = () => {
<span className="block">
<span className="font-bold">Not connected!</span>
<br />
Please connect your wallet to be able to mint NFTs.
<span className="mb-4 block">
Please connect your wallet to be able to mint NFTs*.
</span>
<span className="mb-5 block border-b border-dashed border-wenge/40"></span>
<span className="text-sm">
*Minting on this site uses testnet, so no real money is
spent, letting you try NFT minting without financial risk.
</span>
</span>
</div>
)
Expand Down
8 changes: 4 additions & 4 deletions components/sections/SectionRoadmap/SectionRoadmap.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,16 @@ const SectionRoadmap = () => {
</Title>
<div className="mx-auto mb-4 flex max-w-[640px] flex-col">
<div className="mb-10 bg-silver p-8">
<span className="font-bold">Note:</span> If you haven&apos;t
fully understood the detailed roadmap below, please watch
the{' '}
<span className="font-bold">Note:</span> If you, by some
case, haven&apos;t fully grasped the detailed roadmap below,
please watch{' '}
<a
className="underline-offset-2 hover:underline"
href="https://www.youtube.com/watch?v=a5ih_TQWqCA"
target="_blank"
rel="noopener noreferrer"
>
explanatory video
the explanatory video
<sup className="ml-[0.1rem]">
<Image
className="inline-block w-[0.65rem] p-[0.05rem] text-moonstone"
Expand Down

0 comments on commit 72a57b6

Please sign in to comment.