diff --git a/components/blog/PostList.tsx b/components/blog/PostList.tsx index f584aed..a78e000 100644 --- a/components/blog/PostList.tsx +++ b/components/blog/PostList.tsx @@ -1,6 +1,6 @@ "use client"; -import { motion } from "motion/react"; +import { m } from "motion/react"; import { PostCard } from "./PostCard"; import type { PostMeta } from "@/lib/posts"; @@ -20,12 +20,12 @@ interface PostListProps { export function PostList({ posts }: PostListProps) { return ( - + {posts.map((post) => (
  • ))} -
    + ); }