diff --git a/src/app/blog/Card3Small.tsx b/src/app/blog/Card3Small.tsx new file mode 100644 index 0000000..0df77fa --- /dev/null +++ b/src/app/blog/Card3Small.tsx @@ -0,0 +1,50 @@ +import React, { FC } from "react"; +import PostCardMeta from "@/components/PostCardMeta"; +import { PostDataType } from "@/data/types"; +import Link from "next/link"; +import Image from "next/image"; + +export interface Card3SmallProps { + className?: string; + post: PostDataType; +} + +const Card3Small: FC = ({ className = "h-full", post }) => { + const { title, href, featuredImage } = post; + + return ( +
+ +
+ +

+ + {title} + +

+
+ + +
+ +
+ +
+ ); +}; + +export default Card3Small;