From 09bcc912d96eba6c624a41732738938a216891c8 Mon Sep 17 00:00:00 2001 From: Lulox Date: Mon, 14 Oct 2024 22:17:24 -0300 Subject: [PATCH] UI improvements --- packages/nextjs/components/Footer.tsx | 11 ++--------- packages/nextjs/components/punk-society/PostCard.tsx | 2 +- 2 files changed, 3 insertions(+), 10 deletions(-) diff --git a/packages/nextjs/components/Footer.tsx b/packages/nextjs/components/Footer.tsx index daf99a9..f22f04c 100644 --- a/packages/nextjs/components/Footer.tsx +++ b/packages/nextjs/components/Footer.tsx @@ -4,15 +4,8 @@ import { usePathname } from "next/navigation"; import Create from "../app/create/Create"; import Modal from "../app/create/Modal"; import { useAccount } from "wagmi"; -import { HeartIcon, PlusCircleIcon } from "@heroicons/react/24/outline"; -import { - BellIcon, - EnvelopeIcon, - HomeIcon, - MagnifyingGlassIcon, - PlusIcon, - ShoppingCartIcon, -} from "@heroicons/react/24/solid"; +import { HeartIcon } from "@heroicons/react/24/outline"; +import { BellIcon, HomeIcon, MagnifyingGlassIcon, PlusIcon, ShoppingCartIcon } from "@heroicons/react/24/solid"; import { useScaffoldReadContract } from "~~/hooks/scaffold-eth"; export const Footer = () => { diff --git a/packages/nextjs/components/punk-society/PostCard.tsx b/packages/nextjs/components/punk-society/PostCard.tsx index 67bbd8e..2eefea7 100644 --- a/packages/nextjs/components/punk-society/PostCard.tsx +++ b/packages/nextjs/components/punk-society/PostCard.tsx @@ -4,7 +4,7 @@ import { useEffect, useRef, useState } from "react"; import Image from "next/image"; import Link from "next/link"; import BookmarkButton from "./BookmarkButton"; -import { formatEther, parseEther } from "viem"; +import { formatEther } from "viem"; import { useAccount } from "wagmi"; import { MagnifyingGlassPlusIcon, ShareIcon, ShoppingCartIcon, XMarkIcon } from "@heroicons/react/24/outline"; import { useScaffoldReadContract, useScaffoldWriteContract } from "~~/hooks/scaffold-eth";