diff --git a/components/blog/PostCard.tsx b/components/blog/PostCard.tsx index 381dd35..032ccb5 100644 --- a/components/blog/PostCard.tsx +++ b/components/blog/PostCard.tsx @@ -1,7 +1,7 @@ "use client"; import Link from "next/link"; -import { motion } from "motion/react"; +import { m } from "motion/react"; import type { PostMeta } from "@/lib/posts"; interface PostCardProps extends PostMeta { @@ -10,7 +10,7 @@ interface PostCardProps extends PostMeta { export function PostCard({ slug, title, date, excerpt, index = 0 }: PostCardProps) { return ( - {excerpt}

)} -
+ ); }