diff --git a/src/app/login/page.tsx b/src/app/login/page.tsx index 9931bec..932a8da 100644 --- a/src/app/login/page.tsx +++ b/src/app/login/page.tsx @@ -106,7 +106,7 @@ export default function UserPage() { </Button> </div> <p> - Don't have an account? <Link href="/signup">Sign up</Link> + Don't have an account? <Link href="/signup">Sign up</Link> </p> </Form> </div> diff --git a/src/components/posts/PostCard.tsx b/src/components/posts/PostCard.tsx index ca23d24..c1786b9 100644 --- a/src/components/posts/PostCard.tsx +++ b/src/components/posts/PostCard.tsx @@ -2,7 +2,7 @@ import { Avatar, Button, Card, CardBody, Spacer } from "@nextui-org/react"; import { formatDistance } from "date-fns"; import Link from "next/link"; import { PostType } from "@/types/PostType"; -import { Heart, MessageCircle } from "lucide-react"; +import { MessageCircle } from "lucide-react"; import LikeButton from "./LikeButton"; export default function PostCard({ post }: { post: PostType }) {