From 9b6c20b2ebfe09551c78f237a89c877b5ead1edd Mon Sep 17 00:00:00 2001 From: Krishna Ayyalasomayajula Date: Mon, 1 Jun 2026 20:46:03 -0500 Subject: [PATCH] fix: use m.article instead of motion.article in PostCard --- components/blog/PostCard.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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}

)} -
+ ); }