diff --git a/components/ui/ProjectCard.tsx b/components/ui/ProjectCard.tsx index 0d91816..1c0540e 100644 --- a/components/ui/ProjectCard.tsx +++ b/components/ui/ProjectCard.tsx @@ -1,7 +1,7 @@ import { ProjectType } from "@shared-types/project"; import Image from "next/image"; import Link from "next/link"; -import DefaultBanner from "@assets/default-banner.webp" +import DefaultBanner from "@assets/default-banner.webp"; import GitHubBtn from "@components/buttons/GitHubBtn"; import WebsiteBtn from "@components/buttons/WebsiteBtn"; @@ -15,7 +15,7 @@ const ProjectCard = ({ github, }: ProjectType) => { return ( -
+

{title}

diff --git a/styles/globals.css b/styles/globals.css index 2986a9f..241670d 100644 --- a/styles/globals.css +++ b/styles/globals.css @@ -44,9 +44,6 @@ body { .active { @apply bg-highlight text-white; } -.card { - @apply cursor-pointer border border-gray-500 hover:shadow-md hover:shadow-gray-500 hover:-translate-y-4; -} .button-format { @apply text-center w-[150px] h-[50px] py-[15px] rounded-lg; }